easyregistrationforms
Forum Replies Created
-
Hi there,
We have added an option to insert label for Confirm Password. Please upgrade and check.
Issue is fixed now. Please update.
Forum: Plugins
In reply to: [Easy Registration Forms] Add Unique Submission ID & Feature requestHi there,
Unique ID has been added now. You can use following format:
add_filter(‘erf_submission_25_table_columns’,’submission_columns’); // here 25 is the form id
/*
Here key corresponds to submission column and value represents table column name
*/
function submission_columns($columns){
return array(‘User Email’=>’User Email’,’Username’=>’Username’,’Sec Email’=>’Sec Email’,’Hobbies’=>’Hobbies’,’File Upload’=>’File Upload’,’Unique ID’=>’Unique ID’);
}Forum: Plugins
In reply to: [Easy Registration Forms] Add Unique Submission ID & Feature requestHi,
Unique submission ID will be included in this week release. I will update you. Regarding the date based filters, We will add this in next week release.
Thank you. Fix will be included in this week’s release.
Forum: Plugins
In reply to: [Easy Registration Forms] Export ER formHi,
It is under development. It will be available in few weeks.
Hi,
Yes, It is not translatable. Will be fixed in next release.
Forum: Plugins
In reply to: [Easy Registration Forms] Style of regular expression to use in input patternThank you for bringing this up. We be releasing a fix next week.
Forum: Plugins
In reply to: [Easy Registration Forms] Style of regular expression to use in input patternHi,
Our plugin uses HTML input patterns for matching. Please try your expression on https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_input_pattern and check if they are working. If they work here, They should be working fine with our fields.
Forum: Plugins
In reply to: [Easy Registration Forms] Settings/requestHi there,
Thank you for contacting us. Regarding your first question, We already have a filter to change the columns in admin submission view. Here is an example:
add_filter(‘erf_submission_25_table_columns’,’submission_columns’); // here 25 is the form id
/*
Here key corresponds to submission column and value represents table column name
*/
function submission_columns($columns){
return array(‘User Email’=>’User Email’,’Username’=>’Username’,’Sec Email’=>’Sec Email’,’Hobbies’=>’Hobbies’,’File Upload’=>’File Upload’);
}Make sure to add above code (With your form ID) in theme’s functions.php. Also please keep column labels same as the field labels (Even the casing).
Regarding your other two queries, I suggest you to write us on http://www.easyregistrationforms.com/support/, It would help us to better understand your requirements and we will be able to implement for general users.
Forum: Plugins
In reply to: [Easy Registration Forms] Reload page after submission editHello,
As of now there is no such option available.
We will provide a filter in our next week’s release.Forum: Plugins
In reply to: [Easy Registration Forms] Confirmation dialog before deleting submissionHello,
We have noted your requirement and will be releasing an update for this in our next week’s release.Forum: Plugins
In reply to: [Easy Registration Forms] Can’t Export to excelHello,
We’ve received your request on our support portal and we’ll continue to assist you there since we need private details on to resolve the issue.
Forum: Plugins
In reply to: [Easy Registration Forms] Problem in exporting submissionHello,
Thank you for contacting us.Please make sure that every of the field label is different.
You may send us your exported CSV file on [email protected] in order to allow us to analyse your exported file.
Looking forward to hearing from you.
Forum: Plugins
In reply to: [Easy Registration Forms] Custom user’s submissions listHello,
To override “My Account”the template you may use available filters :
erf_my_account_template erf_wc_my_account_templateAbove filters are used in “my_account” function of ERForms_Frontend class.
Drop us an email on [email protected] for further assistance.
- This reply was modified 7 years, 8 months ago by easyregistrationforms.