Hi,
I was once given a bit of code by Norman to display product prices on section pages:
	I'm currently having an issue with getting this to work for trade customers though. My site only displays product prices to customers that are logged in but I can't seem to get those prices to display on my section pages as well as the actual product page e.g. http://www.wholesaleelectricalsuppli...g/lcd-tvs.html
Does anybody know if this is possible and how would I go about it?
					I was once given a bit of code by Norman to display product prices on section pages:
Code:
	
	<actinic:block php="true" >$prodprice = '';</actinic:block>			
<actinic:block type="ProductList" >
	<actinic:block if="%3cactinic%3avariable%20name%3d%22ProductType%22%20%2f%3e%20%21%3d%202" >
		<actinic:block php="true" >
		 if ( trim($prodprice) == '' )
			{
			$prodprice = <<<ENDOFCODE
			<actinic:block type="PriceList" >
				<actinic:variable name="PriceLayout" />
			</actinic:block> 
ENDOFCODE;
			}
		</actinic:block>
	</actinic:block>
</actinic:block>
<actinic:block php="true" >echo $prodprice;</actinic:block>
Does anybody know if this is possible and how would I go about it?
Comment