CodeBard
Forum Replies Created
-
That can be possible with the new version of the plugin.
The entire engine behind the plugin will change with a better one when its development completes. Then new features and addons would be easier to integrate. Along with any developer being able to code his/her own addons to extend plugin’s functionality.
Though every action in the current version is hook-able too, the new version will be much more mature and developer-friendly.
Author widget should not appear in any page which is not a single page. Which is effected by the below check in plugin_core/widgets.php
if(!is_single())
{
return;}
However, Site widget should appear anywhere. You may be using author widget and not site widget.
No problem. Enjoy.
Alright,
1.0.5 should fix that. Its posted to www.remarpro.com just now.
In your wordpress admin, plugin updates section, when new version shows up as available, update the plugin.
In case you can force it to update, you can try that as well. But that may not work if the update did not propagate there yet.
Alternatively you can just download 1.0.5, extract the files and ftp them, overwriting existing plugin files at your site.
Please let me know if this fixes your issue.
That’s definitely not the reason.
Where exactly you are getting that error? In plugin administration screen, wordpress admin, or the site? Or, did you do an options reset from plugin options?
Have you ever deleted any options or anything from your wordpress database directly?
That error stems from info from plugin (not options) not being found in your database.
I just issued 1.0.4 update to address this whitespace-capturing issue.
Anyone who has such problems (headers already sent problem) may try updating to 1.0.4 to fix it.
If you cant login, you can download the plugin from www.remarpro.com, extract and ftp into its place at the plugins folder. Overwrite everything – your settings will be protected in database.
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.