Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 43,476 through 43,500 (of 68,947 total)
  • Author
    Search Results
  • #101744
    Hugo Ashmore
    Participant

    No it’s not removal of lines as this is a function call.

    Allways give the codex a quick check to see if there’s any help there, you want this page:
    https://codex.buddypress.org/theme-development/modifying-the-buddypress-admin-bar/

    And you need to be using remove_action() filter

    There is a list of the add_action links on the page.

    Add the remove_action to your functions.php in child theme.

    Hugo Ashmore
    Participant

    This is something that is expressed from time to time i.e “More friendly interface” but it’s one of those things that slightly puzzles me again this is WP and the method of running it is the dashboard and that shouldn’t be a barrier for people really. There are however a few front end posting plugins which essentially drag the dashboard create post page/function to the frontend of a site that may make things a little simpler for users, but not sure on user blogs whether it’s easy or possible to then further abstract or hide the dashboard.

    #101740
    Virtuali
    Participant

    1st. This issue is not being caused by buddypress.

    There is something wrong with the <div you added, did you close the <div?

    did you recently change anything to the site layout, or install any plugins?

    #101739

    In reply to: BP Sections?

    Jam
    Member

    @mercime, would this plugin still work in BP, as BP is not multisite capable?

    Thanks

    #101737

    In reply to: BP Sections?

    @mercime
    Participant
    #101731
    justbishop
    Member

    @ddgdaily, I’m not seeing a “most favorited” list anywhere on your site? Is all of that code you pastebinned just the stuff to add the *ability* to favorite a post, because I already have that up and running. I’m just looking for a way to keep a top 5 (or whatever number) list of the posts that have been favorited the most times, and display that in my main site’s sidebar :)

    #101730

    In reply to: Support Spam

    skippybosco
    Member

    @JJJ: First off, thanks.

    Secondly, is the thought to hook into Akismet for the various actions within Buddypress? Wonder if this is served best by making the existing Akismet plugin Buddypress aware since the same effort needs to happen with standalone bbPress, etc.

    life2000
    Participant

    @hnia: Yes. You are absolutely right. The dashboard tab does not show up for regular subscribers. Sorry, I kept getting it because I was signed in as super admin. Problem solved :)

    The only remaining issue is that when I start letting my users sign up for their site/blog, they will have access to wordpress dashboard. I really would like to offer them a more user friendly interface like buddypress’s front end; color wise, etc.. But that’s a whole other issue. For now, I am happy to have this solved :)

    Thanks so much hnia and everyone else :)
    Vida

    Mouchoirs
    Member

    I like the widget you recommended above. I’m wondering if you know anything about pagelines plaform. I was thinking, if it offers full buddypress functionality, I could utilize the registration widget along with the “hide primary bar” feature in pagelines. This would make the widget available on only the pages I desire.

    If I did this, do you know if there’s a way I can make every page of buddypress invisible to non-logged-in users? I could then simply have the registration and log in page visible to non-users. I’m currently using a privacy widget to hide all pages except login from non-logged-in users. However, I don’t see any way to select specific buddypress pages to choose to make private.

    Thanks again so much for your time.

    José M. Villar
    Participant
    #101726

    In reply to: BP Sections?

    Nahum
    Participant

    @PiManIII i’ve not seen a universal login plugin or hack like this. I’m waiting on something myself where it’s like gravatar, one universal member login system for all my different bp sites, er what you are calling sections essentially. So anyone registering on any site, can go to another site and be able to login and not have to register again.

    #101725

    In reply to: Rate members

    Nahum
    Participant

    @ultimateuser i guess the guy who invented bp-group-reviews plugin would be a start. :)

    #101724
    Nahum
    Participant

    Quick Note: Filter doesn’t work on BP Followers when you make selection in the activity from the Following tab.

    So…that’s that. If I can cut into a hook and only return Blog Posts, Blog Comments…that would work.

    Nahum
    Participant

    @luvs123 did you get it to work?

    Mouchoirs
    Member

    Thanks to both of your for your prompt replies! I’m going to work with the widget and idea you suggested above. I hope you won’t mind if I post back here with my results and further feedback.

    #101721
    Nahum
    Participant

    `function bp_follow_add_listing_follow_button_blogs() {
    global $bp, $members_template;

    if ( $members_template->member->id == $bp->loggedin_user->id || !is_user_logged_in() )
    return false;

    if ( !$members_template->member->is_following ) { ?>

    <a href="member->id,

    $members_template->member->user_nicename, $members_template->member->user_login ) . $bp->follow->followers->slug . ‘/start/’,

    ‘start_following’ ) ?>” class=”follow” id=”follow-member->id ?>”><?php printf( __( 'Follow %s' ),

    bp_get_user_firstname( $members_template->member->fullname ) ) ?>

    <?php
    } else { ?>

    <a href="member->id,

    $members_template->member->user_nicename, $members_template->member->user_login ) . $bp->follow->followers->slug . ‘/stop/’,

    ‘stop_following’ ) ?>” class=”unfollow” id=”unfollow-member->id ?>”><?php printf( __( 'Stop Following %s'

    ), bp_get_user_firstname( $members_template->member->fullname ) ) ?>

    <?php
    }
    }
    add_action( ‘bp_directory_blogs_actions’, ‘bp_follow_add_listing_follow_button_blogs’ );
    add_action( ‘bp_followers_list_item_actions’, ‘bp_follow_add_listing_follow_button_blogs’ );
    add_action( ‘bp_following_list_item_actions’, ‘bp_follow_add_listing_follow_button_blogs’ );

    `
    I tried this but it didn’t work now I’m trying to figure out how to fix the Following count. It stores the follow action as part of your followers count. but that’s not a problem.

    How would I weave in the Member Follow button into the Blogs Directory Listing.

    Beyond that, how can I take that Follow button and insert it into the sub blogs sidebar.

    #101715
    Hugo Ashmore
    Participant

    Try, as @hnla said before *she* :)

    #101713
    Virtuali
    Participant
    Paul Wong-Gibbs
    Keymaster

    Thanks for the heads-up, @gunju2221 :)

    If by “BuddyPress profile”, you mean the fields and groups you have configured in the xprofile settings screen, then yes it’s certainly technically possible because site admins can create new user accounts without having to complete BuddyPress profiles. I’m not sure how to practically do this, however. Would need to try and find out.

    Try to see if there’s a user registration widget (i.e. https://wordpress.org/extend/plugins/registration-form-widget/ — not tested) and see if it works and does what you want it to do.

    (To clarify, there’s no difference between a “WordPress user” and a “BuddyPress”, both are the same.)

    #101709
    murasaki
    Participant

    I don’t know about that, I think someone will pass FB up, not sure when, but they’ll get some competition that’ll have them shaking in their boots lol

    I hope its me :)

    Hey @Andrea_r lol, i remember when you helped me with my first line of BP code….I’ve gotten better, thank you :)

    #101706
    Virtuali
    Participant

    Your code did not appear.

    Try, as @hnla said before she deleted her post to revert to the default theme and see if it appears.

    If you don’t want users to see your fixing on your site, install “maintenance mode” plugin

    #101703
    Virtuali
    Participant

    Well it should be there. I wonder why it is not working?

    Go into your theme, if you have the buddypress extension pack installed, or you have created your child theme, go into your theme folder, (wp-content/themes/yourtheme) and then go into the folder named “groups.” Inside there should be a file called “Index.php”

    Now check to see if the following code is listed anywhere in the file, “control or command +f” will search for the term.

    `  <a class="button" href="”>`

    If for any reason that it is not in the file, put the code above directly after this code in the file:

    `

    `

    Virtuali
    Participant

    This is an excellent question that I can’t answer, I’ll get the core developer @djpaul

    #101696
    modemlooper
    Moderator

    Compared to what facebook? Nobody will ever reach what facebook has achieved. And really who would want to? I have a few close friends on FB but could careless what the other users are doing. BuddyPress is more to create groups of interest. That’s it’s power over FB. Also you can control the experience, FB is generic.

    #101693
    Virtuali
    Participant

    you need to give more information about your issue. “there is no option for this”

    What do you mean???

    Also, please provide some, or all of the questions from This post

Viewing 25 results - 43,476 through 43,500 (of 68,947 total)
Skip to toolbar