Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 11,401 through 11,425 (of 69,016 total)
  • Author
    Search Results
  • #247380
    @mercime
    Participant

    @keram- You need to enable registration in your Network Admin > Settings, creaate the pages, then associate those pages with BP https://codex.buddypress.org/getting-started/register-and-activation-pages/

    #247378
    @mercime
    Participant

    >> The”membership” option in the image on the link you posted.

    @functionmunchkin
    The option to “allow users to register” in Network Admin > Settings is the same as the one in a single WP site’s option in Settings > General in that link.

    >> Register goes the the login page and clocking the register link on there goes to page not found.
    You mentioned that “I’ve setup the bp register and activate pg”
    – did you set up BP network-wide or in one subsite? Reference: https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/
    – have you double-checked that you created the Register and Activate pages in the main site (if network-wide) or in the subsite, then associated the pages in Settings > BuddyPress > Pages?

    #247376
    Maddish
    Participant

    Did this solution really work for you?
    I’m surprised because in my case it did not.
    As in this thread other users say, on one hand the browser remember the last selected tab, and on the other, the loop displayed in the stream is still the activity-all.

    I found another solution based on cookies.

    There is a cookie named ‘bp-activity-scope’ that is used to query the activity stream posts and that must be set to ‘groups’ in order to display only the posts that belongs to groups.

    This is the script that worked for me, in which ‘My Groups’ is the default tab:

    var jq = jQuery;
    jq(document).ready( function() {
    
    	filter = jq('#activity-filter-select select').val();
    		jq.removeCookie('bp-activity-scope', {
    		path: '/'
    		});
    //change 'groups' with the cookie for the tab you want to be the default one
    // favorites , friends, etc
    	jq.cookie( 'bp-activity-scope', 'groups');
    	scope = jq.cookie('bp-activity-scope');
    	bp_activity_request(scope, filter);
    
    } );

    I wrote a post in which I explain step by step how to implement it, and also how to avoid that the activity-all tab is switched to selected when the user focus on the wwhat’s new textarea:

    http://inauditas.com/change-default-activity-stream-tab-buddypress/

    #247374
    Ynasr
    Participant

    Many thanks Henry!

    Yes that is what would be needed, but how can i assign “.some-wrapper-class” to the element i am trying to resize ? I am still a newbie with wordpress and buddypress … i have looked all over the net and couldnt find anything helpful.

    Best,
    Yvan

    #247371
    Henry Wright
    Moderator

    See the Members Loop article for details on how to output a member list.

    #247363
    dwsowash
    Participant

    Positive.
    2014

    And while I’ve got your attention I have “buddypress-activity-plus and bp-group-documents” plugins and no matter what I do only admins can upload docs. I went so far as to change the group settings in the db “group_documents_upload_permission” to “members” and admins are still the only one’s who can upload.

    #247360

    In reply to: Private Site????

    Stacy (non coder)
    Participant

    This will take you years to achieve adequate app like privacy. There’s other ways these days besides buddy press. A few years ago, no one really cared to provide real privacy options with buddypress because to them it defeated the purpose and was suspicious. One volunteer took it on and eventually gave up.

    Moved on.

    #247341
    Bas van der Togt
    Participant

    This is everything what is written to the log after i tried to upload an image:

    [02-Dec-2015 17:45:42 UTC] PHP Notice:  bp_setup_current_user was called <strong>incorrectly</strong>. The current user is being initialized without using $wp->init(). Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information. (This message was added in version 1.7.) in /home/***/domains/***/public_html/wp-includes/functions.php on line 3622
    [02-Dec-2015 17:45:43 UTC] PHP Fatal error:  Cannot use object of type WP_Error as array in /home/***/domains/***/public_html/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php on line 874
    #247325
    r-a-y
    Keymaster

    Are you using the WOffice theme and their Birthday extension?

    If so, see:
    https://buddypress.org/support/topic/fatal-error-call-to-undefined-method-stdclasssave/

    #247321
    ShMk
    Participant

    Thanks @mercime for the link, I’ll follow the progress of the issue.

    In the meantime do you know if there are any plugins that permit to edit the BuddyPress registration page?

    Thanks again.

    #247317
    DarkDog
    Participant

    Amazingly I just now found kinda what I was looking for. It’s called Toggle The Title. While it isn’t working for bbpress, it does work on every other page including BuddyPress. So that’s good. I just can’t believe I didn’t find this sooner. Anyway, it works. Now if I could just figure out how to get bbpress working the way I want it, I’ll be good to go.

    #247314
    @mercime
    Participant

    >> I know that Base group are shown in the Registration Form

    @shmk
    thanks for confirming, just had to make sure you did. There’s a trac ticket which needs some more work done to get the feature you want at https://buddypress.trac.wordpress.org/ticket/6347

    #247313
    @mercime
    Participant

    @engine44 Have you read https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/ ? What shortcode did you use for your forums index page? Have you created an additional new Forum from wp-admin menu Forums > New Forums?

    #247310
    djsteveb
    Participant

    @darkdog
    This post may help you with this: https://buddypress.org/support/topic/swap-out-the-buddypress-page-title-with-the-wordpress-page-tile/

    I have no idea if BP is going to make this easier in the future to change these things dashboard backend or not – I have made some posts about this a time or two around here – but bp pages, their displayed on screen titled, and the meta titles have been a mess for a long time. Unless you know php and are willing to dig deep through documentation that is disorganized and possible outdated, there is no easy way of handling these issues.

    #247297
    cameck
    Participant

    All right thank you everyone, I finally figured it out.

    I was not able to find an S2 Member function that worked for my specific task.

    Luckily I had a custom BuddyPress field that also designated the user Level.

    I got the field ID of “55” by hovering over the edit portion of the custom profile field.

    This is the final working code:

    <?php if(is_user_logged_in() && xprofile_get_field_data( 55 ) == 'Employee'){ ?>
    
    <div class="paybox">
    <h3>Make Payment with PayPal&reg;</h3>
    <?php $uemail = getDisplayedUserEmail(); ?>
    <?php echo do_shortcode('[gravityforms id="7" field_values="recip-email=' . $uemail . '"]'); ?>
    </div><!-- .paybox -->
    <?php } ?>
    #247295

    In reply to: Wrong Member Count

    newdermeo
    Participant

    What RemonStormborn is having a problem with is exactly what is happening for me. This changed after one update. Which one, I do not know. I have waited several months to reinstall Buddypress hoping things would be different but it is not.

    #247276
    Henry Wright
    Moderator

    I am new to using W3 Total Cache. Are there any guides out there to setting that up for BuddyPress?

    Not that I know of. Is there anything in the W3 Total Cache documentation?

    #247273
    jimme595
    Participant

    So i’ve had some success trying to change the profile links with this code:

    function _bp_core_get_user_domain($domain) {
    	$url = get_home_url();
    	$user_id = bp_get_member_user_id();
    	if (empty($user_id)) {
    		$user_id = bp_get_activity_user_id();
    	}
    	if (empty($user_id)) {
    		//$user_id = bp_displayed_user_id();
    	}
    	$user_info = get_userdata($user_id);
    	$link = $user_info->display_name;
    	$domain = '' . $url . '/profiles/' . $link . '';
    	return $domain;
        }
    add_filter('bp_core_get_user_domain', '_bp_core_get_user_domain', 10, 4);
    apply_filters( 'bp_get_activity_user_link', '_bp_core_get_user_domain', 15, 1);

    This seems to work on every profile link except the one in the activity header section. This link is being changed but just to /profiles/. The display name is not being added to the end… so looking at my code this means i’m not retrieving the user id in the activity. Strangely enough though the user avatar next to the post has the correct link applied to it with the above filter! Any ideas?

    My other option is to use the buddypress member profile location but replace it with my profile templates. I tried to implement this by creaing a members/single/home.php in my wordpress custom theme folder… but the profile loads inside another page, i get a page within a page type effect with the username above the inner page… not sure what is going on there? If anyone can help with either of these solutions i’d really appreciate it!

    James

    #247270
    nakirush
    Participant

    So, I’ve gone through and deactivated and reactivated each plugin one by one.

    The problem seems to be with W3 Total Cache. When I deactivate that the upload options appear right away.

    Edit: I am new to using W3 Total Cache. Are there any guides out there to setting that up for BuddyPress?

    Edit 2: Seems to be a problem with minifying JS. Disabled that in W3 Total Cache and everything is right as rain.

    Henry Wright
    Moderator

    Is there a table in the DB that deals specifically with notifications?

    Yes. That’d be bp_notifications

    If so, I guess I could just empty it before I emptied the stream and stream meta tables.

    Shout up if anyone thinks that could be a problem.

    Instead of deleting directly from the database, you should use these functions:

    • bp_notifications_delete_notifications_by_type()
    • bp_notifications_delete_notifications_by_item_id()
    • bp_notifications_delete_all_notifications_by_type()
    • bp_notifications_delete_notifications_from_user()

    Alternatively, if none of these quite suit your need, go straight for the class method:

    • BP_Notifications_Notification::delete()
    #247257
    dwsowash
    Participant

    Add these additions to your style.css for a fix.

    #buddypress div#item-header #item-header-cover-image #item-actions {
        margin-top: 0px !important;
        margin-left: 0px;
        clear: all !important;
        max-width: 80% !important;
    }
    #247256

    In reply to: Private Pages Glitch?

    Brajesh Singh
    Participant

    This may be considered as bug in current behavior. Currently, BuddyPress only looks for published pages when looking for component associated pages in bp_core_get_directory_pages().

    You may want to report it on the BuddyPress trac and the core developers and weigh their opinions on this.

    #247253
    dwsowash
    Participant

    I have the exact same problem. Too much white space.

    Newest wordpress Newest Buddypress using 2014 theme.

    #247243
    r-a-y
    Keymaster

    When you click inside the textarea box, the textarea should expand and show the submit button.

    Does that work?

    If not, it might be related to the Sahira theme. Since Sahira is a premium theme, we do not have access to it. What happens when you switch to one of the WordPress Twenty themes?

    Do you have the BuddyPress Activity Privacy plugin activated? If so, read this:
    https://buddypress.org/support/topic/buddypress-2-4-0-and-buddypress-activity-privacy/#post-246630

    tstrickland415
    Participant

    Sorry for keeping you guys in the dark but what I’ve discovered is that BP’s implementation of member types is pretty underwhelming since it’s only an xprofile field. In regards to my original use case, I discovered I was better off defining custom user roles (AKA member types) and adding appropriate permissions. This can easily be achieved with a few simple lines of code in your functions.php or your custom plugin. If coding isn’t your thing then there are a bunch of freemium plugins available for you to use. Why the Buddypress team elected not to leverage WordPress’ built in User Roles for this feature is beyond me, but if anybody is still looking for an answer to this then I highly recommend checking out the WordPress Codex on User Roles and Capabilities. Hope this helps!

Viewing 25 results - 11,401 through 11,425 (of 69,016 total)
Skip to toolbar