• Resolved user91873

    (@user91873)


    Hello, I use the product data tabs Elementor widget to display the product description on one tab and attributes (which I use for product specifications) on another tab. The attributes tab is titles “Additional Information”. How can I rename that to Product Specifications?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter user91873

    (@user91873)

    Here is the tabs I have:

    https://prnt.sc/N6O2kMO7_Uin

    • This reply was modified 3 weeks, 6 days ago by user91873.

    To rename the “Additional Information” tab in WooCommerce when using the Elementor Product Data Tabs widget, you can use a custom filter in your theme’s functions.php file or a custom plugin. Here’s how to do it: Steps:

    1. Open your WordPress theme’s functions.php file (or create a custom plugin).
    2. Add the following code to change the tab title:
    function rename_additional_information_tab( $tabs ) {
        if ( isset( $tabs['additional_information'] ) ) {
            $tabs['additional_information']['title'] = 'Product Specifications'; // Change this to your preferred title
        }
        return $tabs;
    }
    add_filter( 'woocommerce_product_tabs', 'rename_additional_information_tab' );
    

    Explanation:

    • This filter targets the woocommerce_product_tabs hook, which is responsible for the product data tabs.
    • It checks if the “Additional Information” tab exists (additional_information) and then modifies its title.
    • You can replace 'Product Specifications' with whatever title you’d prefer.

    After adding this code:

    • The “Additional Information” tab will now show as “Product Specifications” on your product pages.

    Let me know if you need further assistance!

    Plugin Support Moses M. (woo-hc)

    (@mosesmedh)

    Hi @user91873,

    I understand that you need help customizing your website, but this request goes beyond our support scope as it involves customization rather than a core WooCommerce issue.

    I’d recommend reaching out to WooExperts, hiring a developer from Codeable.io, or seeking guidance from the community Slack channel for assistance.

    Alternatively, you can also reach out to Elementor support for guidance.

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