The Community forums are being phased out in favor of a new Slack group.
Add your email address below to get an invitation to join the community slack group
Register and login
Detail 1: I have a login form with a login button but there is no button to register.
Solution : Create a login page and in text mode, paste the following code that you adapt according to your need:
[frm-login remember="0" redirect="www.mysite.com/mypage"]
<p style="text-align: center;"><a title="Register" href="www.mysite.com/register"><input type="submit" value="REGISTER" style="height:40px; width:100%; -webkit-border-radius:4px; font-size:15px; background:#ed811c" /></a></p>
Detail 2: I have a registration form and I want to differentiate triggered notifications when creating and editing.
Solution : A hidden User ID field is blank when creating, so just use the conditional test in the notification. Here is an example of a notification message (Replace 1228 with the ID of your User ID hidden field:
<p>[if 1288]Hello[/if 1288][if 1288 equals=""]Welcome[/if 1288],</p>
[if 1288]
<p>We inform you that the modification of your personal information has been taken into account.</p>
[/if 1288]
[if 1288 equals=""]
<p>You have just created your account on [sitename] and we congratulate you.</p>
[/if 1288]
Detail 3: After an update, I want it to appear a message and that an automatic redirection to an URL is triggered.
Solution : In settings forms --> General --> Message, put in the "Updates" field:
Your data has been updated.
<script>
window.open('http://www.mysite.com/mypage', '_parent');
</script>
Here are some suggestions, there may be other ways to achieve your goals.
May 22, 2017 at 1:42 am
Requires beta version 2.0rc1 of the "User Registration" add-on here
May 22, 2017 at 10:11 am
Detail 4: I have a registration form and I would like to add a Cancel button
Solution : In settings forms --> Customize HTML --> Send button , add the code below, just before the tag </ div>
Clicking the cancel button will return you to the previous page but you can put the URL of your choice.
May 24, 2017 at 12:29 am
Detail 1 (Suggested by Jamie) : I have a login form with a login button but there is no button to register.
Solution : Create a login page and in text mode, paste the following code that you adapt according to your need:
where: frm_style_style-formidable is the style name that you find in the Style tab of FP, at the bottom.
where: onclick="window.location.href='http://www.my_site.com/my_register_page'" is what I inserted to add the link
July 7, 2017 at 2:03 pm
Thanks so much for taking the time to post what you've worked through. Have a great weekend!
July 7, 2017 at 11:22 pm
We can all share a piece of code, each one at own level and maybe one day he will help someone. This plugin is a great innovation, a small marvel!!
September 28, 2017 at 8:41 am
I just used the cancel button, worked perfectly!
Discussion closed.