Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #676011

    https://kriesi.at/support/topic/move-featured-image-below-post-title-date-etc/

    I tried updating my blog with this content and it didn’t work:

    Is there a different line of code for the grid of posts?

    #676018

    Also, I’d like the meta to be the same on http://blog.makeitfuncrafts.com/ – the top one has the title and category above, which is great, but once I go to a grid it switches it. Where would I go to edit it so it’s always the same.

    #677392

    Hi,

    Thank you for using Enfold.

    Please add this in the functions.php file:

    // slide link
    add_action('wp_footer', 'ava_new_custom_script');
    function ava_new_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
        function b() {
    		$('.slide-entry').each(function() {
    			var image   = $(this).find('.slide-image').detach(),
    				content = $(this).find('.slide-content');
    
    			image.insertAfter(content);
    		});
    	}
    
       	b();
    })(jQuery);
    
    </script>
    <?php
    }

    Best regards,
    Ismael

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