easyregistrationforms
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Registration Forms] Translated formHello @anthony750,
Thank you for contacting us. Please make sure you have not inserted any special characters. Usually, it happens when content is copied from Word file. If the issue still persists, please write to us at [email protected].
Hello @vinayak0071,
There is no option to pass values from the submitted form. Though this can be achieved by using our response hook. Please configure the redirect URL from Form Dashboard->General Settings.
Then you can attach the data with the configured URL using our response hook. Here is the sample code:
add_filter(‘erf_ajax_before_sub_response’,’after_sub_response’);
function after_sub_response(response){
$response[‘redirect_to’] = ‘URL with additional data’; // Your custom logic
return $response;
}Forum: Plugins
In reply to: [Easy Registration Forms] popup maker plugin integration not workingThank you. We are looking into it.
Forum: Plugins
In reply to: [Easy Registration Forms] issues with Mail SMTP PluginsHello Shubham,
Our plugin uses WordPress mail utility to send all the emails. So there should not be any delay from the plugin end. If SMTP belongs to some other server then it usually takes time since emails are being handled by external server.
Forum: Plugins
In reply to: [Easy Registration Forms] Verification link does not showHello @berndg17,
Thank you for contacting us. Can you please share the link to test?
Forum: Plugins
In reply to: [Easy Registration Forms] popup maker plugin integration not workingHello @shubhamtiwaripage,
Thank you for contacting us.
Kindly drop us an email in [email protected], since we would require more details on the issue.
Looking forward.
Forum: Plugins
In reply to: [Easy Registration Forms] Manual user activationHello @angelrq98,
Thank you for contacting us. You can manually activate the user from the WordPress user profile area. Please check.
Forum: Plugins
In reply to: [Easy Registration Forms] Custom validation for input fieldThank you for contacting us. You can use one of our filters to hook your custom validation rules. Here is the sample code:
apply_filters(‘erf_custom_validation’,$errors,$form,$data);
Within your functions.php file:
add_filter(‘erf_custom_validation’,’form_custom_validation’,10,3);
function form_custom_validation($errors,$form,$data){
$errors[]= array(‘error_slug’,’your error message’);
return $errors;
}Forum: Plugins
In reply to: [Easy Registration Forms] Hide recaptchaThere is no such option to hide to the reCaptcha logo.
Forum: Plugins
In reply to: [Easy Registration Forms] MultisiteHello @gujingc,
Yes, It should work fine in a multisite installation.
Forum: Plugins
In reply to: [Easy Registration Forms] New featureHello @shubhamtiwaripage,
Instead of adding WooCommerce tabs within our submissions page, Our plugin attaches submissions within WordPress My Account section. You can enable/disable it from Global Settings->External Integration->WooCommerce My Account Integration.
Forum: Plugins
In reply to: [Easy Registration Forms] Login with phoneThank you. We will include the option in our next release.
Hello @alchemicalkid,
Above page is leading to 404 error. Please share the correct URL and also share the screenshot of the configuration screen.
Forum: Plugins
In reply to: [Easy Registration Forms] Get ImageHello @kalpesh92,
Image fields are always visible in the submission data. If it is not working at your end, please write to us at https://www.easyregistrationforms.com/support/
Forum: Plugins
In reply to: [Easy Registration Forms] Login with phoneHello @shubhamtiwaripage,
You can mark the phone number as a unique field from the field’s configuration. Regarding the login with the Phone number, It is not available as of now. We have noted it as a feature suggestion.