Home › Forums › WoodMart support forum › removing tabs from product pages
removing tabs from product pages
- This topic has 5 replies, 2 voices, and was last updated 4 years, 10 months ago by Elise Noromit.
-
AuthorPosts
-
February 16, 2020 at 2:46 pm #173825
yogamat12ParticipantWhat is the difference between main theme and child theme?
Main issue – I am trying to remove the additional info tab from the product pages. I put in this css code on each product page as recommended from earlier posts. However, problem is that it also removes the long description, which I need.
.product-tabs-wrapper {
display: none;
}Will this longer code solve above issue?
If so, can you help me on where it goes? Not familiar or cant find functions.php
add_filter( ‘woocommerce_product_tabs’, ‘woo_rename_tabs’, 98 );
function woo_rename_tabs( $tabs ) {
$tabs[‘description’][‘title’] = __( ‘Product Description’ ); // Rename the description tab
return $tabs;
}
from link https://xtemos.com/forums/search/ADDITIONAL+INFORMATION+products+page/February 16, 2020 at 4:18 pm #173841
Elise NoromitMemberHello,
Please read this manual to find our what child theme is needed for: https://developer.wordpress.org/themes/advanced-topics/child-themes/
In order to remove the Additional tab (with attributes) you should configure the attribute not to be shown on the product page and this tab would disappear. When you add an attribute to a product you are asked if you want to show it on the product page, do not check the checkbox.
Addition tab with shipping information is removed in the Theme settings > Product page > Tabs > clean the title and the content.
Best Regards
February 16, 2020 at 5:37 pm #173855
yogamat12ParticipantAttributes removed from Additional Information. Thank you
Shipping is still the only info showing under Additional Information. These are my only options for Theme settings > Product page > Tabs. Not sure what “clean the title and the content” means, unless those are the last 2, which you see are blank. See attached.
Thank you
Attachments:
You must be logged in to view attached files.February 16, 2020 at 7:48 pm #173877
Elise NoromitMemberHello,
Please provide the site admin access to the private area and product page URL where you have an Additional tab.
Best Regards
February 17, 2020 at 2:58 am #173888
yogamat12ParticipantHow do I do this?
“Please provide the site admin access to the private area “February 17, 2020 at 10:45 am #173959
Elise NoromitMemberHello,
Please have a look at the Private Content field under the message area, you can insert the credentials, they would be confidential and visible only to me.
Best Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register