Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1401986

    This was probably asked and solved many times but I cannot find a working solution:
    I am trying to hide the tab containing additional information on the product detail page. I used the following CSS:

    .additional_information_tab {
    display: none !important;
    }

    or
    li.additional_information_tab {
    display: none;
    }

    Both don’t work and the tab shows even if it doesn’t contain any information.

    Is there any possibility to modifiy the location of the price (and font size etc.) on the single product page?

    Any help is highly appreciated!

    #1401992

    I meanwhile found out, that the CSS works, but only if the description part is filled. If I use short description, additional information is visible.

    Any other possibilities?

    #1402103

    Hi,

    Thank you for the inquiry.

    You can try this css code to remove the first item from the tabs container.

    #top div.product .woocommerce-tabs ul.tabs li:nth-child(1) {
        display: none;
    }
    
    #top div div.product .woocommerce-tabs .panel div:nth-child(1) {
        display: none;
    }
    

    If it doesn’t work, try to replace the nth-child selector with the actual id of the additional information container.

    Best regards,
    Ismael

    #1402146

    Thank you, Ismael.
    I solved the problem differently and created a custom single product page with Avia Editor.

    #1402149

    Hi,

    Thanks for the update!

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Hide additonal information tab on product page and location of price’ is closed to new replies.