sparkweb
Forum Replies Created
-
Forum: Plugins
In reply to: [BlackBox Debug Bar] [Plugin: BlackBox Debug Bar] php notice, small hintYup, it’s fixed in 0.1.2. 5-star rating left. Thanks for a great plugin.
Forum: Plugins
In reply to: [BlackBox Debug Bar] [Plugin: BlackBox Debug Bar] php notice, small hintVersion 0.1.1 is great. I do have the same problem as Frank, though. This screenshot might help explain: http://screencast.com/t/8WwgX0tOw
Running WP 3.1
Question: would it be possible to put print_r($wp) into the Globals dropdown? That might be some really handy information.
Forum: Plugins
In reply to: [BlackBox Debug Bar] [Plugin: BlackBox Debug Bar] php notice, small hintHi Greg, that would be great. My only complaint would be that the bar would be visible when first installed until I went to put in the whitelist IP. Maybe the IP could be loaded in as a default in the plugin files as well for a smoother transition? I think that most users of your plugin are plenty comfortable editing plugin files.
Regarding Frank’s problem, it sounds like in this case there wasn’t a file entry in the $error array. You could check for this by doing something like this:
if (array_key_exists('file', $error) echo $error['file'];EDIT: Thinking a little more about this, I think that in Frank’s case an empty error array got added to the database. Just check for this right underneath this line:
foreach($bb->getErrors() as $error)by adding this:
if (array_key_exists('errno', $error) :Then it won’t try to display any empty error array lines.
Forum: Plugins
In reply to: [BlackBox Debug Bar] [Plugin: BlackBox Debug Bar] php notice, small hintI get a lot of these.
Notice: Use of undefined constant E_DEPRECATED - assumed 'E_DEPRECATED' in /var/www/vhosts/foxy-shop.com/subdomains/dev/httpdocs/wp-content/plugins/blackbox-debug-bar/application/BlackBox.php on line 131 Notice: Undefined index: count in /var/www/vhosts/foxy-shop.com/subdomains/dev/httpdocs/wp-content/plugins/blackbox-debug-bar/application/BlackBox.php on line 142I would love to run this for a short time in my production environment. Could it be displayed only if you are a logged-in wordpress user?
Forum: Plugins
In reply to: [CSV Importer] [Plugin: CSV Importer] Deprecated NoticeAlso:
Notice: is_taxonomy is deprecated since version 3.0! Use taxonomy_exists() instead. in /var/www/vhosts/foxy-shop.com/subdomains/dev/httpdocs/wp-includes/functions.php on line 3303
Seemed like there were a few more errors like this when checking taxonomies, it might be worth turning debug mode on to make sure these all get cleaned up. Thanks!
Forum: Fixing WordPress
In reply to: Call add_theme_support( 'post-thumbnails') Multiple Times?I am having the same problem. I’m setting featured image from my plugin but if it’s being set in the functions file it blows away my settings. Any solution to this?
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] top line extractionYou might try something like this:
Forum: Plugins
In reply to: [Reliable Twitter] Reliable Twitter not loading post-upgradeThat’s weird because it should be the Google feed and not related to Twitter at all. That said, weird stuff happens sometimes. Glad it’s up and running and I hope you like the new features in 2.0.
Forum: Plugins
In reply to: get_posts ignoring posts_per_pageIt appears that this was corrected in WP 3.1, though plugin developers shouldn’t use it for a while, to preserve backwards compatibility.
Forum: Plugins
In reply to: [Reliable Twitter] [Plugin: Reliable Twitter] deprecatedThis has been resolved in the newly-released version 2.0 Thanks!
Forum: Plugins
In reply to: add/delete/update_option() not working in activation hook?Did you ever find the answer to your problem? I’m having the same issue.
Forum: Hacks
In reply to: Adding custom page template via a pluginI’ve gotten this to work.
Forum: Plugins
In reply to: How can I use the tinyMCE editor for fields in my Custom Post Type?Thanks @wpsites. This is super-easy and really made things easier. I appreciate it.
Forum: Plugins
In reply to: [Plugin: jQuery Colorbox] Feature RequestThanks Arne, that would be great. I can’t figure out a way to put that class in the image itself… only have access to the a tag through NextGen. Adding the colorbox-off class to the a selector would be a great way to go.
Thanks for the consideration!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Google doesnt index imagesI’ve also had the same problem. Google indexes my site fine but doesn’t seem to find any image galleries.