• Hi we want to hide the QTY option on one of my collections as these are one off prints. is there anything we can add to the shortcode?

    Kind regards

    Lee

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author andrewmrobbins

    (@andrewmrobbins)

    Hey Lee,

    At the moment I don’t currently have a shortcode attribute to hide the product quantity field. However you can still hide this by adding some CSS to your WordPress theme.

    This CSS will hide all quantity fields:

    .wps-component-products-quantity {
        display: none;
    }

    If you want to hide it only on certain product detail pages, you can use this CSS instead:

    .postid-2942 .wps-component-products-quantity {
        display: none;
    }

    Make sure to change “.postid-2942” to your actual post id.

    Does this help?

Viewing 1 replies (of 1 total)
  • The topic ‘Hide the QTY option on one of my collections’ is closed to new replies.