easyregistrationforms
Forum Replies Created
-
Hello @jeroentjed,
Thank you for contacting us. After further analysis on your page, It appeared that some script is intercepting the login request. Are you using any security plugin? Could you please deactivate the other plugins and check if it’s working.
Forum: Plugins
In reply to: [Easy Registration Forms] Global notifications to admin/user not sentHello @adguer,
Thank you for contacting us.
It seems email configuration is not correct.
Global Notifications are the notifications that is to be configured on global level. But they have to be enabled at Form level as well. Please make sure notifications are enabled in Form settings.
You may drop us an email on [email protected] as we need more details in order to help you configuring various emails.Regarding submission deletion, as you are using registration type form, upon submission it saves the submission in ERF Submissions and creates a new user.
If you delete a submission, it only deletes the submission record, it does not deletes a user.In order to delete a user you need to delete it from WordPress Dashboard > Users in the left sidebar.
Forum: Plugins
In reply to: [Easy Registration Forms] 1 register user submit multiple times in formHello @ronavo0,
Thank you for the details. We will be adding a new option as “Disable multiple Submissions”. This will allow admin to disable submission if the user already has a submission on the form.
Glad to hear. By default, the plugin makes two ajax requests to fetch dynamic configuration. This allows for changing the form’s behaviour by custom hooks. As you are using address fields there is an additional call to fetch all the country names. Plugin auto selects the country field (From user’s IP) hence it results in fetching the state data. This is the reason you have 4 ajax calls while loading the page. However, all these calls are asynchronous (In background) so the user won’t experience any delay in page rendering. Having such a structure allows loading data from any data source (with the help of hooks).
Let me know if you have any questions.
Hello @edzz83,
Plugin calls ajax only on the pages where the form is added. After analysis, it appears that form has been added in a popup. This popup is loading on every page. We do not provide any logic for popup so it must be from some third-party plugin. Though we can not see the link which triggers the popup to show. But we can clearly see it from HTML code. popmake-1329 is the popup ID, You can check the HTML source code from the browser.
Regarding the page loading speed, Ajax is been used to improve the user experience in the browser. Ajax requests run in the background and have no impact on the page rendering time in the browser.
Forum: Plugins
In reply to: [Easy Registration Forms] Display Form Submission InfoHello @jstuts5797,
Thank you for contacting us. Please have a look at https://www.easyregistrationforms.com/product/submission-views/
Forum: Plugins
In reply to: [Easy Registration Forms] 1 register user submit multiple times in formHello @ronavo0,
Thank you for contacting us. This is how it works. It allows users to re-register on the same event (If it is an event registration form). You can disable it from Form Settings->Configure->Restrictions->Allow Submission from Logged in users
An alternative approach is to hide the registration form page from logged in users.
Forum: Plugins
In reply to: [Easy Registration Forms] Change error textHello @bordocorap,
Thank you for contacting us. There is no such option to alter the strings. However, as our plugin complies WordPress internationalization API, You can use any PO editor to change the string. LocoTranslate is one of the popular choice.
Hello @suprask,
Thank you for contacting us. This value can be changed from Form Settings->Configure->Display Settings->Content Above the Form
Also, this value is not required. Please check. and let me know.
Forum: Plugins
In reply to: [Easy Registration Forms] User Meta Data?Hello @jstuts5797,
Thank you for contacting us. If the metadata does not present, Our plugin will create one and map with the corresponding data.
Forum: Plugins
In reply to: [Easy Registration Forms] reCaptcha V3Hello @webg,
Currently ER Forms supports only reCaptcha v2.
We have noted the requirement and would implement compatibility with reCaptcha v3 soon.
Please stay tuned, drop us an email in [email protected] in case of any query.Forum: Plugins
In reply to: [Easy Registration Forms] Regarding limitationsHello @pavanbhat,
There is no limit of storing submissions per form. You may store as many submissions as you want.
Feel free to drop us an email on [email protected] if you have any question.
Forum: Plugins
In reply to: [Easy Registration Forms] Plan RequiredHello @blairsawler,
This can be done using custom javascript as we do not have any such configuration in the current conditional addon. However, our next version will allow you to make any field required or optional on the basis of field values.
Forum: Plugins
In reply to: [Easy Registration Forms] Fields in Payment Pending EmailsHi,
There is no such configuration to include additional information with configuration. However there is a hook (filter) which you can use to insert any dynamic values in the message body. Below is the hook:
$message= apply_filters(‘erf_offline_email’,$message,$submission);You have to add a filter in your functions.php file. There are few other emails:
1. Payment Pending:
$message= apply_filters(‘erf_pending_pay_email_msg’,$message);
2. Payment Completed:
$message= apply_filters(‘erf_completed_pay_email_msg’,$message);However in the above two filters, We do not pass submission details. They will be included in our next release.
Let me know if you have any more questions.
Forum: Plugins
In reply to: [Easy Registration Forms] Fields in Payment Pending EmailsHello @blairsawler
Please go to Global Settings > Global Notification, click on Manage for Payment Completed(User).
Enable the notification, it will send necessary payment details to the user.Kindly check the option and let us know if it fulfils your requirement.