Search Results for 'wordpress'
-
Search Results
-
Anybody got this plugin to work? http://wordpress.org/extend/plugins/buddypress-conditional-profile-field/
Currently if you edit your profile under buddypress and change your display name in the “base” tab it will update and sync with the wordpress “_user” database properly. However, if I update a field under a different tab other than “base” that field gets updated to x_profile properly but it changes display name to the users email address. Under the wp-admin user setting: “display name publicly as” has email address as the top choice in the list. I’m second guessing myself but it looks like display name is just cleared and is reverting to default whenever I make a change to a different tab in buddypress profile. The field in question is a drop down box called “Skin name” so I don’t really see it conflicting,
Any guidance or help is appreciated.
Topic: Register page not working
Once a user enters all the fields and click “Complete Sign up” it just comes back to the same page with no error message. Register in BP-Default Theme works. I deactivated all plugins except Buddypress, BuddyPress Template Pack.
I use WordPress 3.4.1
BuddyPress 1.6.1Hi
I didnt find anything by using Google so I thought starting a new topic on here could help…
I am new to this and would like to have several news categories (e.g. sports, economy, travelling) on my BuddyPress. It should show news from every category on index.php but on the activity stream it should only show news from categories a user is suscriped to (when I am not subscribed to sports news I see them on index.php but not in my activity stream).
How do I realize this best? By using an own blog for each category or is it possible to realize it using the WordPress article system? Is there any plugin i can use?
I have WordPress, Buddypress, and BBPress up and running on my local machine server using XAMPP as the server platform. When I attempt to create a “new user” account for my “under construction” social website using the default Buddypress template, while I get a message that the account was successfully created, I also get a message that says “Warning:Invalid argument supplied foreach()
c:/xampp/htdocs/wp-content/plugins/user-registration-aide/user-registration-aid.php on line 172″The “click here to activate account” emails are not making it to my inbox.
would appreciate any help here.
thanks – TdanO
Hi, I’m trying to allow users to use BBcode when posting in group forums.
Currently from what I’ve tested users can use Bold/italic/attach image with HTML codes. I found this plugin which did what I mentioned, but unfortunately it’s outdated (http://etivite.com/wordpress-plugins/buddypress-group-forum-extras/)
Do you guys know if there’s any similar plugin here? I tried to search all the recently updated plugins for 1.6 in this site’s plugin directory but could not find one with a similar feature..
If there is no plugin, would it be possible to create my own shortcodes using filters? I would be really grateful if someone can give me a clue and (possibly) an example. Thank you

Hello, let me describe my problem…
I created custom post type and one of meta fields will be list of buddypress members with chekboxes next ot them. Everything works great when I go to “Add new”, but when using Edit I always get info that no members were found.
<?php /** * Register post type */ add_action('init', 'create_project_post_type'); function create_project_post_type() { register_post_type( 'project', array( 'labels' => array( 'name' => __('Projects'), 'singular_name' => __('Project'), 'add_new' => __('Add New', 'lw_project'), 'add_new_item' => __('Add New Project'), 'edit_item' => __('Edit Project'), 'new_item' => __('New Project'), 'all_items' => __('All Projects'), 'view_item' => __('View Project'), 'search_items' => __('Search Projects'), 'not_found' => __('No projects found'), 'not_found_in_trash' => __('No projects found in Trash'), 'parent_item_colon' => '', ), 'public' => true, 'has_archive' => true, 'query_var' => 'project', 'rewrite' => array( 'slug' => 'projects', 'with_front' => false ), 'supports' => array( 'title', 'editor' ), 'taxonomies' => array( 'category' ) ) ); } /** * Display the metabox */ function project_details_metabox() { global $post; $website = get_post_meta($post->ID, 'website', true); if (!preg_match( "/http(s?)<img src="smileys/irritated.gif" width="" height="" alt=":" title=":" class="bbcode_smiley" />///", $website)) $website = 'http://'; ?> <label for="website">Website:</label> <input id="website" size="40" name="website" value="" /> <label>Associated contributors:</label> <?php $fullname = fullname(true, null, false); if($fullname == 'footnote' || $fullname == 'Guest' || $fullname == 'Joe' || $fullname == 'Jon') continue; ?> <input type="checkbox" name="cont_" value="yes" id, "cont_" . bp_get_member_user_id(), true) == "yes") { echo 'checked="checked"'; } ?>/> <?php } /** * Process the custom metabox fields */ function save_project_details($post_id) { global $post; if ($_POST) { update_post_meta($post->ID, 'website', $_POST); /*foreach($_POST as $key => $value) { echo "POST parameter '$key' has '$value'; }*/ } } // Add action hooks add_action('admin_init', 'add_project_details_metabox'); add_action('save_post', 'save_project_details'); /** * Add meta box */ function add_project_details_metabox() { add_meta_box('projct-details-metabox', __('Project details'), 'project_details_metabox', 'project', 'normal', 'high'); } /** * Get and return the values for the project details */ function get_project_details() { global $post; $website = get_post_meta($post->ID, 'website', true); return array($website); } ?>Now info about environment:
1. Which version of WordPress are you running? – 3.2.1
2. Did you install WordPress as a directory or subdomain install? – subdomain
3. If a directory install, is it in root or in a subdirectory? – root
4. Which version of BP are you running? – 1.5
5. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? – bbPress, BP Profile Search, BuddyPress Edit User Profiles,
6. Are you using the standard BuddyPress themes or customized themes? – customized
7. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? – 2.0
8. Is your server running Windows, or if Linux; Apache, nginx or something else? – LinuxIt is difficult trying to find your forum threads and posts here.
It would be good to add a feature so you can access them from your profile.
WordPress.org has such a feature.
I am grateful if you would consider & add such a feature to help improve BuddyPress support forums.
Thanks