shgotlib
Forum Replies Created
-
Forum: Plugins
In reply to: [WPSiteSync for Content] Unset some data from being syncI sent, thanks!
Forum: Plugins
In reply to: [WPSiteSync for Content] Unset some data from being syncSo, what about it?
If you can’t support on operation like this please just let me know please.
Right now, excluding from sync the featured image or main content is impossible.Thanks
Forum: Plugins
In reply to: [WPSiteSync for Content] Unset some data from being syncHi, Thanks for your answer.
I do have a return statement in the end of the function.The data is syncing properly based on my custom filter, but I have a problem only in the post content and the thumbnail.
In the content, if I exclude it from the sync, it’s remove the target post content completely.
In the featured image, if I ask from the filter to unset it, it’s still persist to sync it.Maybe it’s an issue with your apply_filter itself?
Thanks
Forum: Plugins
In reply to: [WPSiteSync for Content] Unset some data from being syncAnyone can help please?
Forum: Plugins
In reply to: [Contact Form 7] File /refillHi,
I got the same issue.
The line$wpcf7['cached'] = 1;is a js variable localized in the global scope (i.e. window scope), so you can change this var dynamically from anywhere you want after the var is initial by CF7.You can paste this code in your functions.php:
function delete_refill_cf7() { ?> <script> if(wpcf7) { wpcf7.cached = 0; } </script> <?php } add_action('wp_after_admin_bar_render', 'delete_refill_cf7');