|
Posted by Lisa on 04/24/06 07:10
Trying to create a popup link on the outside of the : of a single
Option Name.
A Radio Button is being used.
Ex: Sone Color:
Please Select Pink Black White Etc.
Pattern Accents:
Please Select Rice / Round Twist / Sqare Etc.
Bracelet Size:
Please Select 6" 7" 8" Etc.
What I want is Guidelines creating a popup window explaining how to
measure
your wrist.
Bracelet Size: Guidelines
Please Select 6" 7" 8" Etc
How can I reedit the code below?
<tr>
<td class="main" align="left" valign="top"><?php echo
$options_name[$i] . ':'; ?></td>
<td class="main" align="left" valign="top" width="75%"><?php
echo $options_menu[$i]; ?></td>
</tr>
<?php if ($options_comment[$i] != '' and $options_comment_position[$i]
== '1') { ?>
<tr>
<td colspan="2" class="ProductInfoComments" align="left"
valign="top"><?php echo $options_comment[$i]; ?></td>
</tr>
<?php } ?>
<?php
if ($options_attributes_image[$i] != '') {
?>
<tr><td colspan="2"><table
class="products-attributes-images"><tr>
<?php echo $options_attributes_image[$i]; ?>
</tr></table></td></tr>
<?php
}
?>
<?php
}
?>
<?php
if ($show_onetime_charges_description == 'true') {
?>
<tr>
<td colspan="2" class="main" align="left"><?php echo
TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION; ?></td>
</tr>
<?php } ?>
<?php
if ($show_attributes_qty_prices_description == 'true') {
?>
<tr>
<td colspan="2" class="main" align="left"><?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>'; ?></td>
</tr>
<?php } ?>
</table>
<?php
}
?>
</td>
</tr>
Navigation:
[Reply to this message]
|