Search Results for 'buddypress'
-
AuthorSearch Results
-
November 16, 2010 at 3:06 pm #98409November 16, 2010 at 3:00 pm #98408
In reply to: Can BuddyPress Function Like Ning.com
Hugo Ashmore
ParticipantI wouldn’t hold your breath for this functionality, there are a lot of issues to deal with and only a volunteer core dev team working away at all the tickets for 1.3. I think that what you seek is not a easy task and would require some dedicated coding over and above what time permits for the core team and those helping out patching and testing.
November 16, 2010 at 2:57 pm #98407In reply to: "Auto Group Join" plugin added
grezza
MemberHi, nice plugin, do you think it would be appropriate to use as a solution to the following:
I am using the “More fields” plugin to add some checkboxes to posts. These checkboxes will allow a post to be associated with genre of book.
I am also using buddypress. When a user registers I want to be able to give the user the option to choose which book genres they are most interested in, and then save it into their profile info. These genres obviously have to be the same as the genres which i am tagging my posts as (the custom field ive created in more fields).
Can anyone think of a way I can allow users to choose which genres (multiple checkboxes) they are interested in. I could of course create a profile field containing the book genres in the “profile field setup”, but then they wouldnt be the same as the checkboxes im using to “tag” posts with and therefore id be maintaining two sets of data which are in no way linked and would be useless for reporting purposes.
Thanks for any help, it would be much appreciated.
November 16, 2010 at 2:56 pm #98406In reply to: Buddypress on Multisite
A Weathers
Participantyes, i posted this in trouble shooting when i thought that it was actually possible to accomplish this with BP and WPMS…since then it’s become apparent that it’s not possible and thus my post yesterday in “Requests and Feedback”…my assumption is that request and feedback are used for the development scope of future builds and that this how to and trouble shooting are used for help related issues…if this is not the case, then my apologies…otherwise I would appreciate it if you unlock the requests and feedback post (unless this item is on the dev schedule already) so that others that want this feature would be able to comment as well
November 16, 2010 at 2:52 pm #98403In reply to: "Auto Group Join" plugin added
David Lewis
ParticipantHow to make it work with WordPress Single Blog:
Step 1
—-
Go into the plugin folder and open the bp-auto-group-join.php file. Line 67 should be:
`add_submenu_page( ‘wpmu-admin.php’, __(“Link Auto Join Groups”, ‘buddypress’), __(“Auto Join Groups”, ‘buddypress’), 1, __FILE__, “auto_group_join_plugin_options” );`change it to this:
`add_submenu_page( ‘options-general.php’, __(“Link Auto Join Groups”, ‘buddypress’), __(“Auto Join Groups”, ‘buddypress’), 1, __FILE__, “auto_group_join_plugin_options” );`That first argument just tells the action hook `add_submenu_page()` where your plugin menu item should go based on page slug. The options-general.php slug corresponds to the “Settings” menu. So you’ll get a link for the plugin settings under the Settings menu. I couldn’t figure out how to add the link to the BuddyPress menu since that menu works a little differently.
Step 2
—-
Go to line 147:
`add_action( ‘wpmu_new_user’, ‘update_auto_join_status’, 12, 2);`Add add this new line below it:
`add_action( ‘user_register’, ‘update_auto_join_status’, 12, 2);`I figured the wpmu_new_user action hook wouldn’t work with single WP. I was right. I tested with the additional user_register hook and it works. Joy
November 16, 2010 at 2:50 pm #98402In reply to: Can BuddyPress Function Like Ning.com
A Weathers
Participant@sammermpc please post the other links when you get a chance
November 16, 2010 at 1:54 pm #98398Nahum
ParticipantI’ve also setup my admin’s secondary sites with their own total cache individual activations with all settings except CDN(since I’m still trying to figure out how to do that). Doing it this way helps tremendously since I have the blog and other primary sections on secondary sites. I only have Buddypress on the main site, nothing else. I don’t have any caching for member blogs…as I haven’t figured the best way for that.
Only having BP on the main site has alleviated it of about 20 blog plugins and the other hacks for the blog. I think that has been best thing for it to avoid conflicts.
November 16, 2010 at 1:53 pm #98397Justin Frydman
ParticipantHey guys,
Regarding @nuprn1 post, bp_get_displayed_user_nav() is not displaying any tabs on this custom page.
Any ideas?
November 16, 2010 at 1:35 pm #98394Nahum
ParticipantPage Caching Basic, Database Caching Basic, Browser Caching.
I just figured out that Object Caching was messing up my Private Messages component. When logged in and bouncing from profile to profile and trying to PM a member sometimes the ?r=membername&wp_nonce=XXXX becomes frozen on a previous membername. Turning off the object cache fixed this so I don’t know what if anything could be doing inside the object cache advanced settings can be done?
I’ve gone ahead and removed Page Caching. Which only leaves me with Db Cache, Browser Cache and Minify(even though I haven’t set any .js or css at all) – I guess removing the page cache should resolve the activity update delay. I’ll turn off Db cache then I’ll only be using Browser Cache and Minify(somewhat)…hm…doesn’t sound like much anymore…hehe.
I also read that the switch_to_blog fix will be coming in the next release.
November 16, 2010 at 1:12 pm #98393Bowe
ParticipantWhat settings are you using? I’m using it on BP-Tricks but I’ve talked to Frederick (the plugin dev) on WordCamp and he basically told me that it’s a good idea to turn off page Caching and Database caching when you use BuddyPress and only use Object Caching, Minify and a CDN.
November 16, 2010 at 12:19 pm #98389In reply to: Custom Community posts in columns
Sven Lehnert
ParticipantHi @phyz, are you talking about the custom community theme? This functionality is not added yet.
November 16, 2010 at 10:13 am #98388grezza
MemberHi beraike22
Thanks for this, unfortunately it doesnt really solve the problem. What this will do is allow users to register to a group on signup.
I want to store metadata in a users profile taken from a pre-populated custom field. So that I can use the same custom field to tag posts and therefore establishing a link between users and posts. So if a user says they are interested in science fiction books, then in theory I could present a list of pages tagged with science fiction can be displayed, etc,.. the dispalying isnt the hard part, its creating the metadata which is consistant throughout posts and users.
Thanks for your help
November 16, 2010 at 9:53 am #98395In reply to: @mentions is confusing to members
November 16, 2010 at 9:04 am #98383gregsexymedia
MemberAnyone can help ?
In the bp-groups-externalblogs.php file I found the following code :
/* Record found blog posts in activity streams */
foreach ( (array) $items as $post_date => $post ) {
$activity_action = sprintf( __( ‘Nouvel article %s sur le site %s’, ‘bp-groups-externalblogs’ ), ‘‘ . attribute_escape( $post ) . ‘‘, ‘‘ . attribute_escape( $post ) . ‘‘, ‘‘ . attribute_escape( $group->name ) . ‘‘ );What I want is to open links form external blogs in a new window to I change with but It does not work
November 16, 2010 at 5:06 am #98377In reply to: [New Plugin]External Member Blogs
Benoit Hennegrave
ParticipantNovember 16, 2010 at 4:03 am #98374beraike22
MemberNot sure this will help but I just posted another way to get simular results here…
November 16, 2010 at 3:40 am #98372In reply to: Different sign up form to make different usertypes
beraike22
MemberNot sure this will help but I just posted another way to get simular results here…
November 16, 2010 at 3:26 am #98371In reply to: Different profiles for different user types
beraike22
MemberHi Everyone – I’m not sure if this is what you are looking for but this is what I did! And NO coding required! lol
Under Buddypress Componet Setup enable the Group Settings. Now go to your profile page and set up as many groups as you like. Then use the Buddy Press Registrations Groups the author page is this – http://hardlyneutral.com/wordpress-plugins/ this will have the groups show up on the registration page and they will be asked to select which group they are a FAN of.
If you want you can go to the Editor Page or your FTP or Cpanel for that Plugin and on this page: buddypress-registration-groups-1/includes/bp-registration-groups.php scroll down to you see where it says Fan of and check one or more areas of interest and chance it to whatever your website needs are.
I hope this helps.
Another great plugin is https://wordpress.org/extend/plugins/bp-member-filter/ When you put brackets [ ] around any word in your profile it makes it a link to all other members that have that word or phrase linked. So when you click on it all members with that link come up on a list.
Here is a example I use on my directions page for creating their profile.[Hair Stylist]
I am a [Hair Dresser] [Beauty Salon] owner I offer [Hair Cuts] [Perms]
[Hair Coloring] [Hair Highlighting] [Braiding] and other misc [Hair Care] services.
I am available Monday – Thursday for appointments only.
Again I hope this helps someone!
November 16, 2010 at 3:10 am #98369In reply to: admin-editable-only Profile Fields
Simon Arame
ParticipantI’ve encounter the same requirements for a profile field to be editable only by admin that is non-editable by suscribers.
Someone could eventually commit a small plugin that allows this sort of administrative tagging.Outside of buddypress perspective, I end up using wp_usermeta database table with a call to add_user_meta($user_id, $meta_key, $meta_value [, $unique] ) and when i need the info stored i use get_currentuserinfo()
references :
https://codex.wordpress.org/Function_Reference/add_user_meta
https://codex.wordpress.org/Function_Reference/get_currentuserinfoNovember 15, 2010 at 11:57 pm #98363In reply to: BuddyPress.org avatar upload restrictions?
Boone Gorges
KeymasterIt’s a problem with buddypress.org’s hosting situation. As @crashutah alludes to, buddypress.org shares user database with wordpress.org, which at the moment has pretty severe restrictions on the kinds of files that can be uploaded.
I’ve spoken with some of the staff at Automattic about the problem, and they’ve informed me that the general restrictions on uploads at wordpress.org will be lifted relatively soon. At that time, the avatar problem here will be fixed.
I can’t implement any other fixes on buddypress.org at the moment because of the fact that it’s running a WP 2.9.x installation, which must be upgraded before any more fixes go up. That upgrade process is going to be very complicated. I’m working on it.
In the meantime, I agree that it’s not a great first impression, but I encourage you to download the software and check it out.
November 15, 2010 at 11:06 pm #98360In reply to: Can BuddyPress Function Like Ning.com
sammermpc
MemberThis is now being discussed on at least three threads simultaneously. What’s confusing, is there seemed to be a moment, nearly a year ago — where it was going to be supported, and there even seemed to be a patch in the commit pipeline, I think.
November 15, 2010 at 8:24 pm #98350In reply to: FORUM FOR BUDDYPRESS using wp forum server?
seanmathes
MemberJeff- Thanks for the quick response. So I understand this is not possible currently with BBpress. However, on the kevjumba site they were able to accomplish what I would like to do. Any thoughts on how they were able to accomplish this? Thanks
Sean Mathes
November 15, 2010 at 8:23 pm #98349In reply to: Can BuddyPress Function Like Ning.com
A Weathers
ParticipantNovember 15, 2010 at 8:18 pm #98347In reply to: Can you multi-site BuddyPress?
A Weathers
ParticipantNovember 15, 2010 at 8:18 pm #98348In reply to: Can you multi-site BuddyPress?
A Weathers
Participant -
AuthorSearch Results
