Search Results for 'buddypress'
-
AuthorSearch Results
-
August 3, 2011 at 6:08 pm #117543
Sarah Minx
MemberThis issue has been verified, it is an issue with a BuddyPress plugin. Since this thread is not being checked back up on — I will post a new thread to alert the community of the issue.
BuddyPress Backwards Compatibility
Code that is needed to maintain backwards compatibility with previous versions of BuddyPress. Contains code for wire component, status updates, and functions that have been renamed or replaced.
Version 0.6 | By The BuddyPress Community
August 3, 2011 at 6:02 pm #117542In reply to: BuddyPress Dashboard Menu Missing
Tammie Lister
ModeratorReally being able to see your site through a link would probably help if that is possible. However, you mention localhost so I take it you’ve not got it on a server. Diagnosing as a result is going to be tricky.
I take it you’ve confirmed it is theme not plugin (other plugins to BuddyPress) by testing with the default BuddyPress theme? Your comments seem to be saying that?
Outside of that it really is going to be a case of using something like Firebug or WebKit Inspector to try and pin down what is going on where. My guess is either an unclosed div or some scripting but I really can’t know without a link. Perhaps someone else has some better ideas I’ve not used that theme so probably if they have they can give better insight.
August 3, 2011 at 5:57 pm #117541In reply to: Can’t upload avatar pics if extension in caps
Tammie Lister
ModeratorNot wanting to point to ‘go over there’ but really this being in the BP Album section would help you as under requests and feedback probably isn’t going to really get you the best response sadly.
August 3, 2011 at 5:51 pm #117540Tammie Lister
ModeratorYou’d probably be looking at profile fields. Here are some starting points:
http://bp-tricks.com/snippets/displaying-certain-profile-fields-on-your-members-profile-page/
August 3, 2011 at 5:48 pm #117539In reply to: timthumb vulnerability and BuddyPress
Paul Wong-Gibbs
KeymasterBuddyPress Default does not use timthumb.
August 3, 2011 at 5:46 pm #117538In reply to: timthumb vulnerability and BuddyPress
Tammie Lister
ModeratorTimthumb would be theme side not plugin side. The fix is fairly easy to any theme that does have it however most won’t and use featured images / built in WordPress functions that do similar things.
August 3, 2011 at 5:09 pm #117537enderandrew
MemberI’ll test this on 1.5 tonight. And if the page titles are messed up, I’ll try your function.
August 3, 2011 at 4:56 pm #117536igeekout
Member@enderandrew I mean 1.2.9
August 3, 2011 at 4:40 pm #117535enderandrew
Member@igeekout when you say current, do you mean 1.5 or 1.2.9?
For one of my sites, I’m going to need to use custom post types and I was planning on running with 1.5 beta if I could.
August 3, 2011 at 4:22 pm #117534igeekout
MemberAlso, if anyone wants to to do some solid reading on custom post types:
August 3, 2011 at 4:20 pm #117533igeekout
MemberI found issues with Custom Post Types and page titles with the current Buddypress. Page Titles wouldnt display correctly so I needed to create a custom function.
‘function bpcustom_get_page_title() {
global $bp, $post, $wp_query, $current_blog;if ( is_front_page() || ( is_home() && bp_is_page( ‘home’ ) ) ) {
$title = __( ‘Home’, ‘buddypress’ );} else if ( bp_is_blog_page() ) {
$pt_label = ‘Blog’;
if($post->post_type != ‘post’){
$pt = get_post_type_object($post->post_type);
$pt_label = $pt->labels->name;
}
if ( is_single() ) {
$title = __( $pt_label . ‘ | ‘ . $post->post_title, ‘buddypress’ );
} else if ( is_category() ) {
$title = __( $pt_label . ‘ | Categories | ‘ . ucwords( $wp_query->query_vars ), ‘buddypress’ );
} else if ( is_tag() ) {
$title = __( $pt_label . ‘ | Tags | ‘ . ucwords( $wp_query->query_vars ), ‘buddypress’ );
} else if ( is_page() ){
$title = $post->post_title;
} else
$title = __( $pt_label, ‘buddypress’ );} else if ( !empty( $bp->displayed_user->fullname ) ) {
$title = strip_tags( $bp->displayed_user->fullname . ‘ | ‘ . ucwords( $bp->current_component ) );} else if ( $bp->is_single_item ) {
$title = ucwords( $bp->current_component ) . ‘ | ‘ . $bp->bp_options_title . ‘ | ‘ . $bp->bp_options_nav[$bp->current_component][$bp->current_action];} else if ( $bp->is_directory ) {
if ( !$bp->current_component )
$title = sprintf( __( ‘%s’, ‘buddypress’ ), ucwords( BP_MEMBERS_SLUG ) );
else
$title = sprintf( __( ‘%s’, ‘buddypress’ ), ucwords( $bp->current_component ) );} else if ( bp_is_register_page() ) {
$title = __( ‘Create an Account’, ‘buddypress’ );} else if ( bp_is_activation_page() ) {
$title = __( ‘Activate your Account’, ‘buddypress’ );} else if ( bp_is_group_create() ) {
$title = __( ‘Create a Group’, ‘buddypress’ );} else if ( bp_is_create_blog() ) {
$title = __( ‘Create a Blog’, ‘buddypress’ );
}if ( defined( ‘BP_ENABLE_MULTIBLOG’ ) ) {
$blog_title = get_blog_option( $current_blog->blog_id, ‘blogname’ );
} else {
$blog_title = get_blog_option( BP_ROOT_BLOG, ‘blogname’ );
}return apply_filters( ‘bp_page_title’, $blog_title . ‘ | ‘ . esc_attr( $title ), esc_attr( $title ) );
}’August 3, 2011 at 4:05 pm #117532enderandrew
MemberSo as BP adds support for bbPress 2.0, they’re going to building a framework for supporting custom post types.
August 3, 2011 at 3:58 pm #117531In reply to: Buddypress 1.5 Bug Reporting!
James
Participantok, looks like it does not go behind the border, it simply does not go to the next line of the text box and get cut directly where it meets the border. As I understand it is call acomment-content, but I cannot fix it.
August 3, 2011 at 3:21 pm #117529Paul Wong-Gibbs
KeymasterbbPress is, yes.
August 3, 2011 at 3:05 pm #117527d34thst4lker
MemberI have all the plugins installed. ok I understand that having “/” as a custom permalink wont work. But it does work on the “buddypress” theme… And if that is not the right kind of permalink structure… Then can you give me an example of what YOU would use? Thank you
August 3, 2011 at 2:48 pm #117526enderandrew
MemberIsn’t BBPress 2.0 built on custom posts?
August 3, 2011 at 2:05 pm #117520In reply to: Suggested Posts Plugin (for Multisite Preferably)
Nahum
Participant@r-a-y I have something working but it’s real dirty looking… wondering if someone sees this and can offer a much neater way of going about this. maybe it will inspire someone to make an advanced plugin because this is a very interesting function of xprofile fields driving the content received by members i would think.
`
<?php global $bp;
if (bp_has_members(‘include=’.$bp->loggedin_user->id)):
while ( bp_members() ) : bp_the_member();
$suggestions = bp_get_member_profile_data( ‘field=Interests’ );
$nosuggestions = bp_get_profile_field_data((‘field=Interests’) == “”);
endwhile; endif; ?>Suggested Posts
- <a href="”>
`
I’d also like to add a way to recognize no suggestions and display a message that says no suggestions available.
Anyway this is for loggedin user and multisite feed but it can be done on a single blog just by removing the switch_to and restore_current.
August 3, 2011 at 1:37 pm #117517kingwt
Member@strictlybloggers ok gotcha. Thanks for clearing up.
I went to my main page and clicked on the profile page (linked as capefearmediasolutions.com/ctn/etcetc) that I have linked there under “columnists” and it didn’t work initially. Then I went in to the WP Dashboard page and went to the profile, which was linked as carolinatalknetwork.com/etcetc, and that worked. This leads me to believe that it has to do with me changing the domain name from capefearmediasolutions.com/ctn to carolinatalknetwork.com. How would I clear that up?
August 3, 2011 at 1:35 pm #117516jdpark7
MemberI have the same problem. as NrFive and Iwikia. I wonder if they solved the problem.
Thanks.
August 3, 2011 at 1:24 pm #117510Sea Jay
ParticipantI just found another thread on this topic and will continue there.
August 3, 2011 at 1:13 pm #117506In reply to: Email with password
strictlybloggers
MemberCan anyone please help? Here is a better explanation of the issues am facing as I may not have described it properly the first time:
When registering on homepage via buddypress, a user can set up their own password.The email to activate the link was received but then they can’t login afterwards and get a message ‘invalid username’. When I check admin, the user is shown as a subscriber.
When registering via bbpress on the forum a user is not allowed to set up a password and informed that they will receive email with the password but this never arrived. Any help is setting these up correctly will be appreciated.August 3, 2011 at 11:26 am #117499In reply to: Buddypress 1.5 Bug Reporting!
James
ParticipantWhen I switch between activity filters or tabs and then decide to reply on some update without reloading the page, text in the comments form goes way behind the right border.
Noticed in BP 1.2.9 and testbp.org.August 3, 2011 at 8:16 am #117484In reply to: Buddypress Followers PROBLEM
Zen Gonzaga
MemberFinally someone who want to help me.
I hope you could fix this.
Here’s the link:
*This link you can see followers & following page, because it have followers and the user follows other people
http://lab.thecolorcure.com/evo/writers/jennifer/followers
http://lab.thecolorcure.com/evo/writers/jennifer/followingBut for a member who doesn’t have followers or doesn’t follow anyone.. the pages don’t show at all
http://lab.thecolorcure.com/evo/writers/gab/followers
http://lab.thecolorcure.com/evo/writers/gab/followingIt goes back to homepage.. without any warning.
I’ve checked out the php file and i saw an else statement..
where it says: No members found.
I wonder why it doesn’t show..
Please help, cause i’m getting stuck here.August 3, 2011 at 7:49 am #117483In reply to: can’t find my last posts
Anointed
Participantwhat the hell….. i click the ‘edit’ my reply button above and get a page not found..>?
omg…. bp drives me absolutely nuts, this place is a wreck
anyhow, i was more thinking a link like:
https://buddypress.org/community/members/anointed/activity/should that not show me all of my activity on the network?
August 3, 2011 at 7:27 am #117478enderandrew
Member@d34thst4lker I suspect this is a permalink issue as aces said above. What urls are coming up for the BP pages currently?
-
AuthorSearch Results