Dear EE support team
I’ve made the following experience with Safecracker:
In my Safecracker form, I have the following two hidden fields.
<input type="hidden" name="reg_club" id="reg_club" value="{exp:member:custom_profile_data}{club}{/exp:member:custom_profile_data}" />
<input type="hidden" name="reg_club_id" id="reg_club_id" value="{exp:member:custom_profile_data}{club_id}{/exp:member:custom_profile_data}" />But both fields reg_club and reg_club_id get the same value, the value of club_id.
As the fields location and club in the profile_data have the same value I tried this:
<input type="hidden" name="reg_club" id="reg_club" value="{exp:member:custom_profile_data}{location}{/exp:member:custom_profile_data}" />
<input type="hidden" name="reg_club_id" id="reg_club_id" value="{exp:member:custom_profile_data}{club_id}{/exp:member:custom_profile_data}" />And now, it works fine. But I can’t imagine where the problem is ...
Thanks for your help.
MISC