• Plugin cannot read parameters while URL is encoded. Example:

    [dynamichidden name “CF7_GET key=’name'”]
    [dynamichidden phone “CF7_GET key=’phone'”]

    OK:
    domain.com/?name=john&phone=123
    <input name=”name” value=”john”>
    <input name=”phone” value=”123″>

    ERROR:
    domain.com/?name=john%26phone=123
    <input name=”name” value=”john&phone=123″>
    <input name=”phone” value=””>

    ERROR:
    domain.com/?name=john[& a m p ;]phone=123 (AMPERSAND)
    <input name=”name” value=”john”>
    <input name=”phone” value=””>

    Can you decode URLs before assigning to hidden fields?

    • This topic was modified 2 years, 7 months ago by pepe80.
    • This topic was modified 2 years, 7 months ago by pepe80.
    • This topic was modified 2 years, 7 months ago by pepe80.
  • The topic ‘Plugin cannot read parameters while URL is encoded’ is closed to new replies.