Hi i noticed on the form id="joinForm" on the input submit statement you have double value=
it shows twice wether it is value of "continue" or value of "submit"
Hi i noticed on the form id="joinForm" on the input submit statement you have double value=
it shows twice wether it is value of "continue" or value of "submit"
Hi Aliia,
Go to he oxwall demo (figured it was better to show you that way) click on join, do page source and look at line 1350
<inputtype="submit"value="Join"id="input_45614257"class="ow_button ow_ic_submit"name="joinSubmit"value="Join"/>
double value attributes in input
:)
ps prob would not hurt to put some spaces between the attributes as well.
fyi just in case anyone asks if they get a 500 error after this.. they prob took out the closing function } bracket and did not put it back. I would recommend Aliia just to save some hassle to put the closing } on your post for the old and the new so they dont do that. :)
it should be
return OW::getThemeManager()->processDecorator('button', $params);
}
}
on both old and new examples :)
Also folks pay attention to the line number she mentions, as there are several of these functions renderInput
the issue is back on the registration form in two places. (i have my reg set up as multiple pages)
after password
value="Sign In" is listed twice
<div class="ow_form_options clearfix"> <div class="ow_right"> <span class="ow_button ow_positive"><span><input type="submit" value="Sign In" id="input_90332713" class="ow_positive"name="submit"value="Sign In" /></span></span> </div>
and the second at the end of the form
value="Continue" is listed twice
<tr class="ow_tr_delimiter"><td></td></tr> </table> <div class="clearfix"> <div class="ow_right"> <span class="ow_button ow_button ow_ic_submit"><span><input type="submit" value="Continue" id="input_69175295" class="ow_button ow_ic_submit"name="joinSubmit"value="Continue" /></span></span> </div> </div> </form>