Tagged: enfold
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?
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.
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