easyregistrationforms
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Registration Forms] Hidden InputHello @hadicoding,
Hi,
You can set the hidden or any field value by just passing the value as URL parameters. For example:
xyz.com/engineering?title=anything1
xyz.com/engineering?title=anything2
xyz.com/engineering?title=anything3Here title is the label of hidden field. If your field label is Page Title then you can pass it like:
xyz.com/engineering?page_title=anything1Let me know if this works for you.
Forum: Plugins
In reply to: [Easy Registration Forms] Plan RequiredHi @blairsawler,
Can you please provide the form URL to make sure we understand your requirement ?
Hello @matic_a,
It appears to be working fine in our test results. Can you please provide your registration form URL and forgot password page URL to test.
Forum: Plugins
In reply to: [Easy Registration Forms] Hidden InputHello @hadicoding,
Thank you for contacting us. We are unable to understand your requirements. Can you please please provide more details.
Forum: Plugins
In reply to: [Easy Registration Forms] Wont submit, just spinsHello @inovflow,
Marking it resolved as submit button appears to be working fine at your end. Let us know if you have any questions.
Forum: Plugins
In reply to: [Easy Registration Forms] How to set default countryDropdown fields are dynamically fetched from database after loading the complete form. This is why it takes some time. As of now this can not be fixed. But we will look into it in future releases.
Forum: Plugins
In reply to: [Easy Registration Forms] Payment Method LabelYes, Similar should work. For example :
add_filter(‘erf_paypal_front_label’,’change_paypal_label’);
function change_paypal_label($label){
return ‘Pay With PayPal’;
}Forum: Plugins
In reply to: [Easy Registration Forms] How to set default countryHello @anjanphukan,
You can use below hook in your functions.php file:
add_filter(‘erforms_address_country_load’,’country_load’,10,2);
function country_load($command,$form){
$command[‘default_value’]=’US’;
return $command;
}Forum: Plugins
In reply to: [Easy Registration Forms] Payment Method LabelHello @blairsawler,
It can be changed using one of our hook:
add_filter(‘erf_offline_front_label’,’change_payment_label’);
function change_payment_label($label){
return ‘In Person’;
}You can use above script in your functions.php file. This script changes the title for front end. If you want to change it for admin as well, use one more hook:
add_filter(‘erf_payment_method_titles’,’payment_method_titles’);
function payment_method_titles($methods){
$methods[‘offline’]= ‘In Person’;
return $methods;
}Forum: Plugins
In reply to: [Easy Registration Forms] Wont submit, just spinsHello,
Thank you for contacting us.
Please check if there is any javaScript error on your page.
If feasible, please provide us your form URL on our support at [email protected] in order to allow us to debug the issue at your end.
Looking forward.
- This reply was modified 7 years, 2 months ago by easyregistrationforms.
Forum: Plugins
In reply to: [Easy Registration Forms] Plan RequiredHello @blairsawler,
Thank you for contacting us.
You can make a plan required in by following the steps below.1.Go to Form Dashboard by click menu (3 dots) on the form card and click on Settings
2. Go to Configure > Plans
3. Toggle “Enable Payment”, form select plans where all the plans are displayed choose the plan to display on the form by toggling “Enable” this will display the plan in the form on front-end
4. You may make it required by enabling “Required” toggle button.
5. Save when done.Above steps will make a plan required i.e payment will be mandatory for the required plans and for non required plans there will be optional checkbox option will be available.
You may use combination of both required and optional.Apart from this if you’ve multiple required plans and want user to choose only one of them, you may enable “Allow single selection” option below plan selection.
Please let us know if you have any question, feel free to drop us an email on [email protected].
Forum: Plugins
In reply to: [Easy Registration Forms] Security token seems to be incorrectSSL should not be a problem. However wordfence might be causing the issue. We will be testing this further meanwhile however I would suggest to deactivate it temporarily to see if it is causing the issue.
Forum: Plugins
In reply to: [Easy Registration Forms] Security token seems to be incorrectHello @dorafatih,
Are you using any security plugin that might be causing this issue ? Please provide following details:
1. WordPress version.
2. Plugin version.
3. Any security plugin installed.Forum: Plugins
In reply to: [Easy Registration Forms] display nameHello,
Thank you for contacting us.
You may bind a text field field using “nickname” meta key.
Please follow the steps below :
1. Add a new text field in your form field.
2. Click on advanced settings
3. Select the option “Map To UserMeta”
4. Insert “nickname” Meta Key in the field providedYou may also bind other fields by following same steps.
Please let us know if you need further assistance, you may also write us on [email protected].
Forum: Plugins
In reply to: [Easy Registration Forms] Decimal numbersYou can use input pattern for any text field to allow only number and comma. Here is the pattern:[0-9,]*
Above pattern will allow only number and comma input.