I am calling the gravity form on a colorbox window using this code:
<a href="#contact-calendar">Book Tickets</a>
<div style="display:none;">
<div id="contact-calendar" >
[gravityform id=10 ajax=true description=false title=false tabindex=200]
</div>
</div>
This works fine.
However when i try and pass a dynamic variable
<a href="#contact-calendar?event_name=Test Event">Book Tickets</a>
the colorbox windows opens and the form is not displayed at all.
I have to use the dynamic variable method as I have an index page with all the events and each event needs to be passed a different string..
Why does dynamic popluation doesnt work in this case?