AutomatedKid007
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Avatar Bubble] Slight issue with showing avatarsjamiel, i have the code placed in a php file (separate plugin) along with a few others codes, located in the wp-content/mu-plugins folder, where it is automatically activated for all sites. so far, so good, it works. do a quick search “how to create a simple wordpress plugin” via google and you’ll easily find what you need.
Forum: Plugins
In reply to: [BuddyPress Avatar Bubble] Slight issue with showing avatarsno problem, andy. i personally have to thank you since i was hitting my head against the wall trying to figure out a solution, and it was your script that was the perfect solution. so thanks!
by chance, do you know someone reasonable to hire to write a simple script to add a menu with child menus for the multisite admin toolbar? nothing complicated, pretty straight forward stuff, something similar to the wpmu custom admin bar, but with child menus as opposed to a simple drop down.
any feedback would be appreciated. plus, now that i know that you exist, i will definitely inquire with a possible wordpress project in the future.
thanks
Forum: Plugins
In reply to: [BuddyPress Avatar Bubble] Slight issue with showing avatarsjamiel,
here’s the code i’m currently using..// Custom filters to clean up issues in WP 3.0 with avatar paths. // Written by @theandystratton function sizeable_bp_core_avatar_folder_dir( $path ) { $items = explode('/', $path); $path = ABSPATH . 'wp-content/uploads/avatars/' . end($items); return $path; } add_filter('bp_core_avatar_folder_dir', 'sizeable_bp_core_avatar_folder_dir'); function sizeable_bp_core_avatar_folder_url( $url ) { $items = explode('/', $url); $url = 'https://' . $items[2] . '/wp-content/uploads/avatars/' . end($items); return $url; } add_filter('bp_core_avatar_folder_url', 'sizeable_bp_core_avatar_folder_url');
[Please post code or markup snippets between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
as noted, credit goes to theandystratton who took the time to write it. it just works for me. hopefully it will work for you as well.
Forum: Plugins
In reply to: [BuddyPress Avatar Bubble] Slight issue with showing avatarsThe missing avatars ended up being an issue where wp sub sites were looking for avatars in the wrong place, which had nothing to do with this plugin. If anyone has a multisite setup and can’t see avatars on subsites, just let me know.
I’ll create a new topic to request the ability to disable the plugin for the admin toolbar.
octoberblue,
thanks for the update. i’m assuming we need to wait for the author?