Vijay Padhariya
Forum Replies Created
-
Is this released?
- This reply was modified 3 years ago by Vijay Padhariya.
Hi There,
I am getting same error sending mails 3 times for double opt in.
Is there any fix for this?
the form is in the site : https://designgood.com/
Scroll down to see the button “Download the Worksheet”The above form is using below plugins installed
1. Contact form 7
2. Email before download
3. MailChimp for WordPressForum: Fixing WordPress
In reply to: Cannot access property WP::$public query_varsI also posted a question here : https://wordpress.stackexchange.com/questions/205279/fatal-error-cannot-access-property-wppublic-query-vars
Forum: Fixing WordPress
In reply to: Cannot access property WP::$public query_varsHello folks,
Getting the same error for more then past two months now.
every time I took above actions but again I got same errors sometimes one time a day or sometimes many times a day!
further more I also change permission of file to 444 still it get corrupted!
please help regarding this issue, even my site is now showing up in google search result….
Forum: Plugins
In reply to: [WP REST API (WP API)] polylang pluginHi pngised,
can you provide explanation on how did you do it?
Forum: Plugins
In reply to: [WP REST API (WP API)] polylang pluginI am having same issues like yours, and I also raised an issue in wp-api git repo.
Forum: Plugins
In reply to: [Yoast SEO] Issue with transient in WP 4 and WP SEO 1.6.3Same issue arrived in all of my client’s site,
Temporary solution is below
1. Open class-sitemaps.php under wp-content/plugins/wordpress-seo/inc/class-sitemaps.php
2. Go to line no 305 and change code like below
$caching = apply_filters( 'wpseo_enable_xml_sitemap_transient_caching', false );
Thats it, and it will fix the problem, but next time when Yoast SEO release update and you update, it will flush these changes!
Forum: Plugins
In reply to: [WP Super Cache] Mobile pages cached but never served (WordPress Mobile Pack)Hello,
I am basically had same problem with one of my site, and I found and fixed the issue temporarily, hope WP-superCache team will sent some changes for this soon.
here is the file which you need to edit.
1. Open wp-cache-phase1.php file under wp-content/plugins/wp-super-cache directory
2. find function name “get_supercache_dir” and replace line below
return apply_filters( 'wp_super_cache_supercachedir', $cache_path . 'supercache/' . trailingslashit( strtolower( preg_replace( '/:.*$/', '', str_replace( 'https://', '', str_replace( 'https://', '', $home ) ) ) ) ) );
TO
return apply_filters( 'wp_super_cache_supercachedir', $cache_path . 'supercache/');
and you are done.