Hi Guys
Something peculiar happen on my blog page. When I click on any of the blog post link from the homepage and side bar, the title disappear. It only appear when I click from the blog page itself using Magazine layout.
Also, I will like to add the date below the category. Please advise how can this be done. I’m using the child theme.
Best Regards
Din
Hey dinmix,
I believe the issue is that some of the posts are created using the advanced layout builder, and the others with the title have been created with the default editor. Please create all of your posts with the default editor.
Best regards,
Mike
Hi Mike
Noted with thanks. I will fixed that. Can I check how do I move the date below the category like this.
Title
Category
Date
Best Regards
Din
Hi,
To move the postmeta date from the bottom of the post in the blog post grid, up to below the category, Try adding this code to the end of your functions.php file in Appearance > Editor:
function move_postmeta_date(){
?>
<script>
jQuery(window).load(function(){
jQuery( '.slide-entry' ).each(function() {
jQuery( this ).find( 'time.slide-meta-time' ).insertBefore( jQuery(this).find('span.av-vertical-delimiter') );
});
});
</script>
<?php
}
add_action('wp_footer', 'move_postmeta_date');
Then add this code in the General Styling > Quick CSS field:
time.slide-meta-time {
position: relative;
top: -30px;
}
Please see screenshot in Private Content area.
Best regards,
Mike
Hi Mike
Thank you very much. It work!
Best Regards
Din
Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.
For your information, you can take a look at Enfold documentation here
And if there are features that you wish Enfold had, you can request them and vote the requested ones here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)
Best regards,
Mike