[ic] flypage print problem

Grant emailgrant at gmail.com
Sun Jun 30 00:13:56 UTC 2013


> I am trying to print out the new shipping information based on a field
> called width in the product table with the flypage.html.
>
> [if-item-data products width >160 ][L]<span style="color :
> red;"><b>Truck Shipping : $170</b></span> [/L][/if-item-data], this
> works fine, but when I try to condition the width between two sizes as
> below, it does not print the info.
>
> [if-item-data products width >105 and if-item-data products width <160
> ][L]<span style="color : red;"><b>Truck Shipping : $85</b></span>
> [/L][/if-item-data]

How about:

[if-loop-data products width > 105]
  [if-loop-data products width < 160]
    [L]<span style="color: red; font-weight: bold;">Truck Shipping :
$85</span>[/L]
  [/if-loop-data]
[/if-loop-data]

Of course, this needs to appear inside a loop.

- Grant



More information about the interchange-users mailing list