skip to Main Content

I installed a new template on my Magento store and when I got to a product page it shows the price twice? Most of my products are a “simple” Product and I have one “Configuarable” product

Any ideas how I can get rid of one of the prices?

Here is Simple product:

enter image description here

Here is configurable product: (with an option selected)

enter image description here

Any ideas?

I’m running latest 1.9.3.7 and can’t find a fix anywhere

3

Answers


  1. I don’t think anyone can help you here unless it’s a popular theme people would know. The problem is not in Magento, it’s in the theme files. You will need to find the theme file and check the php logic to truly know what is happening there. Best case, contact the theme developer if you purchased it or switch to a new theme.

    To find the theme file responsible for printing the price, you can enable template hints. This will show the hints to you and all the customers, so be diligent about doing this live. Secondly, you will need to take a look at the block which encompasses the pricing. When you find the template name, just go to the .phtml file and see what’s going on there with the price output.

    Login or Signup to reply.
  2. Edit app/design/frontend/default/your_theme/template/catalog/product/view.phtml

    Look for price divs and comment one.

    Login or Signup to reply.
  3. You need to check your

    app/design/frontend/default/your _theme/temlate/product/view.phtml
    

    1st: inspect find the class or id

    2nd: then remove wrong price code

    before doing this take a backup of your file

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search