%IF((g.screen $ '|') CIN 'BASK|OINF|')% ..... %IFEND%
| Executes ..... if the Screen code is BASK or OINF |
%IF(g.Screen EQ 'PROD')% ..... %IFEND%
| Executes ..... if the Current screen is a Product page |
%IF(g.Screen EQ 'CTGY')% ..... %IFEND%
| Executes ..... if the Current screen is a Category page |
%IF(g.Category_Code EQ 'X')% ..... %IFEND%
| Executes ..... if the Current Category equals Category Code X |
%IF(invshow)% ..... %ELSE% ..... %IFEND%
|
"If Product Is Inv-Show" block which only shows if the current product is able to be displayed according to it's current inventory |
%IF(invsell)% ..... %ELSE% ..... %IFEND%
|
"If Product Is Inv-Sell" block which only shows if the current product is able to be sold according to it's current inventory |
%IF(instock)% ..... %ELSE% ..... %IFEND%
|
"If Product Is In-Stock" block which only shows if the current product is currently in stock |
%IF(outstock)% ..... %ELSE% ..... %IFEND%
|
"If Product Is Out-Of-Stock" block which only shows if the current product is currently out of stock |
%IF(lowstock)% ..... %ELSE% ..... %IFEND%
|
"If Product Is Low-Stock" block which only shows if the current product is currently low stock |
%IF(noweight)% ..... %ELSE% ..... %IFEND%
|
"If Product Has No-Weight" block which only shows if the current product has no/zero weight specified |
%IF(hasweight)% ..... %ELSE% ..... %IFEND%
|
"If Product Has Weight" block which only shows if the current product has weight specified |
%IF(inbasket)% ..... %ELSE% ..... %IFEND%
|
"If Product Is In-Basket" block which only shows if the current product is in the shopper's basket |
%IF(notinbasket)% ..... %ELSE% ..... %IFEND%
|
"If Product Is Not-In-Basket" block which only shows if the current product is NOT in the shopper's basket |
%IF(zeroprice)% ..... %ELSE% ..... %IFEND%
|
"If Product Has No-Price" block which only shows if the current product has no/zero price specified |
%IF(hasprice)% ..... %ELSE% ..... %IFEND%
|
"If Product Has Price" block which only shows if the current product has non-zero price specified |
%IF(login)% ..... %ELSE% ..... %IFEND%
|
"If Customer Is Logged-In" block which only shows if the current shopper is logged in |
%IF(notlogin)% ..... %ELSE% ..... %IFEND%
|
"If Customer Is Not-Logged-In" block which only shows if the current shopper is not logged in |
%IF(secure)% ..... %ELSE% ..... %IFEND%
|
"If Secure Page" block which only shows if the current URL is a secure URL |
%IF(notsecure)% ..... %ELSE% ..... %IFEND%
|
"If NotSecure Page" block which only shows if the current URL is a non-secure URL |
%IF(empty)% ..... %ELSE% ..... %IFEND%
|
"If Basket Empty" block which only shows if the current shopper's basket is empty |
%IF(notempty)% ..... %ELSE% ..... %IFEND%
|
"If Basket Not-Empty" block which only shows if the current shopper's basket is NOT empty |