kyleabaker
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-UserAgent] ubrowser.png is incorrectThis should now be resolved in v1.1.6
Forum: Plugins
In reply to: [WP-UserAgent] ubrowser.png is incorrectThanks for clarifying and sharing the correct logo link. I’ll get this updated and released soon.
Forum: Plugins
In reply to: [WP-UserAgent] ubrowser.png is incorrect@kissshot Can you please share a link to a correct version of the UC Browser icon from Google or other so I have a reference?
Forum: Plugins
In reply to: [WP-UserAgent] Problem when reply commentThis should be resolved in the latest version: v1.1.5
Forum: Developing with WordPress
In reply to: Add Filter ‘comment_text’ not working in Admin Repliescomment_text
works, was a logic error. Fixed now.Forum: Plugins
In reply to: [WP-UserAgent] Problem when reply commentThanks for the bug report. I’m able to reproduce the issue you’ve mentioned and will start looking into a solution, but do not have an ETA on when it will be resolved.
Thanks again for reporting!
Forum: Plugins
In reply to: [WP-UserAgent] 404 not found, android.pngThis should be resolve in version 1.1.4 which should now be available.
Forum: Plugins
In reply to: [WP-UserAgent] 404 not found, android.pngHi kisshot,
I will look into this later this afternoon and push a fix if possible. Do you happen to have the full user agent string that causes this error?
Forum: Plugins
In reply to: [WP-UserAgent] You should consider adding country flags to this plugin…Thanks for the suggestion!
As mentioned in the FAQ section, I’m in the investigation stages on that. I don’t have a firm ETA on when they’ll be added, but I’m certainly interested this feature as well!
Forum: Plugins
In reply to: [WP-UserAgent] New DIV and custom outputThis should now be resolved with the latest update. Thanks again for reporting!
Forum: Plugins
In reply to: [WP-UserAgent] New DIV and custom outputI’ll try to get this change out shortly as others using the custom output option are probably experiencing this issue as well. Thanks for the feedback!
See the following screenshot of a what a subscriber can see..
https://i57.tinypic.com/ffbsjr.jpg
Clicking the link leads them to a page where they don’t have sufficient permissions to continue, however, the link should not be presented to begin with.
Forum: Themes and Templates
In reply to: [Alexandria] Image alt tags and css errorsAlso, the existing alt attribute for Facebook in footer.php is incorrect. Possibly other places as well.
I’m using Dreamhost and getting the same error. I’m really looking forward to seeing this plugin’s issues get resolved!
Forum: Plugins
In reply to: [Plugin errors] Cannot modify header information – headers already sentI found a fix for this, just in case any other plugin developers are having the same problem.
Chances are pretty high that the problem is on a line where you’re trying to echo something from your plugin.
Wrap the echo with the following conditional (blah and dots added as examples to wrap):
if(empty($_POST['comment_post_ID'])) {
echo "blah";
...
}
I hope this helps someone since it took me a long time to find a fix for this annoying problem. You’re welcome. ??