Search Results for 'buddypress'
-
AuthorSearch Results
-
October 31, 2011 at 5:47 pm #123484
neononcon
MemberThanks. Wasn’t BP basically an offshoot from P2? Would there be a way to just incorporate the P2 method of displaying the tag activity? Sure, tags sort of take away from the “status update” concept that we know of from other large social networking sites, but it would really take Buddypress to another level by having that feature available.
October 31, 2011 at 5:21 pm #123482In reply to: [Resolved] Register page as my home page
drmikelbrown
Member@David thanks this worked perfectly. I was trying a bunch of different redirects but I keep getting caught in a redirect loop. Thanks this helped a whole lot.
October 31, 2011 at 4:39 pm #123478@mercime
Participant== I did a complete uninstall per the directions, ==
Directions from what source?== How do you trigger buddypress to recreate the tables and pages within wordpress? ==
https://codex.buddypress.org/buddypress-site-administration/deleting-buddypress/
Then install BuddyPress 1.5.1 and go through Installation WizardOctober 31, 2011 at 4:26 pm #123475modemlooper
ModeratorSearch on here and google “buddypress activity stream meta”
It’d possible but you’d need to create your own method to display activity from a certain tag
October 31, 2011 at 3:57 pm #123473In reply to: Configuring W3 Total Cache with BuddyPress
henrybcn
MemberI also love some advice on cache plugins for buddypress, in particular how to configure W3TC. Strange that the W3TC plugin creator does not help out here. (Or have I missed that?)
October 31, 2011 at 2:33 pm #123470In reply to: [Resolved] Register page as my home page
David Carson
ParticipantThere are different ways to do this.
Do you have a bp-custom.php file in your plugins directory?
https://codex.buddypress.org/extending-buddypress/bp-custom-php/If so, try adding this to it:
`// Redirect logged out users viewing homepage to register page.
function custom_redirect_home_to_register() {
global $bp;// If user is not logged in and viewing front page
if (!is_user_logged_in() && bp_is_front_page() ) {
// Redirect to registration page. Change /register to your register page slug
bp_core_redirect( get_option(‘home’) . ‘/register’ );
}
}add_action( ‘wp’, ‘custom_redirect_home_to_register’, 3 );`
If not, create the file and include an opening php tag before adding that code. This uses basic conditionals and can be customized however you’d like.
https://codex.buddypress.org/developer-docs/conditional-template-tags/
October 31, 2011 at 2:00 pm #123468wiking
Memberfor sure – but the bug is open for 15 months ( https://buddypress.trac.wordpress.org/ticket/2576 ) and wasn’t fixed – and therefore i thought if you tidy the code up you could add it to core as a patch.
October 31, 2011 at 12:29 am #123450In reply to: How to add registration form to front page
Anonymous User
InactiveDo any of you know how to replace buddypress’s registration form with Gravity Forms?
October 30, 2011 at 8:41 pm #123397In reply to: User can’t post eachothers walls
flutence
MemberI can’t believe it… it WAS a conflict, with the “Buddypress Jquery Activity Stream Widget”; I just deactivated it and all of a sudden I could comment on another user’s wall update
October 30, 2011 at 4:59 pm #123406In reply to: bp_groups_default_extension
TimCarey
ParticipantBefore buddy press 1.5 I was using the following function with success.
`function tac_redirect_to_frontpage() {
global $bp;$path = clean_url( $_SERVER );
$path = apply_filters( ‘bp_uri’, $path );
if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false )
bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
}
add_action( ‘wp’, ‘tac_redirect_to_frontpage’ );
`
I really don’t know exactly what it was doing, but With buddy press 1.5 it stopped working.`
function tac_redirect_to_frontpage() {
global $bp;$path = clean_url( $_SERVER );
$path = apply_filters( ‘bp_uri’, $path );
if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav[$bp->groups->current_group->slug] ) === false )
bp_core_redirect( $path . $bp->bp_options_nav[$bp->groups->current_group->slug] . ‘/’ );
}
add_action( ‘wp’, ‘tac_redirect_to_frontpage’,1 );
`
All this does is cause the browser to keep loading until it decides there is no page. I’d tried echoing the path variable up above in to the group header and it showed correctly I’d tried echoing the following and it showed nothing.`
$bp->bp_options_nav[$bp->groups->current_group->slug] )
`I could really use any help. @djpaul, or any one
October 30, 2011 at 4:58 pm #123405In reply to: BP 1.5 & bbpress 2 (site wide) slugs
unfettered
Member@darren I’ve done what you said here and got my site wide forums up. (http://unfettereddesigns.net/forums/), but when i click on an individual forum ( ie http://unfettereddesigns.net/forums/forum/dark-age/) I’m getting a blank page in which i can’t post any new info to. Any idea whats going on here?
October 30, 2011 at 3:24 pm #123403October 30, 2011 at 3:07 pm #123402David Carson
Participant`bp_is_register_page()`
https://codex.buddypress.org/developer-docs/conditional-template-tags/
October 30, 2011 at 3:04 pm #123401In reply to: Activity follow up pages not showing
RiccardoNL
MemberHi all,
I have had this trouble with the activity/reply function on BuddyPress 1.5.1 too (and this is how I found this forum).
I’m using the Arras Theme, but I guess it should work on any theme, since no theme files are being edited.Today, I have found out how to fix the 404-error on the reply-function, while commenting on an activity.
In the file /wp-content/plugins/buddypress/bp-activity/bp-activity-actions.php, there is an “!” missing on line 258.This is the original code:
if ( !is_user_logged_in() || ( bp_is_activity_component() ) || !bp_is_current_action( ‘reply’ ) )Change it to:
if ( !is_user_logged_in() || ( !bp_is_activity_component() ) || !bp_is_current_action( ‘reply’ ) )Et voila, it works. It did the trick for me
October 30, 2011 at 1:05 pm #123400CJ Kruger
ParticipantAs modemlooper said, buddypress.org is not a reflection of buddyress itself. If you want to test out the current/stable release – there is testbp.org specifically for that purpose.
October 30, 2011 at 11:30 am #123213In reply to: Forum Link Problem
ananda01
MemberI have the same problem. I’m using site wide forum and installed bbpres as mentioned in the the forum settings. Than I added one forum “general”…just to test
It seems to install fine and I can adress the forum from the admin with the view forum-link
http://www.arambol.in/forum/general/BUT forum doesn’t appear in the menu. I’m a buddypress newbie and tried now for several days…but no success. I have to mention that I disabled all other plugins and that I tried also with the default bp theme with the same result.
thx for assistance
Daniel
October 30, 2011 at 11:07 am #123212enderpal444
ParticipantWhen web development stops being polite…and starts getting real.
Good read guys.
October 30, 2011 at 6:53 am #121765modemlooper
ModeratorNo, BuddyPress works fine and will into the future and bug fixes are never ending. This site is developed live, hence it being broken. Don’t use this site as a reflection of the state of the software.
October 30, 2011 at 12:39 am #121661In reply to: Getting the BP post author avatar outside of loop.
enderpal444
Participant@DJPaul Ha ok I got it working. Just have one more question and that’s how do I display it larger than 50px without it distorting the image? It displays larger on the members profile without distorting but when I set the code below to “96” the image came out fuzzy.
if (strpos($template, '%POST_TITLE%') !== false) { $userid = $post->post_author; $post_title = get_avatar( $userid, 96); if ($max_post_title_chars > 0) { $post_title = snippet_text($post_title, $max_post_title_chars); } $value = str_replace("%POST_TITLE%", $post_title, $value); }October 30, 2011 at 12:39 am #121761In reply to: Getting the BP post author avatar outside of loop.
enderpal444
Participant@DJPaul Ha ok I got it working. Just have one more question and that’s how do I display it larger than 50px without it distorting the image? It displays larger on the members profile without distorting but when I set the code below to “96” the image came out fuzzy.
if (strpos($template, '%POST_TITLE%') !== false) { $userid = $post->post_author; $post_title = get_avatar( $userid, 96); if ($max_post_title_chars > 0) { $post_title = snippet_text($post_title, $max_post_title_chars); } $value = str_replace("%POST_TITLE%", $post_title, $value); }October 29, 2011 at 11:35 pm #121652@mercime
Participant@ossendryver https://codex.wordpress.org/Installing_WordPress#WAMP for your PC only
EDIT – if your WP is on webhost, contact webhost tech support to see why your WP is not working.October 29, 2011 at 11:35 pm #121752@mercime
Participant@ossendryver https://codex.wordpress.org/Installing_WordPress#WAMP for your PC only
EDIT – if your WP is on webhost, contact webhost tech support to see why your WP is not working.October 29, 2011 at 11:32 pm #121651In reply to: How to approach network wide menus with BuddyPress
@mercime
Participant@wpmuguru UMW site is cool and awesome. Thanks for sharing the link to the university and to Curtis’ blog on the site.
October 29, 2011 at 11:32 pm #121751In reply to: How to approach network wide menus with BuddyPress
@mercime
Participant@wpmuguru UMW site is cool and awesome. Thanks for sharing the link to the university and to Curtis’ blog on the site.
October 29, 2011 at 11:08 pm #121649djoep
MemberSorry, but I believe you have missed the point of the original post. Please read this entire post before responding. It’s a little long, but not that long.
Neither the original poster, nor I, had any complaints about the operation of installations we had made ourselves. What was being asked, was whether there should be concern due to the obvious problems on the buddypress website itself, not our own installations.
We, the user community, have no way of knowing, other than by asking, if the problems on this site are due to use of an old version of BuddyPress, use of an unreleased version of BuddyPress, use of a broken theme for BuddyPress, or perhaps even maybe they have nothing to do with BuddyPress at all. However, problems that show up on this site beg the question as to whether or not as yet unseen problems might show up on our installations. So, when we ask… “why do I get a white screen when I click on page 2 of the buddypress support forum” this should not be considered a criticism of BuddyPress or it’s developers… it’s merely a question.
We, the user community, would like to have some idea of what we’re getting into. I personally feel fairly comfortable with getting into the guts of most php applications, but I do not have the ability to get into the guts of the implementation of this site so there is no way for me to answer my own question.
For those that are responsible for implementation of the site, I still don’t see any reason whatsoever for offense just because someone points out a defect and asks regarding its cause. If the people responsible for the implementation of this site are too busy to look into it, fine. I can completely relate to that. If the site is built on an obsolete platform that is not worth troubleshooting, fine. I can completely relate to that as well. If the site is built on a platform that is in development and as yet incomplete or unstable, fine. I have no problem accepting that. What I do have difficulty with is being told that merely pointing out the defective behavior on this site, and being told that it is offensive to ask about it.
So have I made myself understood that I am not complaining about BuddyPress software, I am just asking what it is that is causing the buddypress.org website to behave in obviously undesirable and perhaps unexpected ways.
joe -
AuthorSearch Results