Ash
Forum Replies Created
-
Any ETA on when the update will be ready? Currently to change a user’s role, I need to disable this plugin, change the role and then re-enable the plugin.
I can confirm I am experiencing the same issue and can see that you are passing an array into the apply_filters() method when the doc block shows that it expects a string.
/wp-includes/plugin.php
* @since 0.71 * * @global WP_Hook[] $wp_filter Stores all of the filters and actions. * @global string[] $wp_current_filter Stores the list of current filters with the current one last. * * @param string $hook_name The name of the filter hook. * @param mixed $value The value to filter. * @param mixed ...$args Additional parameters to pass to the callback functions. * @return mixed The filtered value after all hooked functions are applied to it. */ function apply_filters( $hook_name, $value ) {Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailAny update on this? Has a fixed version been released?
Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailAny update on this fix?
Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailHas there been any resolution on this problem?
Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailHi,
It hasn’t worked unfortunately and I think I am experiencing the same issue as per this post – http://wordpress.org/support/topic/thumbnail-problem-not-showing-anything.
The problem seems to be that your plugin generates thumbnails in /uploads/{current_year}/{current_month} folder instead of the folder where the image was originally uploaded.
Your generated thumbnail is usually in the format of {image}1.jpg etc.
Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailHas this been fixed in the latest version (2.7) so that we can have whatever size we require for the thumbnail?
Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailAny update on this?
Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailBump.
Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailThe default setting? From what I can see on line 59 and 193 you use the default thumbnail which is 150×150. In my site i need 212 x 150,
Forum: Plugins
In reply to: [WordPress Related Posts] custom thumbnailBump.
I have to keep overriding you thumbnailer.php (line 59 and 193) and putting in my own custom thumbnail defined in my functions.php.