This topic has 8 replies, 2 voices, and was last updated 9 years, 1 months ago ago by Robert Hall
Hello
First of all i am very pleased with my woo press theme.
And also the fast response from a previous question.
I would like to hide or remove the tags in the single product page.
Thanks
Capra
see image
Hello,
Please use this code in Global Custom CSS.
.single-product .product_meta {
display:none;
}
Regards,
Robert Hall.
Thnx for a rapid answer.
One more question
Is it possible to just disable the link and keep the text?
Regards
Capra
Please clarify where exactly you want to disable the link.
Regards,
Robert Hall.
.single-product .product_meta {
display:none;
}
The same as previous but now keep the text but disable the link.
Regards
Capra
Try to add this script into themes/woopress/js/etheme.js file.
But we strongly recommend you do this in Child Theme.
Please copy this file into it saving folder structure like:
wp-content/themes/woopress_child/js/etheme.js.
$('.single-product .product_meta a').click(function(e){
e.preventDefault();
});
Regards,
Robert Hall.
Thanx
You’re welcome!
Regards,
Robert Hall.
The issue related to '‘Remove or hide tags/posted in’' has been successfully resolved, and the topic is now closed for further responses