Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Moving - Add to Cart and Attributes

Moving - Add to Cart and Attributes

Locked

Views: 974

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
12 Mar 2008, 3:27 PM
#1
zoramilea avatar

zoramilea

New Zenner

Join Date:
Mar 2008
Posts:
9
Plugin Contributions:
0

Moving - Add to Cart and Attributes

For the past two days I have been reading almost everything I could find on shopping carts, attributes and product page. I can not for the life of me figure out how (if there is even a way) two switch the two.

My guess by now is in a php file somewhere.

Because of the layout of the site when the attributes were added they went in below the add to cart button and you really don't see them. The client would like them above the add to cart button so people know they need to fill them out.

Thanks in advance for any help.

http://deathray3000.com/shop/index.php?main_page=product_info&cPath=1_10&products_id=7

12 Mar 2008, 4:10 PM
#2
louis avatar

louis

Zen Follower

Join Date:
Jul 2006
Location:
Johannesburg
Posts:
408
Plugin Contributions:
0

Re: Moving - Add to Cart and Attributes

You need to modify the product info display file.

\includes\templates\YOUR_TEMPLATE\templates\tpl_product_info_display.php

The original can be found /includes/templates/template_default/templates

You will find that all the display elements are neatly grouped together in this file. Each group starts with a BOF and endig with an EOF comment.

Example: ```php

<!--bof free ship icon --> <?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?> <div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div> <?php } ?> <!--eof free ship icon -->

Make sure you select the complete group and move above or below any other group to change your product info display page.
12 Mar 2008, 4:36 PM
#3
zoramilea avatar

zoramilea

New Zenner

Join Date:
Mar 2008
Posts:
9
Plugin Contributions:
0

Re: Moving - Add to Cart and Attributes

Great! Thanks Louis I will give it a shot right now.

12 Mar 2008, 5:15 PM
#4
zoramilea avatar

zoramilea

New Zenner

Join Date:
Mar 2008
Posts:
9
Plugin Contributions:
0

Re: Moving - Add to Cart and Attributes

Zoramilea:

Great! Thanks Louis I will give it a shot right now.

It worked! Again thank you Louis for your time in responding to my post