Where can i find the template that controls the layout for Upsell and Cross sell layouts? I need to remove the "Now From " text that appears when an item is under promotion. Thanks
The upsell and cross-sell sections are generated in \templates\products\template.html
However, these usually render the actual products using your standard thumb template (\templates\thumbs\product\template.html). If you edit this file, ALL products thumbs across the site will change.
If you want the products listed in upsell/cross-sell to have a different thumb design, you can duplicate the thumb template. Call it "simple.template.html" or similar.
Then, add thumb:'simple' to the cross-sell and upsell tags. Like this:
[%crosssell thumb:'simple' ...other params... %]
Now you can edit simple.template.html, and it will only affect these tags. I do something similar on our site - the category thumbs have all the bells and whistles, and a simpler thumb is available for use is places like upsell where I want less detail.
When you are doing such major template work, you'll need SFTP access and you should be testing in a separate theme before deploying it live:
https://developers.maropost.com/documentation/neto-designer-documentation/getting-started/developing-workflow-simple/
Awesome - found those sneaky thumb templates