Mehrshad Darzi
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Administration Style] Problem Padding bottom in Nav-TabThe .nav-tab-wrapper is standard class tab.
please check with
WordPress-admin-style
repository. and check with all patterns.Forum: Plugins
In reply to: [WP REST Cache] Add Option Or Filter for Change schedule cleanup TimePlease see the circle of updated cache post in your plugin:
1) you have an action:
add_action( 'save_post', [ $caching, 'save_post' ], 999, 3 );
2) in this action if post is updated call:
if ( $update ) { $this->delete_related_caches( $post_id, $post->post_type ); } else { $this->delete_object_type_caches( $post->post_type ); }
3) in the delete_related_caches method first checklist of for update and set new cleanup schedule:
if ( 0 !== $affected_rows && false !== $affected_rows ) { $this->schedule_cleanup(); }
4) your schedule_cleanup method set a new single event for 5 minutes:
wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_rest_cache_cleanup_deleted_caches' );
This means that the delete operation will have to wait until this time.
I tested several times and there is this problem.
Please Check.- This reply was modified 3 years, 5 months ago by Mehrshad Darzi.
Forum: Plugins
In reply to: [WP REST Cache] Add Option Or Filter for Change schedule cleanup Timewhen I edit the post title in the WordPress admin area.your plugin change post_title after 5 minutes in Endpoint post lists.
You do not think it is better for the user to be able to change this?@tdr
Please Give me screenshot from console log in Gutenberg Editor Page in WordPress Admin.@tdr
Thanks for your report.
We will solve this problem in the next version.Please Check this URL in your site:
site.com/wp-json/wp-statistics/v2/checkif you get message
status = true
. and do not have any cache plugin in your wordpress. go towp-config.php
file and removeWP_CAHCE
constant.Forum: Plugins
In reply to: [WP REST Cache] ACF changes not cachingI Suggest that added
update_postmeta
action for clear post cache.
when we changed ACF or Post meta field in REST API not WordPress admin area.
it not regenerate post meta cache.Please Update WP-Statistics To Latest Version.
It seems you are using a very old versionHi @horgster
What is your WordPress Admin Language?
Hi @justan
you can add range of your IP [66.249.x.x] in exclusion Setting.Hi @dale69
you can export WP-Statistics plugin report, then save in your dropbox.Hi @sdmurthy
You can Move WP-Statistics MySQL Table with phpmyadmin.Hi @dianny
do you use cache plugin ?Hi @arjanolsder
Please Check Your Visitor IP Method in WP-Statistics Setting page.
if you are using Cache plugin in WordPress, Check using cache method in plugin and purge cache data.@tehroongard
Hi,
You can use functions API:
https://wp-statistics.com/2017/05/26/function-api/