I am trying to create a product presentation on a Drupal website, but I am having problems. I can not find where the node (product) view is integrated in ubercart!
I am using UC 5.x-1.7 and I need to create a node (product) view page. At the moment, in my node.tpl.php file, I have
print $ body;
that spits out all SKUs, attributes, price, image, etc.The problem is that I need to have this in a different style - I have to work on the design made by the designer. I started repeating my own version using type variables
$ node-> content ['body'] ['# value']
etc.I am having trouble trying to work with various attributes for a product. I cannot find out how to get them on my page, or any documentation on how to work with them from the point of view of the encoder.
Is there an easier way? Where would I look for the style of an existing display (i.e. the $ body variable)?
Edit: my theme is based on the Zen theme
source
share