Announcement

Collapse
No announcement yet.

Stopping SellerDeck from Parsing Things in Square Brackets

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Stopping SellerDeck from Parsing Things in Square Brackets

    This is a "tecchy" issue but it can be very frustrating if you don't understand what's happening.

    If you place the following expression within a full description:

    <input type="hidden" name="nlbox[1]" value="97">

    SellerDeck will turn it into the following:

    <input name="p" id="p" value="12" type="hidden"><input name="nlbox<Actinic:Variable Name = '1'/>" value="97" type="hidden">

    The reason for this is SellerDeck turns [1] into a variable called '1'. The square brackets tell SellerDeck to treat it like a variable.

    To avoid this, just use spaces between the square brackets and the content e.g. [ 1 ]

    <input type="hidden" name="nlbox[ 1 ]" value="97">
Working...
X