easyregistrationforms
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Registration Forms] Installing plugin makes all users ActiveHello @rogasgr,
Our plugin do not change the state to active or inactive of existing user.
We cannot block already active users as there may be users who are already using services on the website. Changing state of previously active users to inactive is not a good idea, therefore we only handle the new submissions/registrations done through our forms.
Please let us know if you still have any questions.
Forum: Plugins
In reply to: [Easy Registration Forms] Send email when note is addedThank you for your suggestion. This feature is partially implemented in our current version. However as of now it is available only for Registration Forms. We are improving it by including some of your suggestions. This will be part of our this week release. Please keep your plugin updated.
Hello @dnicinski,
After further discussion with the technical team, I came to know that there is already a hook which you can use to redirect users. You just have to register the hook within your theme’s functions.php. Here are the details:
1. Hook name is “erf_user_account_verified”. To register a function you can use below code:
add_action(‘erf_user_account_verified’,’user_verified’);
function user_verified($user){
// Getting form details
$form_id= isset($_REQUEST[‘erf_form’]) ? absint($_REQUEST[‘erf_form’]) : 0;
$form= erforms()->form->get_form($form_id);
if(empty($form)){
_e(‘Form not found.’,’erforms’);
return;
}
// Here you can define your redirection logic on the basis of form object or form id}
Remember to configure Account Verification Page from Configure->User Account. Otherwise above system won’t work.
Feel free to ask any questions.
Hello @dnicinski,
Currently we do not have an option to redirect user from verification page.
We will release a version providing an internal hook which you can call and specify the the link to redirect user after verification.Please drop us an email on [email protected] if you have any queries.
Forum: Plugins
In reply to: [Easy Registration Forms] Payment optionsHello @janwold,
You may integrate Conditional Logics with product that will show/hide the plans(products) in the form and total of product will be displayed, however currently we do not have the feature to allow user to fill in the quantity of products.
Our team is working on the enhancement of the plugin and ability to add quantity of a plan by user, it will be added soon.
In regards to your payment option, you may send submission to an external link from “Form Dashboard > Configure > Post Submission > Post to External URL” and configure link and receive the submission there, but the payment status will not be changed on your site if you handle it outside ERF environment, however you may change the status manually.
To add product to a form, you may use plans feature and integrate plan on a form.
Please let us know if we missed something or misunderstood your requirement.
You may also drop us an email on [email protected] for further assistance.- This reply was modified 7 years, 4 months ago by easyregistrationforms.
Forum: Plugins
In reply to: [Easy Registration Forms] PHP error: Call to a member function get_options()Hi there,
Thank you for reporting the issue. However there is no such encountered during our testing. This might be related to your specific environment. We are investigating it further. I would appreciate if you can contact us from our website so that we can discuss this further. Please write us at: https://www.easyregistrationforms.com/support/
Forum: Plugins
In reply to: [Easy Registration Forms] How to change REGISTER button colourHello,
Please contact us on [email protected], we would require your form URL and page URL where theme button is displayed, to provide you CSS and instruct you the steps of implementation.
Looking forward for your response on email.
Forum: Plugins
In reply to: [Easy Registration Forms] Autocomplete address field / UKHi there,
Yes this requires some coding skills. Please contact us from http://easyregistrationforms.com/support/ so that our experts can provide you more details.
Forum: Plugins
In reply to: [Easy Registration Forms] How to change REGISTER button colourHello,
Thank you for contacting us.You may use CSS code given below in your theme file.
.erf-container button{ background-color : COLOR; }OR
Please follow the steps below :
1. Go to form builder
2. Hover over submit button field.
3. Click on Pencil icon (edit button)
4. Give your custom class in “Class” field.
5. Save when done.Using your custom class to define your styles on the button in your theme CSS file.
Please let us know if you still face any issue, you may drop us an email on [email protected]
Forum: Plugins
In reply to: [Easy Registration Forms] Autocomplete address field / UKHi there,
Thank you for contacting us. Currently we do not have such feature. However this can be easily implemented by auto complete library. Here are the steps:
1. Create a text type of field (Using our form builder).
2. Use element’s ID to register it with the autocomplete library within your theme’s file.Forum: Plugins
In reply to: [Easy Registration Forms] is there any option to print form ?Hello,
Please follow the steps to print a single submission :
1. Go to Form Dashboard
2. Click on Submissions
3. Hover over the submission and click on View
4. Click on “Print” button on the top, to print the submission.If you want to download all the submissions in a CSV format, please follow the steps below :
1. Go to Form Dashboard
2. Click on Submissions
3. Click on “Export” at the topIf you still face any issue, feel free to drop us an email on [email protected]
Forum: Plugins
In reply to: [Easy Registration Forms] Saperate User AccessHi,
Thank you for contacting us. As of now system is available to only admin users. Although we will be including this feature in our future releases but it will take some time to carefully plan all the possibilities.
Forum: Plugins
In reply to: [Easy Registration Forms] Search Unique ID in submissionHi,
It has been included for next week release. Please keep your plugin updated.
Hi there,
Thank you for contacting us. Here are the answers as per your queries:
Database Table
1. This can be done with the help of our post submission hook. Here is the sample code for your theme’s functions.php:
add_action(‘erf_post_submission’,’after_submission’);
function after_submission($submission){
// Here $submission has all the required data. You can insert this data into any custom table
}
2. I am not sure what you mean by custom fields. You can add or rename any field in Form Builder. Please clarify if I am getting it wrong.Password field
1. We do not save password. It is handled by WordPress core system which stores the password data into user table.
2. It is not possible by any our hooks.Forum: Plugins
In reply to: [Easy Registration Forms] Display full with fields in single column layout.To make fields displayed full width, custom CSS displayed below can be added in theme CSS.
.erf-container .erf-form .form-control, .erf-container .erf-form .other-option + label input[type="text"], .erf-container .erf-payment-wrapper{ max-width : 100%; }