Product Detail Page

May 2014 WordPress Theme
GK User
Mon Feb 22, 2016 1:31 am
How can remove/hide the Category and Tag fields from the Product Detail page for all products?
User avatar
Fresh Boarder

Joshua M
Mon Feb 22, 2016 1:19 pm
Hi,

Try to add the following code into the theme’s css/override.css file (make sure to enable the “Use the override.css file” option in Template options > Advanced in the WordPress backend) or use any custom css plugin:

Code: Select all
.product_meta > .posted_in,
.product_meta > .tagged_as {
   display: none;
}
User avatar
Moderator

GK User
Tue Feb 23, 2016 6:22 pm
Got it. Thanks a lot. Paste it to the override file and it works. Just curious, what is the code to remove the SKU?
User avatar
Fresh Boarder

Joshua M
Wed Feb 24, 2016 11:02 am
Try this one:
Code: Select all
.product_meta > .sku_wrapper {
   display: none;
}
User avatar
Moderator


cron