Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #871774

    Andy P
    Participant

    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
    Andy

    #872463

    Rue Nel
    Moderator

    Hi 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.

    #873051

    Andy P
    Participant

    Yay,
    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

    #873052

    Andy P
    Participant

    BTW worked like a charm.
    Andy

    #873712

    Prasant Rai
    Moderator

    Happy to hear that. Feel free to ask us again. Have a great day! 🙂