Actinic Business v8.5.3 IDHB
I want to omit certain products from showing in the section pages, but I still want the extended info page to be created and uploaded.
If I set the Hide on Web Site, obviously this removes all references, including the extended info page, from the website, so is there a way to get Actinic to generate the extended info page with the Hide on Web Site set?
I have tried to do the following with Hide on Web Site not set...
I have created a true/false variable on the product 'HideProductInList'
then in the product list layout put a blockif around the whole code, testing the 'HideProduct' variable (HideProductInList != true).
This omits the product on the section page (so this part of the requirement passes) but does not create the extended info page (fails requirement).
So I added a second blockif to the end of the list layout to use ExtendedInfoPageDesign (this time, HideProductInList == true).
This creates the extended info page (passes), but leaves a blank space on the section page where the prodct would have appeared (fails).
I've also tried the above code with the Hide on Web Site set. No joy there either (not in section - pass, no ext info page - fail).
I'm sure there must be a way! Any ideas please...
I want to omit certain products from showing in the section pages, but I still want the extended info page to be created and uploaded.
If I set the Hide on Web Site, obviously this removes all references, including the extended info page, from the website, so is there a way to get Actinic to generate the extended info page with the Hide on Web Site set?
I have tried to do the following with Hide on Web Site not set...
I have created a true/false variable on the product 'HideProductInList'
then in the product list layout put a blockif around the whole code, testing the 'HideProduct' variable (HideProductInList != true).
This omits the product on the section page (so this part of the requirement passes) but does not create the extended info page (fails requirement).
So I added a second blockif to the end of the list layout to use ExtendedInfoPageDesign (this time, HideProductInList == true).
This creates the extended info page (passes), but leaves a blank space on the section page where the prodct would have appeared (fails).
Code:
<!-- blockif line added --> <actinic:block if="%3cactinic%3avariable%20name%3d%22HideProductInList%22%20%2f%3e%20%21%3d%20true" > ...normal product list layout code... <!-- end blockif line added --> </actinic:block> <!-- try and generate ext info page --> <actinic:block if="%3cactinic%3avariable%20name%3d%22HideProductInList%22%20%2f%3e%20%20%3d%3d%20true" > <actinic:variable name="ExtendedInfoPageDesign" /> </actinic:block>
I'm sure there must be a way! Any ideas please...
Comment