Page 1 of 1

SD 2013 spurious warnings on MOTO form

Posted: Sun Sep 14, 2014 7:51 am
by norman
Problem: When choosing a product in the MOTO form, spurious warnings about Extended Info Images appear if these products use dynamic choice images on radio buttons.

This is yet another hideous bug in SellerDeck. The PageType variable should remain the same all the way through a page being generated. In SD 2013 it seems to be unreliable within the Moto Form.

I have found a (sort of) workaround. However, it’s only useful if you don’t use Extended Info pages as it has the side effect of disabling the display of the dynamic choice images on Extended Info pages.

Fix is: Go to Design / Library / Conditions / Choice Image Control / ShowDynamicChoices. Delete the text MOTO Form leaving the two quotes around it (like ""). Leave the rest of the line intact.

Condition was:

Code: Select all

! ( (<actinic:variable name="PageType" /> == "MOTO Form") || ((<actinic:variable name="PageType" /> == "Section") AND ! <actinic:variable name="DCI-ShowOnSectionPages" />) )

Condition should now look like:

Code: Select all

! ( (<actinic:variable name="PageType" /> == "") || ((<actinic:variable name="PageType" /> == "Section") AND ! <actinic:variable name="DCI-ShowOnSectionPages" />) )