soulwasted
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Registration Forms] Redirect after submission stopped workingHi.
I’ve found that.
It was my mistake. Sorry making waves ??I have this in my theme’s
functions.php
:add_action('admin_init', 'disable_dashboard'); function disable_dashboard() { $user = wp_get_current_user(); $allowed_roles = array('administrator', 'librarian', 'almost_admin', 'fz_user', 'tendr_user'); if(!array_intersect($allowed_roles, $user->roles)) { wp_redirect(home_url()); } }
This is how I handle disabling dashboard for some roles. Because they should login and do things just on frontend.
Do you have any suggestions how to make to work with your forms?
Forum: Plugins
In reply to: [Easy Registration Forms] form-render.min.js throws errorHi,
it’s Yoast SEO as I didn’t mention above but found it.
Path:wp-content/plugins/wordpress-seo/admin/class-admin-asset-manager.php
Code:
// IE11 needs wp-polyfill to be registered before react. if ( $script && ! in_array( 'wp-polyfill', $script->deps, true ) ) { $script->deps[] = 'wp-polyfill'; }
And some more in the same file…
So I’ve added
wp_deregister_script('wp-polyfill');
To your “build.php” as temporary solution.pep?
Forum: Plugins
In reply to: [Easy Registration Forms] Export ER formJust curious.
Any news about ERF export?Thanks.
Forum: Plugins
In reply to: [Easy Registration Forms] form-render.min.js throws errorOk… I’ve added
wp_deregister_script('wp-polyfill');
To your “build.php” as temporary solution.
And your forms work now.It’s dirty but maybe it will give you some clue ??
- This reply was modified 6 years, 3 months ago by soulwasted.
Forum: Plugins
In reply to: [Easy Registration Forms] form-render.min.js throws errorFrom my “investigation” which plugins use “babel-polyfill” on my web.
— easy-registration-forms
— sitepress-multilingual-cms
— wordpress-seoMaybe you are “handling” Yoast SEO (wordpress-seo) but WPML (sitepress-multilingual-cms) still breaks it.
Don’t know… Just thinking aloud.Thank you!
Nice!
Thanks.Forum: Plugins
In reply to: [Easy Registration Forms] Style of regular expression to use in input patternNice!
Forum: Plugins
In reply to: [Easy Registration Forms] Style of regular expression to use in input patternSeems OK for the editor. I didn’t know that HTML can do this ??
This works for me in W3schools editor:
(.+\s(.+\s)*.{1}\.)+(,\s(.+\s)*.+\s.{1}\.)*
Then I put this to input pattern in ER forms. But it trims backslashes after save.
So remains this:
(.+s(.+s)*.{1}.)+(,s(.+s)*.+s.{1}.)*
Can you please have a look at this?
Forum: Plugins
In reply to: [Easy Registration Forms] Reload page after submission edit??
- This reply was modified 6 years, 4 months ago by soulwasted.
Forum: Plugins
In reply to: [Easy Registration Forms] Confirmation dialog before deleting submission??
Forum: Plugins
In reply to: [Easy Registration Forms] Custom user’s submissions listGreat!
Thanks again!Forum: Plugins
In reply to: [Easy Registration Forms] How to change success messageOh. I’ve found it. It’s under “Configure -> Post Submission”.
Sorry ??Forum: Plugins
In reply to: [Easy Registration Forms] Number Padding in Generation MethodHi guys,
it works as you promised.
I have to say one thing.
— You are awesome!Thanks.
pep?Forum: Plugins
In reply to: [Easy Registration Forms] Number Padding in Generation MethodThanks for that!
Have you considered renaming those options?I mean:
— “Number padding” for behaviour like in jotform (seems more like “layout” option)
— “Number offset” (maybe) for your current “Number padding”… Or some better naming.I will wait for your update in the meantime ;*