Home Forums WoodMart support forum Hide payment and shipment tab on mobile

Hide payment and shipment tab on mobile

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #45519

    TomasPalurik
    Participant

    Hi,

    I have added

    .tabs.wc-tabs{
    display:none;
    }

    which had hidden tabs on computers as I wanted, but it was still displaying on mobile. So I added

    function hidetab( $tabs ) {
    unset( $tabs[‘additional_information’] );
    return $tabs;
    }

    and it was working, but still, I would like to remove Payment and shipment option on mobile. Which function is it, please?

    thanks

    #45553

    Artem Temos
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area for mobile devices in Theme Settings to hide it

    .tabs-layout-tabs .tabs li.woodmart_additional_tab_tab {
     display:none;
    }

    Regards

    #45608

    TomasPalurik
    Participant

    Hi,

    I have tried that to add it to all of the devices, unfortunately, it didnĀ“t work. I have also tried:

    #tab-woodmart_additional_tab {
    display: none !important
    }

    with no effect.
    Would you have any other solution for this, please?

    #45614

    Artem Temos
    Keymaster

    Please, send us a link where this code is added.

    #45636

    TomasPalurik
    Participant

    you can see it here on the mobile device

    https://kolorita.cz/produkt/lampa-marina/

    thanks

    #45637

    Artem Temos
    Keymaster

    Please, send us a screenshot of the area you want to hide.

    #45649

    TomasPalurik
    Participant

    red rectangle

    thanks

    #45650

    TomasPalurik
    Participant

    red rectangle

    thanks

    Attachments:
    You must be logged in to view attached files.
    #45665

    Artem Temos
    Keymaster

    Try this code

    .tab-title-woodmart_additional_tab {
    	display: none!important;
    }
    #45685

    TomasPalurik
    Participant

    perfectly works. thanks a lot

    #45707

    Artem Temos
    Keymaster

    You are welcome!

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