zdwebmaster
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Manager] Uncaught TypeError: jQuery(…).modal is not a functionHi @humayonk
No it’s not working.
When I using “Must Agree with Terms” lock option, modal is working without error. But when I activated “WPDM – Form Lock” option from lock options and select form, modal is not working with this error :
// Uncaught TypeError: jQuery(…).modal is not a function
all scripts and source paths same, just I want use form lock option.
Do you have any idea?
Forum: Plugins
In reply to: [Extended CRM for Users Insights] User Data Except User Meta TableHi Deni,
Thank you. Is it possible to show a example? I dont know which files I must customizate.
I have data A table with user_id field and I have user table. How can I get these datas. Which files I must customizate and how?Only a example will be great for me.
Thank you.
Forum: Plugins
In reply to: [Contact Form 7] Disable Submit Button While Sending FormYou can add this code under the shortcode of CF7 on your webpage.
My theme is Avada so I use this code :
var el = $(document.getElementsByClassName(“fusion-slider-loading”));
but you can check your loader at console. It can be this too :
var el = $(document.getElementsByClassName(“ajax-loader”));
Good luck!
Forum: Plugins
In reply to: [Contact Form 7] Disable Submit Button While Sending FormI found the solution
If someone need:
<script type=”text/javascript”>
$ (document). ready (function() {
var myinter2 = setInterval(function(){
var el = $(document.getElementsByClassName(“fusion-slider-loading”));
if ($(el).css(“display”) !== ‘none’)
{
$(“.wpcf7-submit”).prop(“disabled”,true);
}
else{
$(“.wpcf7-submit”).prop(“disabled”,false);
}},100);
});
</script>Forum: Plugins
In reply to: [Contact Form 7] Disable Submit Button While Sending FormYou right but I need disable this button. Because I send random link to for one user. When users click submit button again, they can get many random links.
I want when submit is clicked and spinner is working, button must be disable. When progress is finish it will be enable again.
How I can do this with CF7?
Thank you.
Forum: Plugins
In reply to: [Contact Form 7] Spinning wheel never goes awayEnable Async JavaScript – Enable
Async JavaScript Method – Defer
jQuery – Exclude
Script Exclusion – jquery, jquery ui vs. you can try your scripts..Good luck!
Forum: Plugins
In reply to: [Contact Form 7] Spinning wheel never goes awayForum: Plugins
In reply to: [Contact Form 7] Spinning wheel never goes awayAll of plugins
Avada Builder
Avada Core
Cloudflare
Contact Form 7
Contact Form 7 Conditional Fields
Contact Form 7 Multilingual
Contact form 7 to api + Basic auth
WordPress Geo Plugin
WP Mail SMTP
WPDM – Form Lock
WPML Media
WPML Multilingual CMS
WPML String Translation
WPML Translation Management
Yoast SEO
Yoast SEO Multilingual
Yoast SEO PremiumThank you
Forum: Plugins
In reply to: [Contact Form 7] Spinning wheel never goes awayYou can check here :
above
Thank you
- This reply was modified 5 years, 2 months ago by Jan Dembowski.