Hi There,
Not sure if this is an Enfold thing, or a WooCommerce thing, but any help would be appreciated.
I would like to hide the date and “similar post” of the related products. Currently it shows:
Related Products:
Name of Product (keep)
Date of Publication (remove)
“Similar Post” (remove)
Thanks!
Hey rosewoodva,
I’m not seeing the date text. Were you able to remove it? If not please screenshot me the area I should be viewing.
Best regards,
Jordan Shannon
Hi Jordan,
Thanks for following up! With some more digging, I found out it was related products being generated by JetPack plugin. Here are some fixes for anyone else looking:
CSS to hide Related Posts Date:
span.jp-relatedposts-post-date {
visibility: hidden;
}
To hide Jetpack related items all together:
function exclude_jetpack_related_from_products( $options ) {
if ( is_product() ) {
$options[‘enabled’] = false;
}
return $options;
}
add_filter( ‘jetpack_relatedposts_filter_options’, ‘exclude_jetpack_related_from_products’ );