• Resolved mahmoudkhaledselim22

    (@mahmoudkhaledselim22)


    Hi, I would like to know how to hide or remove shipping and billing details from a vendors.

    See the two boxes marked on the following image. I want to remove them

    https://ibb.co/9qm2x9P

    I used that code.. but it didn’t work

    .dokan-left.dokan-order-billing-address {
        display: none;
    }
    
    .dokan-left.dokan-order-shipping-address {
        display: none;

    in my child theme styl.css

    Is there an error in the code or is there another code I want?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Jahidul Hassan Mojumder

    (@jahidulhassan)

    Hi @mahmoudkhaledselim22

    Have you tried using !important with the CSS you have added? If not then kindly try using the below-mentioned CSS.

    .dokan-left.dokan-order-billing-address {
      display: none !important;
    }
    
    .dokan-left.dokan-order-shipping-address {
      display: none !important;
    }

    You can try it on your wp-admin panel’s Appearance > Customize > Additional CSS section. If it still does not work on your site then you can remove the div by overriding wp-content\plugins\dokan-lite\templates\orders\details.php this file using your child theme.

    I hope it helps. Thanks!

    Thread Starter mahmoudkhaledselim22

    (@mahmoudkhaledselim22)

    Well it worked, thank you very much

    I have one last question
    How can I hide that thing! I sent you a picture and you marked it in red

    https://ibb.co/gZRtLnJ

    Because when I click on it, it sends an email and I don’t want to

    Plugin Support Jahidul Hassan Mojumder

    (@jahidulhassan)

    Hi @mahmoudkhaledselim22

    From your screenshot, it seems like you are referring to the shipping status feature that is not included in Dokan lite. As per the forum’s rule, we are unable to discuss any feature that is not included in the free version.

    I would suggest contacting our support channel.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to hide shipping and billing details from vendors’ is closed to new replies.