Tagged: , , ,

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

    Hi,
    Is it possible to move the title and meta-data below the featuring image on single posts?

    Regards

    #686678

    Hi emilgandersson!

    Thank you for using Enfold.

    What is the single post style? Please post the link to one of the posts. And try this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function gh() {
    	$('.single .post-meta-infos').insertAfter('.big-preview');
    	}
    
    	gh();
    })(jQuery);
    </script>
    <?php
    }

    Cheers!
    Ismael

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