CodeBard
Forum Replies Created
-
I am having the exact same issue. It started yesterday. Something has changed, but what?
There has not been any updates to the plugin since some time. It is possible that some other plugin is producing some output while using a hook which this plugin uses, at a point where there should be no output. And this plugin is capturing it. If you installed any plugins, it may come from one of those.
I’m going to address this issue in next update and eliminate any such chances. For the time being, you can try the fix mentioned above.
It is possible.
For a temporary fix, if you change index.php line 399 to
if(trim($output)!=”)
this problem may go away.
Lets see if this will work.
Forum: Plugins
In reply to: [CodeBard's Patron Button and Widgets for Patreon] patreon sub contentMay be a possibility. The next feature that will possibly happen will probably be login with patreon feature. that’s needed for many things.
The new version will probably fix your issue. Just update it from your WP admin.
Forum: Plugins
In reply to: [CodeBard's Patron Button and Widgets for Patreon] Illegal String OffsetThe new version will probably fix your issue. Just update it from your WP admin.
Adding OR !is_single() to the above if code may fix the problem at its core and may not necessitate any CSS hacks, though if you want to leave your solution at the CSS hack, its fine.
same problem.
In the meantime you should try this in your plugin code:
You can try adding !is_single() to the condition:
if(in_array(‘get_the_excerpt’, $GLOBALS[‘wp_current_filter’]) OR ‘post’ !== get_post_type() OR !is_single())
How does your slider plugin pull the data it shows?
If it was using the_excerpt or get_the_excerpt, then the change should have worked.
You can try adding !is_single() to the condition:
if(in_array(‘get_the_excerpt’, $GLOBALS[‘wp_current_filter’]) OR ‘post’ !== get_post_type() OR !is_single())
Lets see what will that do.
Forum: Plugins
In reply to: [WP Super Cache] All cache being cleared on any post editScratch that – after a day WP Super cache totally eradicated ~30,000 cached files again.
Which makes preloading useless.
If your slider is using the_excerpt or get_the_excerpt, that may be causing it since the current version of the plugin has a bug.
It will be fixed in the next, but until then you can do what i advised someone else who had a similar problem:
at plugin_core/core_actions.php in plugin folder, on line 11:
if(in_array(‘get_the_excerpt’, $GLOBALS[‘wp_current_filter’]) OR ‘post’ !== get_post_type()) $return = $content;
to
if(in_array(‘get_the_excerpt’, $GLOBALS[‘wp_current_filter’]) OR ‘post’ !== get_post_type()) {
$return = $content;
break;}
Let me know if that fixes it.
Forum: Plugins
In reply to: [WP Super Cache] Preload files dissapearYour issue is possibly the same one like the below:
https://www.ads-software.com/support/topic/all-cache-being-cleared-on-any-post-edit
Forum: Plugins
In reply to: [WP Super Cache] All cache being cleared on any post editI can confirm the same problem – “Clear all cache files when a post or page is published or updated.” unchecked, all posts preloaded, and when you edit just one post in wordpress admin, entire preloaded cache gets deleted.
I can also confirm that jciselectric’s fix fixes it.
Forum: Plugins
In reply to: [CodeBard's Patron Button and Widgets for Patreon] Conflict with Yoast SEOhttps://plugins.svn.www.ads-software.com/patron-button-and-widgets-by-codebard/trunk/plugin_core/
core_actions.php here is fixed. you can get this one and replace it with the one you have.
Forum: Plugins
In reply to: [CodeBard's Patron Button and Widgets for Patreon] Conflict with Yoast SEOIt is possible that you may have accidentally added any tabs to your plugin code, while you were editing to fix the issue with buttons showing in the excerpt. For the whitespace which appears in the xml file you showed, fits an exact tab length. You may want to check the file you editein the last thread you opened here.