Search Results for 'buddypress'
-
AuthorSearch Results
-
August 3, 2011 at 4:22 pm #117534
igeekout
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?
August 3, 2011 at 7:19 am #117477@mercime
Participant== i have the problem with the non-buddypress theme ==
If you want to use your WP theme with BP, you need to install the BP Template Pack plugin and go through the compatibility process.
https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/August 3, 2011 at 7:16 am #117476In reply to: Displaying New Message Notifications in sidebar-me
@mercime
ParticipantNot exactly in sidebar but something you’d probably like http://buddydev.com/uncategorized/introducing-buddypress-live-notification-plugin-a-facebook-like-notification-plugin-for-buddypress/
August 3, 2011 at 7:10 am #117475In reply to: can’t find my last posts
@mercime
ParticipantHi @anointed. If you were mentioned in that post https://buddypress.org/community/members/anointed/activity/mentions/
August 3, 2011 at 5:05 am #117464tronminecraft
MemberThanks for the quick response!
I will use this method!
August 3, 2011 at 4:38 am #117463In reply to: From Roadmap, basic privacy
enderandrew
Member@linusf I tried that plugin, and while it installs cleanly in 1.5, it doesn’t seem to work. I don’t see any areas where I can set privacy options on my profile fields.
August 3, 2011 at 4:31 am #117461In reply to: BuddyPress Activity Stream Bump to Top
jwack
ParticipantHere is the link to the plugin in question
https://buddypress.org/community/groups/buddypress-activity-stream-bump-to-top/August 3, 2011 at 4:05 am #117458In reply to: No one is able to ‘reply’ since the last upgrade
Pisanojm
ParticipantWhen I upgraded to 1.2.9, I experienced this same issue… I just discovered it from my upgrade to 1.5 bleeding… it’s appears to be a theme issue for sure…. I can disable all of my plugins/bp-custom.php and I still have this issue with my current theme…. when I switch to the default theme, the problem disappears…
So to recap… for me, not a plugin or custom.php issue, but a theme issue AND I am experiencing this in current stable of BuddyPress… I’ve asked @sbrajesh to look at this as I’m using his themes….
Just some more info to this.
August 3, 2011 at 1:20 am #117454d34thst4lker
Memberi set the permalink to custom “/” and i have the problem with the non-buddypress theme and not with the buddypress theme
August 3, 2011 at 1:04 am #117452In reply to: BP Privacy
enderandrew
MemberJust use Buddypress Groups, and don’t put any content on the site outside of the private groups.
-
AuthorSearch Results