Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,251 through 10,275 (of 69,015 total)
  • Author
    Search Results
  • #253514
    sharmavishal
    Participant

    check this but its a paid plugin

    Introducing BuddyPress Message Privacy Plugin

    #253513
    sharmavishal
    Participant

    google “buddypress portfolio” and you will find couple of options…

    #253505
    sharmavishal
    Participant

    my bad…i got confused..i was talking about another user blog plugin for buddypress…so u need to ask sbrajesh then…

    #253504
    sharmavishal
    Participant

    this has been asked many times on this forums….check the avatar related in the following article

    Getting Started

    #253495

    In reply to: Heavy resource load

    sharmavishal
    Participant

    install Query Monitor and Query Monitor bbPress & BuddyPress Conditionals this 2 plugins..figure out what is hogging your resources

    #253482
    jclark1234
    Participant

    I have spent 20 hours on tech support to figure this out.

    My host tech support at WP Engine went through and we tested every plugin and isolated that the capitalization appears only when buddypress plug in is activate.

    As I wrote in my original post “I am using wp 4.5.2 and the ispirit 1.1.2 and it replicates with the
    standard themes. It happens in safari, chrome and on iphone browser.”

    When I stay standard themes I mean the three that come with the wp install.

    We (wpengine and I) did redirects so that when the bp system generates the odd capitalization issue it redirects to the page with the caps.

    Go here and watch it redirect http://www.championcollegeservices.com/register to http://www.championcollegeservices.com/Register

    We did that redirect as a temporary solution so that people could at least sign on.

    The bug needs to be found and fixed.

    #253481
    Joost abrahams
    Participant

    I,m am very sorry but… You did make those changes somehow, wordpress and buddypress only outputs lowercase slugs.

    You are not typing internet adresses directly into your browser? Those links in your chase are generated by your theme? Did you try a different theme? Did you try to change the page slug?

    #253480
    jclark1234
    Participant

    Joost…do you see? We did not make those changes they just POODF! magically appeared thanks to buddypress. Nothing we did. It is a bug.

    #253473
    mlwilkerson
    Participant

    Well, what do you know: I just found a fix for my problem here:
    https://buddypress.trac.wordpress.org/ticket/4824#comment:4

    (I had seen that recent fix from @pareshradadiya previously, but hadn’t noticed that it was a recent update to a 3 year old thread. So, figuring it might actually be current and relevant, I gave it a try and it worked.)

    #253464
    pjbarry21
    Participant

    Did you find a solution to this? We’re running into this on a clean install. I’ve seen a post about possibly a clean install, but making sure to enable “anyone can register” before installing BuddyPress, but was hoping to find a solution that didn’t require that (and no idea if it would fix it).

    #253463
    name
    Participant

    A little more info – When I enable the setting in bbpress to allow buddypress forums, I still don’t see any forum options on the front end when creating a new group (the option is only on the backend for groups)

    I confirmed that the group creates a forum_id in database: value of a:1:{i:0;i:21901;}
    And that forum 21901 exists in wp_posts

    I also confirmed that the enable_forum value is set to 1 for the group ID in wp_bp_groups

    #253457
    manicexpression
    Participant

    Are there any ways to separate the Buddypress Private Messages system into pages? A long conversation can become daunting to scroll through. Also is it possible to set the newest messages to appear at the top?

    danbp
    Participant

    For readers curious about the answer, autoembed does not run on meta items unless the dev runs it manually themselves ( @r-a-y ).

    More details on BuddyPress Slack.

    #253449
    danbp
    Participant

    Hi Julia,

    it’s a bbPress bug, patched a while ago, but still in. Maybe a day it will be repaired definetly.

    For the moment, you can repair yourself. Open activity.php in wp-content/plugins/bbpress/includes/extend/buddypress/

    Replace following code block at line 277/279:

    $existing = bp_activity_get_specific( array( 'activity_ids' => $activity_id, 'show_hidden' => true, 'spam' => 'all', ) );
    if ( empty( $existing['total'] ) || ( 1 !== (int) $existing['total'] ) )
    return null;

    by

    $existing = new BP_Activity_Activity( $activity_id );
    if ( empty( $existing->component ) ) {
    return null;
    }

    Save and reload to to your site by FTP and you’re done.

    danbp
    Participant

    Private group options are

    1. Only users who request membership and are accepted can join the group.
    2. This group will be listed in the groups directory and in search results.
    3. Group content and activity will only be visible to members of the group.

    To modify option 3, you can code something.
    Read from here.

    #253443
    megin
    Participant

    Hi @danbp,

    Thank you for your reply.
    I wrote bp-custom.php inside the folder( wp-content/plugins/).

    I would link to add extra field inside the file( buddypress/bp-themes/bp-default/activity/post-form.php) and need to insert that value on the table (wp_bp_activity_meta). I wrote the function for this purpose. Unfortunately its not working. please help.

    function add_meta_to_activity( $content, $user_id, $activity_id ) {
    
        bp_activity_update_meta( $activity_id, 'option1', $_POST['option1'] );
    
    }
    add_action( 'bp_activity_posted_update', 'add_meta_to_activity', 10, 3 );
    danbp
    Participant

    ?????
    Some details perhaps ?

    Groups

    #253437
    danbp
    Participant

    Hi @famous,

    anything directly related to URL for bp is listed here:
    http://hookr.io/plugins/buddypress/#index=l&search=url

    In most case, you can built a link by array, which generally extend pre existing parameters. It’s very variable and depend where and how the link shoud work.

    Here some exemple snippets to add a link to a member’s profile.

    /* add external link on buddy menu bar */
    function bpfr_menubar_link() {
    global $bp;
    
    if ( !is_user_logged_in() )
        return false;
    
    $link = bp_get_loggedin_user_link();
    
    	$bp->bp_nav[$slug] = array(
    			'name'                    => 'View my profile',
    			'slug'                    => 'super_link',
    			'link'                    => $link,
    			'css_id'                  => 'super-link',	
    			'position'                => 20
    		);
    }
    add_action( 'bp_core_new_nav_item', 'bpfr_menubar_link', 999 );
    
    /* link to profile on SWA page */
    function goto_my_profile_tab() {
      if ( !is_user_logged_in() )
        return false;
    
      if ( bp_is_active( 'xprofile' ) )
    
        echo '<li><a href="'. bp_get_loggedin_user_link() .'">View my profile</a></li>';
      
    }
    add_action( 'bp_activity_type_tabs', 'goto_my_profile_tab' ); // SWA page
    add_action( 'bp_members_directory_member_types', 'goto_my_profile_tab' ); // members directory page
    
    /* shortcode linking to profile [xyz] */
    function bpfr_link_to_profile() {	
    return '<a href="'. bp_get_loggedin_user_link() .'">View my profile</a>';			
    }
    add_shortcode( 'xyz', 'bpfr_link_to_profile' );

    Another technique for groups here.

    In hope this will help you to go further.

    #253427
    Andrew Tegenkamp
    Participant

    There is also a free plugin at http://www.buddyboss.com/purchase/buddypress-auto-group-join/ if that helps.

    #253422
    modemlooper
    Moderator

    that’s correct, BuddyPress filters the the_content of a BP page so anything you add to the content editor will not show. BuddyPress uses your themes page.php for all its pages so its kind moot to add content in the editor unless its something to display site wide. You are better off hooking to bp template hooks to display extra content on specific pages.

    #253418
    semperaye
    Participant

    Better yet, it would be nice if there was a way to change all the BuddyPress buttons globally, including “Add Friend” “Cancel Friendship,” “SEARCH,” etc.

    Example:

    I found this code that changes all the wordpress buttons globally, just not the login and register.

    .wp-core-ui .button-primary, .button {
    background: #99cc66;
    border-color: #669933;
    box-shadow: inset 0 1px 0 rgba(102,153,51,.5),0 1px 0 rgba(0,0,0,.15);
    }

    .wp-core-ui .button-primary:hover, .button-primary:active {
    background: #669933;
    border-color: #99cc66;
    box-shadow: inset 0 1px 0 rgba(102,153,51,.5),0 1px 0 rgba(0,0,0,.15);
    }

    Perhaps there is a .buddypress-core-ui?????

    #253406
    semperaye
    Participant

    Someone helped me do this for bbpress and it looked like this:

    #bbpress-forums .submit {
    background-color: #0f5289;
    color: #FFFFFF;
    float: center;
    vertical-align: middle;
    border-radius: 0;
    height: auto;
    width: auto;
    }

    #bbpress-forums .submit:hover {
    background-color: #0c2b44;
    color: #FFFFFF;
    float: center;
    vertical-align: middle;
    border-radius: 0;
    height: auto;
    width: auto;

    How can I do the same with hover in buddypress?

    #253402

    In reply to: PHP 7.0 compatibility

    mln83
    Participant

    Thanks for the feedback!

    I am now testing it on my developer site. Also noticed problems with BuddyPress after restoring via VaultPress to my developer site. I got this error:

    require(): Failed opening required 'Xd#�F+' (include_path='.:/usr/local/php70/pear') in /home/****/public_html/dev/wp-content/plugins/buddypress/bp-messages/bp-messages-classes.php on line 14

    and

    Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 549755814048 bytes) in /home/****/public_html/dev/wp-content/plugins/buddypress/bp-core/classes/class-bp-component.php on line 370

    So it seems that BuddyPress needs to be updated for PHP 7.0.6+

    Best regards,
    Michael

    #253392

    In reply to: Group Type Development

    Christian Wach
    Participant

    A Group Types API is on its way – 7 commits yesterday 🙂 https://buddypress.trac.wordpress.org/ticket/6784

    #253387
    officeninjas
    Participant

    Thanks @r0z for the elegant solution.

    I would just add that in order to prevent PHP Notices, change the qualifier to the following:

    if ( function_exists( 'buddypress') && ( !empty( buddypress()->displayed_user->id ) || !empty( buddypress()->current_component ) ) ) {

Viewing 25 results - 10,251 through 10,275 (of 69,015 total)
Skip to toolbar