Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #882224

    Hi,

    I would like to move the date, comments, author just above the title on blog entry page (article).For example – this page

    How to move the date above the article title – like in this preview:

    Regards

    #883337

    Hey L,

    Thank you for using Enfold.

    Please try this code in the functions.php file.

    // custom script
    add_action( 'wp_footer', 'ava_custom_script' );
    function ava_custom_script() {
    ?>
    <script type="text/javascript">
    (function($) {
    	$('.post-meta-infos').insertBefore('.post-title');
    })(jQuery);
    </script>
    <?php
    }

    Don’t forget to remove the browser cache before checking the page.

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.