Zen Cart Logo
Forums / Customization from the Admin / Texts or Links below "Add to Cart" Button

Texts or Links below "Add to Cart" Button

Locked

Views: 1,477

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
4 Aug 2009, 10:47 PM
#1
ttmb33 avatar

ttmb33

Zen Follower

Join Date:
May 2009
Posts:
201
Plugin Contributions:
0

Texts or Links below "Add to Cart" Button

I am looking for a way to insert Texts or Links below "Add to Cart" button. I can add Texts or Links in the description box, but I want "Texts" or "Links" appear below the "Add to Cart" button. Please show me how to do it. Thanks so much for your help.

5 Aug 2009, 7:09 PM
#2
jackie_taferner avatar

jackie_taferner

Totally Zenned

Join Date:
Jun 2009
Location:
Orange County, California
Posts:
547
Plugin Contributions:
3

Re: Texts or Links below "Add to Cart" Button

I assume you're talking about the bottom of the actual product page, and not the area where all products are listed under a category. Here's how to do it:

Edit this file: /includes/templates/YOURTEMPLATENAME/templates/tpl_product_info_display.php

Find the following code and place your text/ other images below it:

<?php if ($display_qty != '' or $display_button != '') { ?>
<div id="cartAdd">
<?php
  echo $display_qty;
  echo $display_button;
        ?>
      </div><br /><br /><br /><hr /><br />
<?php } // display qty and button ?> <?php } // CUSTOMERS_APPROVAL == 3 ?> <!--eof Add to Cart Box-->
6 Aug 2009, 4:20 AM
#3
ttmb33 avatar

ttmb33

Zen Follower

Join Date:
May 2009
Posts:
201
Plugin Contributions:
0

Re: Texts or Links below "Add to Cart" Button

Thank you very very much for your guidance. I definitely read my mind. Thanks again.

6 Aug 2009, 4:21 AM
#4
ttmb33 avatar

ttmb33

Zen Follower

Join Date:
May 2009
Posts:
201
Plugin Contributions:
0

Re: Texts or Links below "Add to Cart" Button

I am sorry. I meant "You're definitely read my mind."

6 Aug 2009, 6:43 PM
#5
jackie_taferner avatar

jackie_taferner

Totally Zenned

Join Date:
Jun 2009
Location:
Orange County, California
Posts:
547
Plugin Contributions:
3

Re: Texts or Links below "Add to Cart" Button

No problem, glad to help.