Home Forums WoodMart support forum How Do I remove sections on the product page?

How Do I remove sections on the product page?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #501511

    vazqubran2222
    Participant

    I want to remove the quantity button from the product page , and also want to know how to update the guarnatee safe checkout badges

    #501734

    Hung Pham
    Keymaster

    Hi vazqubran2222,

    Thanks for reaching to us.

    1. Quantity box

    There are 2 methods to do that:

    I kindly request that you enable the option to be Sold Individually, which will remove the quantity selection from specific single product https://prnt.sc/dnAHNuPDlOet

    In case you want to remove it from all products, add below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS

    .single-product .quantity{
    	display: none;
    }

    2. Trust badges

    There is an option to place content before or after Add to cart button in Single Product under Theme Settings > Single product > Add to cart

    You can add any content to the HTML block: https://xtemos.com/docs-topic/html-blocks-usage/

    For Cart and Checkout pages, default Woocommerce does not have the option and WoodMart theme does not have either. You can use Custom Layout to build custom these pages and use Shortcode widget to place HTML Block shortcode https://prnt.sc/y8qJwbOf6qgL

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

    Regards,

    #502542

    vazqubran2222
    Participant

    The quantity code didn’t work, is there other way around it?

    #502558

    Hung Pham
    Keymaster

    Hi vazqubran2222,

    Please try below code

    .single-product .quantity{
    	display: none !important;
    }

    If it still doesn’t work, please provide URL of the mentioned page, so I can take a closer look.

    Regards,

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