I need to mention that the line you were referring to, I commented out, because I thought it was redundant. But either way, I should be able to use the code you posted into line that says <?php echo TEXT_PRODUCT_OPTIONS; ?>, right? I want the link to appear before "Please choose:" like here:
http://www.ktnaturals.com/catalog/in...products_id=34
PHP Code:
<?php
/**
* Module Template
*
* Template used to render attribute display/input fields
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_modules_attributes.php 3208 2006-03-19 16:48:57Z birdbrain $
*/
?>
<div id="productAttributes">
<?php if ($zv_display_select_option > 0) { ?>
<h5 id="attribsOptionsText">
<!-- bof Popup Size Help 2/2k7/07 -->
<a href="javascript:popupSizeHelp('http://www.ktnaturals.com/catalog/includes/extra_datafiles/sizehelp.html')"><img src="http://www.ktnaturals.com/catalog/includes/templates/custom/images/icons/help.gif" alt="Size Help"></a>
<!-- eof Popup Size Help -->
<?php echo TEXT_PRODUCT_OPTIONS; ?></h5>
<?php } // show please select unless all are readonly ?>
<?php
for($i=0;$i<sizeof($options_name);$i++) {
?>
<?php
if ($options_comment[$i] != '' and $options_comment_position[$i] == '0') {
?>
<h4 class="attributesComments"><?php echo $options_comment[$i]; ?></h4>
<?php
}
?>
<div class="wrapperAttribsOptions">
<!-- <h4 class="optionName back"><?php echo $options_name[$i]; ?></h4> -->
<center><?php echo "\n" . $options_menu[$i]; ?></center>
<br>
</div>
<?php if ($options_comment[$i] != '' and $options_comment_position[$i] == '1') { ?>
<div class="ProductInfoComments"><?php echo $options_comment[$i]; ?></div>
<?php } ?>
<?php
if ($options_attributes_image[$i] != '') {
?>
<?php echo $options_attributes_image[$i]; ?>
<?php
}
?>
<?php
}
?>
<?php
if ($show_onetime_charges_description == 'true') {
?>
<div class="wrapperAttribsOneTime"><?php echo TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION; ?></div>
<?php } ?>
<?php
if ($show_attributes_qty_prices_description == 'true') {
?>
<div class="wrapperAttribsQtyPrices"><?php echo zen_image(DIR_WS_TEMPLATE_ICONS . 'icon_status_green.gif', TEXT_ATTRIBUTES_QTY_PRICE_HELP_LINK, 10, 10) . ' ' . '<a href="javascript:popupWindowPrice(\'' . zen_href_link(FILENAME_POPUP_ATTRIBUTES_QTY_PRICES, 'products_id=' . $_GET['products_id'] . '&products_tax_class_id=' . $products_tax_class_id) . '\')">' . TEXT_ATTRIBUTES_QTY_PRICE_HELP_LINK . '</a>'; ?></div>
<?php } ?>
</div>