Hi,
Is it possible to move the title and meta-data below the featuring image on single posts?
Regards
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