• i would like to remove the tabs on the side of the product screen on both desktop and mobile and i would like the reviews to be under the description automatically rather than having to click on these tabs. is there some code that can easily achieve this?
    thanks

    Here is what i am trying to remove
    https://snipboard.io/Ml817f.jpg

Viewing 1 replies (of 1 total)
  • Job a11n

    (@jobthomas)

    Automattic Happiness Engineer

    Hey @justin007h – that’s not really a part of Storefront, but more a default option of WooCommerce core.

    This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:
     

    /* Disable the description tab */
     
    .woocommerce-tabs ul.tabs li.description_tab {
        display: none;
    }

     
    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    Alternatively, you can use a plugin like WooCommerce Tab Manager.

    Given that this question is not connected to Storefront, I’ll mark this thread as resolved.

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove description tabs’ is closed to new replies.