Magento- How to set up a shopping cart

I'm having problems displaying product information on the shopping cart page.

  • indicate a template in which I can display this information.
  • tell me how to search for patterns that display
+6
source share
1 answer

You can display the data in the cart line rendering template:

app/design/frontend/base/default/template/checkout/cart/render/simple.phtml

and request data from the $_item in the foreach loop and change the html of your choice

You can find which templates are used on any purple page by including template hints from the system > configuration > developer section.

Please note that if you change the template, first copy the template to your themes folder.

+4
source

Source: https://habr.com/ru/post/899586/


All Articles