Tagged: x
-
AuthorPosts
-
August 26, 2016 at 4:07 pm #1148800
Hello!
Can you help me remove the “product description” header on the Description tab of the woocommerce product page? I looked through the forum and found this suggested to add to the custom css:
.single-product #tab-description h2 {
display: none;
}Unfortunately, it didn’t remove the “product description”. I’m creating a variable product.
URL: http://www.begenki.org
Wordpress version: 4.5.3
Cornerstone version: 1.3.0Your assistance is greatly appreciated.
Thank you!
KatrinaAugust 26, 2016 at 9:28 pm #1149188Hi Katrina,
Thanks for writing in! Would you mind pointing us to your shop page, so we can take a closer look.
In the meantime navigate to Customizer > WooCommerce panel and turn off the Description Tab option.
Cheers!
August 26, 2016 at 11:18 pm #1149267This reply has been marked as private.August 27, 2016 at 12:47 am #1149326Hi there,
Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Then add the following code into your child theme’s functions.php file.
add_filter( 'woocommerce_product_description_heading', 'remove_product_description_heading' ); function remove_product_description_heading() { return ''; }
Make sure to activate your child theme by head over to Appearance -> Themes area within your WordPress backend.
Thanks!
August 27, 2016 at 9:38 am #1149660This reply has been marked as private.August 27, 2016 at 10:35 am #1149705Hi There,
I was able to fix the issues.
Please note that you don’t have to copy all the code from the functions.php file in the parent X theme to child theme.
Regards!
August 30, 2016 at 12:59 pm #1153755Thank you so much!
August 30, 2016 at 1:11 pm #1153772You are most welcome. 🙂
September 2, 2016 at 1:02 pm #1158720Hi again!
I’ve added a tab for additional information but when I click on that tab, the description information is no longer accessible. I think this is because I deleted the “Product Description” header so there’s nothing to click on. Can you help me fix this? Deleting the code you provided above messes the page formatting.
Thank you!
September 2, 2016 at 4:12 pm #1158956Hi there,
I checked this page https://www.cowgirlsandlace.com/shop/tyler-wash/ and I’m able to access the Description Tab after clicking on Additional Information tab. providing us with a little more clarification on what it is you’re wanting to do so we can take a look?
Thanks!
September 2, 2016 at 4:23 pm #1158968This reply has been marked as private.September 2, 2016 at 10:09 pm #1159325Hi there,
Please remove this custom CSS,
.description_tab { display: none; }
Thanks!
September 3, 2016 at 9:38 am #1159718Thank you again!
September 3, 2016 at 11:48 am #1159800You’re most welcome 🙂
-
AuthorPosts