Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1081794

    How to remove the h2 title using functions.php, retrieved from the tabname.

    #1082551

    Hey creativeopole,

    The h2 in the screenshot should be inside the content area.
    Here’s our demo showing the tabs element without the h2: https://kriesi.at/themes/enfold-2017/elements/tabs/
    Can you give us a link to the page shown in the screenshot? so we can try to inspect it.

    Best regards,
    Nikko

    #1082579

    The problem concerns tabs in the store, on the product page. I would like to delete the H2 headers that are copied from the tabname.

    #1082906

    Hi creativeopole,

    Try adding this php code at the bottom of your functions.php:

    add_filter('woocommerce_product_description_heading', '__return_empty_string');

    Best regards,
    Nikko

    #1082982

    Unfortunately, the solution does not work, it still duplicates the headers (tab names).

    #1083109

    Hi creativeopole,

    I have already tested the code on my end and it works fine.
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1251689

    And how to remove the European header, technical parameters / additional information

    #1252456

    Hi creativeopole,

    Please try adding this code in functions.php of your child theme:

    function woo_remove_product_tabs( $tabs ) {
        unset( $tabs['additional_information'] );
        return $tabs;
    }
    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

    Best regards,
    Nikko

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.