Magento Questions Answered By Magento Experts

 

Welcome Guest. Sign in or Signup

1 Answers

Remove Price Box in Tierprice

Asked by: 371 views , , , , ,
Questions

I need to remove the price file tierprices.html

When the option is enabled tierprice, besides the information

Buy 3 for $ 2.00 is also displayed in the box price, how do you get only

Buy 3 for $ 2.00?

1 Answers



  1. Magento Expert on Mar 30, 2013 Reply

    Hi RLisboa,

    Well, if you wanted a fast solution then install web developer tools in your browser (e.g., firebug extension in firefox) to easily locate the css element for box price.

    Add this line display: none;

    For example:

    .box{
    display: none;
    }

    You can restore it by removing the line “display: none;” on your theme’s css file.

    Hope this can help you resolving your problem in Tierprice display!

    0 Votes Thumb up 0 Votes Thumb down 0 Votes


Answer Question