Thanks again. One more question. When someone adds item to cart, the buttons that show up at top that say next prev listing...........how do I move those to the bottom. how do I move the add to cart button on the shopping cart page next to the product rather than below it and how do I move the product attribute from the below the add to cart button to right below the product listing. I have attached a pix to show what I am talking about.
That's three questions.![]()
1. That's done in the admin, under "Configuration", then "Product Info", then "Previous Next - Navigation Bar Position"
2. if you open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php and remove the <br class="clearBoth"> right before:
<!--bof Add to Cart Box -->
That will move the add to cart box a good deal up.
Also, in the css, if you reduce the margin on the #cartAdd section a bit, you'll get it even higher, and if you change the float:right to float:left, the cart will move over to right underneath the description.
3.I would open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php and move the attributes chunk up above the add to cart chunk. They should be kind of "roped off" if you will by code like this:
<!--bof Attributes Module -->
so move everything from <!--bof Attributes Module --> to <!--eof Attributes Module --> above <!--bof Add to Cart Box -->
I have also been trying to re-arrange the ADD A CART button exactly as was asked above (by Blumcafe) to BELOW the attributes rather than above them...I followed instructions given but cannot seem to locate any php file called "tpl_product_info_display.php" AT ALL...any ideas where else it might or what I am missing now??
Thanks,
Moy![]()
It won't be in the simple_zen folder, because it hasn't been included in my template, but if you go to includes/templates/template_default/templates/ it will be there. Move it to the includes/templates/YOUR_TEMPLATE/templates folder, make the changes, then upload it.
Perfect - found it thank you!!!
Is there any easy way to change how many products are shown at a time in the main listing page? Sounds confusing - I mean rather than having products/info blurb/price shown horizontally across ONE at a time...can it be changed to have say 2, 3 or 4 products shown across and people can click for larger image and info/price...
I ask only because our product listing is very large in some areas and someone would be scrolling quite awhile to see all items listed in certain categories...
Thanks AGAIN,
Moy :)
Hi! I wanted to put tiny icons next to my sidebox headings: cart etc...I have done this my adding this to the english file:
is there a better way?PHP Code:define('BOX_HEADING_SHOPPING_CART', ' Shopping Cart <img src="images/logos/cart.gif" alt="Cart" />');