Remove Quantity Pricing in PDP Without Disabling the Quantity Pricing Feature

  1. Go to the SuiteCommerce website
  2. Press Escape
  3. Login as using credentials with Administrator or any role with SMT access
  4. Navigate to an item
  5. Click the item to redirect to it’s product details page.
  6. On the Site Management Tools Toolbar click Edit Mode > Click Add Content mode
  7. Drag the CMS HTML content to the  Productdetails.full.view Pages area 
  8. On the HTML Code text area insert the following script below.
  9. <script>
  10. if(document.querySelector(‘.quantity-pricing-container’) != null)
  11. {
  12. document.querySelector(‘.quantity-pricing-container’).style.display = ‘none’;
  13. }
  14. </script>
  15. Click Save 
  16. Click Review & Publish Changes 
  17. Select the unpublished CMS_HTML code and click Publish
  18. A pop up will show asking if you would like to continue > Click Yes
  19. Click Preview mode to check if changes were applied

Leave a comment

Your email address will not be published. Required fields are marked *