Hi I have created some extra fields for the product description page which are working and populating correctly.

These are fields I've written independently, not by using a third party mod such as Numinix Product Fields.

This is the code I have in my product description which currently only displays '$products_Text_1' from the code below. How would I change this to display all fields?

<!--bof Product Texts -->
<?php if ($products_Text_1 != '') { ?>
<div id="productText" class="productGeneral"><strong>Text 1: </strong><a href="<?php echo $products_Text_link_1; ?>"><?php echo $products_Text_1; ?></a></div>
<div id="productText" class="productGeneral"><strong>Text 2: </strong><a href="<?php echo $products_Text_link_2; ?>"><?php echo $products_Text_2; ?></a></div>
<div id="productText" class="productGeneral"><strong>Text 3: </strong><a href="<?php echo $products_Text_link_3; ?>"><?php echo $products_Text_3; ?></a></div>
<div id="productText" class="productGeneral"><strong>Text 4: </strong><a href="<?php echo $products_Text_link_4; ?>"><?php echo $products_Text_4; ?></a></div>
<?php } ?>
<!--eof Product Texts -->

Thanks

Nick