HOW TO FIX ADDITIONAL INFORMATION REQUIRED BUG
If you have selected custom field as required you have to:
Find this:
Code:
<vb:if condition="$show['customfields_profile']">
<h3 class="blocksubhead">{vb:rawphrase additional_required_information_profile}</h3>
<div class="section">
{vb:raw customfields_profile}
<vb:if condition="$show['birthday']">{vb:raw birthdayfields}</vb:if>
</div>
</vb:if>
and replace with
Code:
<vb:if condition="$show['birthday']"> <h3 class="blocksubhead">{vb:rawphrase additional_required_information_profile}</h3>
<div class="section">
{vb:raw birthdayfields}
</div>
</vb:if>
Then find
Code:
<p class="description">{vb:rawphrase enter_valid_email_address}</p>
Under this add
Code:
<vb:if condition="$show['customfields_profile']">
{vb:raw customfields_profile}
</vb:if>
If you have the birthday as require
Find this:
Code:
<vb:if condition="$show['customfields_profile']">
<h3 class="blocksubhead">{vb:rawphrase additional_required_information_profile}</h3>
<div class="section">
{vb:raw customfields_profile}
<vb:if condition="$show['birthday']">{vb:raw birthdayfields}</vb:if>
</div>
</vb:if>
and replace with
Code:
<vb:if condition="$show['customfields_profile']">
{vb:raw customfields_profile}
</vb:if>
Then find
Code:
<p class="description">{vb:rawphrase enter_valid_email_address}</p>
Under this add
Code:
<vb:if condition="$show['birthday']">
{vb:raw birthdayfields}
</vb:if>
If you have another filed required tell me what it is and i tell you how to fix
I'm italian so i hope my english is not wrong if you don't understand please feel free to tell me and i will explain you better