Hi I want to get the PriceLayout into a horizontal table.
Customer has 5 price bands on certain products that will always be the same.
So want to acheive something like the following
1+ 5+ 10+
£1.00 95p 80p
I can make it do
1+ £1.00
5+ 95p
etc
I dont undertsand how it seems to add extra carriage returns in to go vertical, instead of just going horizontaly across the page?
I am trying to acheive this type of structure at a sub section level based on the product information. I have got the 1 product per subsection/ and the standard advanced code to represent the products as a sub section list
http://www.thepackagingstore.co.uk/s...ard_Boxes.html
Thanks
My current PriceLayout code is
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsFirstQuantityBreak%22%20%2f%3e">
<actinic:block if="%3cactinic%3avariable%20Name%3d%22QuantityDescMax%22%2f%3e%20%3d%3d%201">
(<actinic:variable Name="QuantityDescMax"/> item
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20Name%3d%22QuantityDescMax%22%2f%3e%20%3e%201">
1+
</actinic:block>
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsMiddleQuantityBreak%22%20%2f%3e">
<actinic:variable Name="QuantityDescMin"/> +
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLastQuantityBreak%22%20%2f%3e">
<Actinic:Variable Name="QuantityDescMin"/> +
</actinic:block>
<br /><actinic:variable name="PreFormattedPrice" value="Product Price Excluding Tax" />
Customer has 5 price bands on certain products that will always be the same.
So want to acheive something like the following
1+ 5+ 10+
£1.00 95p 80p
I can make it do
1+ £1.00
5+ 95p
etc
I dont undertsand how it seems to add extra carriage returns in to go vertical, instead of just going horizontaly across the page?
I am trying to acheive this type of structure at a sub section level based on the product information. I have got the 1 product per subsection/ and the standard advanced code to represent the products as a sub section list
http://www.thepackagingstore.co.uk/s...ard_Boxes.html
Thanks
My current PriceLayout code is
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsFirstQuantityBreak%22%20%2f%3e">
<actinic:block if="%3cactinic%3avariable%20Name%3d%22QuantityDescMax%22%2f%3e%20%3d%3d%201">
(<actinic:variable Name="QuantityDescMax"/> item
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20Name%3d%22QuantityDescMax%22%2f%3e%20%3e%201">
1+
</actinic:block>
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsMiddleQuantityBreak%22%20%2f%3e">
<actinic:variable Name="QuantityDescMin"/> +
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLastQuantityBreak%22%20%2f%3e">
<Actinic:Variable Name="QuantityDescMin"/> +
</actinic:block>
<br /><actinic:variable name="PreFormattedPrice" value="Product Price Excluding Tax" />
Comment