Home Forums WoodMart support forum single product hide tab

single product hide tab

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #652126

    vt
    Participant

    hello
    i am trying to hide this tab https://prnt.sc/ufvbLNM-I1Rb so far no options can it only be hidden with css?if yes please provide the code

    #652216

    Hello,

    This is the main description on the product page. So, if you want to hide it, just remove all description content.

    If you want to remove both tabs, add the following code in Theme Settings > Custom CSS:

    .woocommerce-tabs .wc-tab, 
    .woocommerce-tabs ul.tabs li {
        display: none !important;
    }

    Best Regards.

    #652223

    vt
    Participant

    hello i dont wanna hide all tabs because this will happen https://prnt.sc/fk7NEZ7IBT6d and some important info will be hidden like this https://prnt.sc/2cRo04quaFhz and this in some products https://prnt.sc/Z4fpxpb3_qKP i wanna hide all the information about weights dimensions

    #652385

    Hello,

    To remove the additional information tab, add this code to the Theme Settings > Custom CSS > Global:

    li.additional_information_tab {
      display: none;
    }

    Best Regards,

    #652538

    vt
    Participant

    hello
    this will remove every attribute i dont want that i wanna hide dimensions and weight only

    #652572

    Hello,

    Try to add the following code in Theme Settings > Custom CSS to remove the only weight and dimension.

    .woocommerce-product-attributes-item--weight,
    .woocommerce-product-attributes-item--dimensions {
        display: none !important;
    }

    Best Regards,

    #653036

    vt
    Participant

    yes that works thank you can you also resolve this bug i have this format https://prnt.sc/pCFp_EtzoOrc but on some products it appears like this https://prnt.sc/NfkTjSkGHAtkvvvvvv

    #653071

    Hello,

    You have added the price display suffix with exclude tax in WooCommerce> Settings > tax.
    Please follow this guide on how it works: https://woocommerce.com/document/setting-up-taxes-in-woocommerce

    If you have any questions, feel free to contact us.

    Best Regards,

    #653121

    vt
    Participant

    it should display https://prnt.sc/mVvePxAytcTd but it just shows it like that https://prnt.sc/ZawoxWOPri-E

    #653146

    Hello,

    Could you please check how it works with some default WordPress themes like TwentyTwenty or WooCommerce Storefront to understand if it is our theme issue or not?

    Best Regards,

    #653290

    vt
    Participant

    to disply this text there a code someone from support here gave me since it didnt display before but the ticket is closed and i cant find where the code if it displays different without the theme woodmart

    #653393

    Hello,

    This is your topic. Please check this and use this code.
    https://xtemos.com/forums/topic/product-price-not-displaying-right/

    Best Regards,

    #653440

    vt
    Participant

    nope thats a new topic there was an older one which provided a code from the support for my text at that time i didnt have so many products and not problems were seen

    #653542

    Hello,

    You can see all the topics here: https://xtemos.com/forums/users/vt/topics/

    You can check the topics and identify where you have discussed this. If you have any questions, feel free to contact us.

    Also I have checked your site and the “Τιμη” text appears on your site before the price. You are using this code for this.

    .single-product .price > span.amount::before {
       content: "Τιμη ";
       display: inline-block;
       margin-right: 4px;
       color: rgb(51, 51, 51);
       font-weight: 500;
    }

    Best Regards,

Viewing 14 posts - 1 through 14 (of 14 total)