Search Results for 'buddypress'
-
AuthorSearch Results
-
June 21, 2011 at 11:29 pm #114991
In reply to: Buddypress & bbpress
nabiscuit
MemberThanks for getting back to me!
Yeah… That’s not what I’m looking for at all.
Is there anyway to get the bbpress script to work with the Buddypress plugin? I really think that the stripped down bbpress that’s included in Buddypress kinda blows and needs a lot more features before I could actually use it.
June 21, 2011 at 9:50 pm #114984In reply to: Theming User Profile / blog post page.
elliotrobert
MemberI’m sorry for not being specific. The user profile page is missing the main main content col which contains the written content on the main page, as well as the side bars and footer so it’s getting the header from the theme but not taking any thing else except background image from the style sheet.
`User profile is yourtheme/members/single`
I assume you mean buddypress theme? I’ve played around in the single folder going through each file, deleting it’s contents , reloading the profile page to see any effect before restoring the file’s contents but, have been unable to find any pinchlin file to theme the profile page with. Am I missing some thing?My theme is heavily based upon twentyten which doesn’t use such a file to my knowledge. Is the post file some thing I could create my self? If so where, in my wp theme folder?
Thank you for your time Virtuali very, very much.
June 21, 2011 at 9:38 pm #114983In reply to: Buddypress & bbpress
r-a-y
KeymasterThat codex page refers to the standalone bbPress script, and not the bbPress plugin.
Yeah, I know it’s a little bit confusing!Right now, there is no integration between BuddyPress and the bbPress plugin, however you can still use BuddyPress group forums and the bbPress plugin separately.
I would recommend changing your bbPress plugin slug to something else.
Login to the WP admin dashboard and navigate to “Settings > Forums”.
Next, change “Forum Base” to something other forums like “discuss”. This should hopefully fix your issue.
bbPress plugin forums will be located at /discuss. BuddyPress group forums will be located at /group-forums/ (make sure you also go through the BP forum setup in the WP dashboard under “BuddyPress > Forum Setup”).
June 21, 2011 at 9:27 pm #114981In reply to: Sending attachments with Private messages
r-a-y
KeymasterIt’s possible, but the plugin would have to create its own tables to store the data. The Group Documents plugin that Dennis mentioned does something similar codewise and can be used as a jumping off point.
It would be better if BP had a dedicated meta table for PMs like the activity component. Then you could easily add this time of information without creating a separate table. I created a ticket here about this:
https://buddypress.trac.wordpress.org/ticket/3083June 21, 2011 at 9:08 pm #114975In reply to: Send private message autofill unpredictable
Stigmartyr
MemberHello all – I ran into this issue as well, and tried using the code fix in my wp-config.php file but it’s not working. Also I cannot find bp-custom.php anywhere in /plugins/buddypress – was it moved or renamed? Do I still need to add it there?
However, even with the wp-config.php custom setting in place I cannot even auto-fill messages to test users without dots in their names. Oddly it will autofill the admin’s nickname but that’s it..
June 21, 2011 at 8:56 pm #114973In reply to: Improving Performance (How do you Cache Buddypress)?
Austin Nichols
Member@gregfielding W3TC does not work with Buddypress (other than maybe very limited CDN). I wish people would stop saying it does, especially the developers. BP.org should also remove it from their recommendations for speeding up BP.
June 21, 2011 at 8:23 pm #114972In reply to: Improving Performance (How do you Cache Buddypress)?
Austin Nichols
MemberNo one has a guide?
June 21, 2011 at 1:56 pm #114964Andrea Rennick
ParticipantWhen mu was merged, it was renamed to a network. Sometimes it’s referred to as multisite, as that is what the functions are called. But the admin area is “network”.
So your “network” is not the same as what we mean.
June 21, 2011 at 3:10 am #114955sladkoe6ka
Participantthis is very useful feature. can anyone update the code for current buddypress? there is no bp-status folder anymore
June 21, 2011 at 2:17 am #114952In reply to: BP Global Redirect Question
gregfielding
ParticipantI had taken the short snip of code from this plugin https://buddypress.org/community/groups/bp-profile-as-homepage/ and I put this in my functions.php:
`function bp_profile_homepage()
{
global $bp;
if(is_user_logged_in() && bp_is_front_page())
{
wp_redirect( $bp->root_domain . ‘/’ . $bp->activity->slug );
}
}
function logout_redirection()
{
global $bp;
$redirect = $bp->root_domain;
wp_logout_url( $redirect );
}
add_action(‘wp’,’bp_profile_homepage’);
add_action(‘wp_logout’,’logout_redirection’);`That redirects users to site.com/activity
June 21, 2011 at 1:53 am #114951In reply to: Custom Profile (xprofile) data not being saved
junger
ParticipantJust found a separate thread dealing with this issue, and it certainly seems to be BP related.
If anyone else is having this issue, adjust code on your register.php file (around line 150) to
`
<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="” />
`
See the whole thread here:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-show-multiple-profile-field-groups-on-register-php/#post-102048June 21, 2011 at 1:51 am #114950junger
Participant@candy2012 just to clarify, the order of the fields should be
`
<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="” />
`
It works great!
June 20, 2011 at 11:52 pm #114948In reply to: BP Global Redirect Question
Virtuali
ParticipantI would say gregfielding wrote a function regarding the redirect, or edited an existing function.
This will give you some hints: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/redirect-to-activity-after-login/
June 20, 2011 at 11:50 pm #114947In reply to: Being re-directed to your Profile Page after login
laconic
Member@Famous I wasn’t trying to squelch your questioning the way it works but this is a How-To and Troubleshooting thread. So, I thought I would nudge us back to the question at hand. Glad you got things working the way you want. I, too, redirect for the same reason.
Here is a site with 3,000+ members: http://www.h-mag.com/.
June 20, 2011 at 8:16 pm #114936In reply to: Custom Profile (xprofile) data not being saved
junger
Participant@boonebgorges Any thoughts here? Could a recent BP or WP update have knocked out running multiple profile reg loops?
June 20, 2011 at 7:17 pm #114932@mercime
ParticipantSomething like this? http://buddydev.com/plugins/blog-categories-for-groups/
More info hereJune 20, 2011 at 7:11 pm #114931In reply to: Where is this option ?
@mercime
ParticipantJune 20, 2011 at 7:09 pm #114930In reply to: BP Global Redirect Question
Prince Abiola Ogundipe
Participant@gregfielding, @Boone Gorges, for some of us who dont know, where do you put this code.
regards
June 20, 2011 at 5:20 pm #114918naved
Member@hnla @brajesh singh i found the bug…its not in the child theme its the ” w3 total cache plugin ” creating all the mess in my site as soon as i deactivate it alll stuff goes normal & fine plz every one bring this into the plugin authors consideration …now
and also wp block admin this plugin is activated after deactivating w3 cache plugin my users are directed to home page bt in this plugins line no 21 i had specified to redirect to about page ….and also when some 1 smartly typed or try to modify the url to get acces to wp-admin area this plugin should redirect that person to ” about “
page bt instead it shows an error saying u do not have sufficient to access this page !if u guyz have any hacks plz tell me with details
thnx in advance
also grt thnx to @hnla & @brajesh for trying to solve my problem good work guyz…..this help means a lot to me !June 20, 2011 at 4:39 pm #114913In reply to: Letting the user upload a custom background?
June 20, 2011 at 4:38 pm #114912In reply to: Disable /wp-admin/ for "normal" users
naved
Member@boone gorges sorry bt when i put the my url replacing ‘siteurl’ it gives me http error i was practising on localhost rather than on main machine (server)
and when i delete that file the site again start runningJune 20, 2011 at 4:32 pm #114910BlueInkAlchemist
MemberThe ‘maidenhosting’ url is a staging area. We copied their existing site (thedesignatedsketcher.com) to add BuddyPress and work out what turned out to be a plethora of kinks before pushing the new changes live.
June 20, 2011 at 4:05 pm #114909Brajesh Singh
Participant@blueinkalchemist
There seems something strange with the urls though.
It works
http://designatedsketcher.maidenhosting.com/category/contestas well as this one
https://thedesignatedsketcher.com/category/contestHow do you manage to do that. That might have something to do with the conflict. hopefully, It will help further to understand the issue.
June 20, 2011 at 3:47 pm #114905BlueInkAlchemist
Member@boonebgorges: That will work, but how about redirecting after registration, i.e. filling out the WP sign-up form? Of course this might have to deal with the sign-up form itself which isn’t necessarily a BP issue…
June 20, 2011 at 3:38 pm #114903Boone Gorges
KeymasterIt’s pretty easy to redirect users after login. Something like http://buddydev.com/buddypress/buddypress-trick-redirect-users-to-their-profile-on-login/ will work.
If you only want to do it the *first* time a user logs in, or only if the user has not filled out the profile, it’s trickier. Before returning `bp_core_get_user_domain( $user->ID )`, you’d want to check against some piece of data, such as `get_user_meta( $user->ID, ‘last_activity’, true )` (which will tell you the last time the user logged in, which I believe will return false if it’s a new user).
-
AuthorSearch Results
