Tagged: x
-
AuthorPosts
-
April 7, 2016 at 2:45 pm #871774
Hello,
I want to remove the “Product Description” text from the actual description. Notice on this page.
http://southbaytrikke.com/product/electric-trikke-freedom/It looks out of place and I can add my own H2 tag.
I have added a child theme for “X” but I can’t get to (custom-function.php) to make the change that I saw in a forum post.
thanks
AndyApril 8, 2016 at 2:54 am #872463Hi Andy,
Thanks for writing in! To remove the “Product Description” text from the description tab in the product pages, Since you already have your child theme active and ready, please insert this following code in your child theme’s functions.php file.
// Override Product Description Title // ============================================================================= add_filter( 'woocommerce_product_description_heading', 'override_product_desc_title' ); function override_product_desc_title($content){ return null; } // =============================================================================
I would loved to know if this has work for you. Thank you.
April 8, 2016 at 11:37 am #873051Yay,
Thank you very much. This makes me smile. You guys are the best. I love this theme and can’t wait to do more with it.Thank you,
Andy
April 8, 2016 at 11:37 am #873052BTW worked like a charm.
AndyApril 8, 2016 at 11:27 pm #873712Happy to hear that. Feel free to ask us again. Have a great day! 🙂
-
AuthorPosts