Dewey Bushaw
Forum Replies Created
-
Forum: Hacks
In reply to: Image Resizing Function – An Alternative to Timthumb@matthewruddy – Thanks for the great code! I have forked it and sent you a pull request. Just some small changes to reduce load on the DB.
Forum: Plugins
In reply to: [BuddyPress Album] image_resize deprecatedScreenshot showing Error / bp_album Find all image_resize / Readme showing Version
https://dl.dropbox.com/u/2743829/bp_album.png
Please note Deprecated notices only show up when Debug mode is turned on. Changes are your beta tester sites are running their sites with Debug mode off.
We are also seeing the following Notices upon activation of plugin on all admin pages and all frontend pages except for the pages that BuddyPress provides the user details (aka the profile)
Notice: Undefined property: stdClass::$id in /Sites/trainelite/wp-content/plugins/bp-album/includes/bpa.core.php on line 303
Notice: Undefined property: stdClass::$id in /trainelite/wp-content/plugins/bp-album/includes/bpa.core.php on line 304
I am looking into how do to this as well. Will post back later if I figure it out.
Forum: Plugins
In reply to: [Edit Flow] error noticeAwesome! Keep up the good work. My client loves using your plugin.
Forum: Plugins
In reply to: [Edit Flow] error noticeI had a similar issue when viewing other taxonomies. The would output an error when this plugin is activated. See screenshots below to see the before and after (where I fixed the code)
https://www.dropbox.com/s/gfztwdkobqrd8ab/edit-flow-cs-bug-after.png
https://www.dropbox.com/s/5sxudlromwwmw7p/edit-flow-cs-bug-before.pngNo I didn’t but you can get the code from the gist link I put in there.
As for a way to store lists as a single custom post meta you would have to write custom code to get all list items before they are saved to the database and serialize them and store that as a custom post meta, then unserialize it when you retrieve it.
Thought not sure why you would need to do this as the way lists are saved now work fine in terms of storing and pulling.
@plugin author: To fix please change line 39 in Actions.class.php from:
$this->addJS();
to
add_action( 'wp_enqueue_scripts', array( &$this, 'addJS' ) );
Forum: Fixing WordPress
In reply to: register_sidebar before_widget and after_widget output is wrongI actually figured out that I was passing the before and after wrong.
Forum: Fixing WordPress
In reply to: register_sidebar before_widget and after_widget output is wrongI am having this exact same issue. It is very odd. Anyone else out there have any ideas?
I forgot I did see this before and even commented on this other thread:
I managed to fix this error by adding in the line In /web/wp-content/plugins/members/includes/functions.php
if(!is_object($members)) $members = new stdClass; just above if ( !isset( $members->settings ) )
Bump, just got this too. Weird because I have used this plugin numerous times, this version too…
Seems to only kick out this issue in PHP 5.4.4
Wanted to hop on the update bandwagon as I have extended this plugin for a client to allow for updating gravity forms field type “list”.
I was working off version 0.5.2 so I have included a diff to show what I did. If you need me to integrate these with v0.5.3 let me know. I should have some time later this week.
@southcast – I think the issue here is you are running a WooThemes plugin/theme that may have last say in how the images are printed. I would suggest making a page and assigning a featured image to it and adding an image into the body and checking those images to see if the plugin works. They should not have a woo-image class.
Forum: Plugins
In reply to: [Custom Taxonomy Order] [Plugin: Custom Taxonomy Order] array errorFix: https://gist.github.com/2707529
Wrapped the $_GET[‘page’] with an isset on lines 75 and 85.