Hello Co Blog Posts

QuestionsCategory: ThemesHello Co Blog Posts
Lauren Melnick asked 3 years ago

Hi there,
Is it possible to disable the \”rollover\” effect of blog post titles on categories? I\’d like people to be able to read the title as on mobile you just see images and don\’t know what the post is about. Example
How do you add text that says \”updated on X date\” on blog posts? Example

1 Answers
Support Team Staff answered 3 years ago

The theme will be updated here shortly and that hover effect will change.

For the updated on X date this would be added in the functions file. Make sure you do a backup prior to adding. If you break anything, it is easily fixable in your file manager, by removing the code you just added. Or if you prefer I can make this private and collect your login information to add it.

function hyd_get_updated_date_for_post() {
$date = ” . get_the_modified_date() . ”;
return $date;
}
add_shortcode( ‘hyd_modified_date’, ‘hyd_get_updated_date_for_post’ );

add_filter( ‘genesis_post_info’, ‘hyd_add_updated_date_info’ );
function hyd_add_updated_date_info($post_info) {
$post_info = ‘Last Updated on [hyd_modified_date]’;
return $post_info;
}

Lauren Melnick replied 3 years ago

Thanks so much! Do we get an email when the theme is updated?

Support Team Staff replied 3 years ago

Yes, we will do an email once finished.