Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,976 through 20,000 (of 68,967 total)
  • Author
    Search Results
  • mathieu.urstein
    Participant

    @modemlooper

    thank you the problem was the quotes 😉

    #167800
    matom
    Participant

    I’ve tried this with 1.8-beta2 as I was pleased to find out that the Group Extension has been rewritten – thanks to the dev team for this change.

    It no longer outputs the full HTML, but unfortunately it’s still not correct. Instead it now outputs:

    Are you sure you want to do this? Please try again. (Please try again links to the page it’s on)

    I’ve updated the ticket here: https://buddypress.trac.wordpress.org/ticket/5052


    @boonebgorges
    – I’ve been banging my head against this issue for quite a while now – so any help would be much appreciated.

    #167792
    nobodymove
    Participant

    @bphelp. I think I have discovered the culprit to this little mystery.. I have been using the Buddypress Members Import plugin: http://www.youngtechleads.com/buddypress-members-import/

    For some reason when I import my database, the plugin does not seem to process the xProfile Field visibility settings properly.. The profile fields are still listed as “Admins Only” But for some reason they are still visible to all users.

    Earlier, I manually added some new test profile fields and they worked fine. I also discovered, that if I edit, and re-save a user’s profile field after import, all profile fields for that user will then revert to the proper visibility settings.

    I have contacted the plugin author to make him aware of the issue, hopefully he can fix it. If you have any suggestions that might be a quick fix for this I’m all ears! 🙂

    modemlooper
    Moderator
    <?php
    $userid = bp_loggedin_user_id();
    $avatarurl = bp_core_fetch_avatar( array( ‘item_id’ => $userid, ‘html’ => false ) );
    echo $avatarurl;
    ?>

    rewrite the quote marks, if you cut and paste it can have funky formatting. If you want to display the avatar instead of getting link:

    <?php
    $userid = bp_loggedin_user_id();
    echo bp_core_fetch_avatar( array( ‘item_id’ => $userid) );
    ?>
    #167788
    gcarlos8377
    Participant

    @bphelp

    I actually did it but the problem persists.

    mathieu.urstein
    Participant

    thank you @modemlooper

    I did :

    $userid = bp_loggedin_user_id();
    $avatarurl = bp_core_fetch_avatar( array( ‘item_id’ => $userid, ‘html’ => false ) );

    But the problem is still the same,
    what did I do wrong?

    Thanks.

    #167784
    bp-help
    Participant

    @zorro1965
    In regards to WP SEO by Yoast you can try this solution courtesy of BuddyDev:

    Making WordPress SEO plugin compatible with BuddyPress

    #167783
    bp-help
    Participant

    @gcarlos8377
    I see the problem but have you tried switching themes as I suggested because it may be an issue with your theme.

    #167782
    gcarlos8377
    Participant

    @espellcaste @bphelp

    Is not creating the user. Please click the link http://crecimientoenredes.com/buddypress-problems/ ‎
    so you can see whats happening.

    Thanks for the support

    #167779

    In reply to: web design dummy

    bp-help
    Participant

    @sna2009
    Here is a link to the WP codex:
    https://codex.wordpress.org/
    and to the BP codex

    BuddyPress Codex


    I would bookmark them both because you will find yourself referencing them often.
    Good luck!

    modemlooper
    Moderator

    $id = //pass the id of a user
    bp_core_fetch_avatar( array( ‘item_id’ => $id, ‘html’ => false ) );

    If you are not on a user page then you must tell it what id of the avatar to get.

    bp_displayed_user_id
    bp_loggedin_user_id

    #167776
    bp-help
    Participant

    @gcarlos8377
    Have you tried activating Twenty Twelve theme or bp-default theme to see if the issue persists?

    #167775

    In reply to: web design dummy

    bp-help
    Participant

    @sna2009
    The codex is as good a place as any to learn WP and BP. You can search YouTube for videos as well. Lynda.com offers tutorials for a fee, as well as Tutsplus.com . Lisa Sabin-Wilson has several books called WordPress and BuddyPress for dummies but I am not certain how up to date they are with current versions of WP and BP.

    #167772
    Renato Alves
    Moderator

    Is it not creating the user or it is not sending the confirmation link?

    Dsvay
    Participant

    Anybody?

    #167766

    In reply to: My account menu

    mathieu.urstein
    Participant

    This is the hook for the admin toolbar:

    		$wp_admin_bar->add_menu( array(
    			'parent'    => 'my-account',
    			'id'        => 'my-account-buddypress',
    			'title'     => __( 'My Account' ),
    			'group'     => true,
    			'meta'      => array(
    				'class' => 'ab-sub-secondary'
    			)
    		) );

    Is there a way to call this for somwhere else than the toolbar?

    #167765
    nobodymove
    Participant

    Hi @bphelp, is there a way I can privately send you a private link and/or set you up with a user account for my site’s user information? I just don’t want a public link with all of the user’s info public. I currently have all plugin’s deactivated and the twentytwelve theme active. I also did a clean install of Buddypress, still no luck, all the extended profile information is still visibile to everyone.

    #167764

    In reply to: BP Album – dont work

    Henry
    Member

    BuddyPress Media (soon to be rtMedia) is great for albums. You could give that a try. It works very well for me and is actively supported by the development team.

    Never used BP Album myself, perhaps try posting in the plugin’s support forum if you need to get that working.

    #167755
    paravia
    Participant

    Sorry bp-help, that changes the permalink from website.com/groups to website.com/gathering.

    I need to change Buddypress slugs, or in other words, I need help with these instructions:

    Change the URL slugs of BuddyPress components:
    define ( ‘BP_ACTIVITY_SLUG’, ‘streams’ );
    define ( ‘BP_BLOGS_SLUG’, ‘journals’ );
    define ( ‘BP_MEMBERS_SLUG’, ‘users’ );
    define ( ‘BP_FRIENDS_SLUG’, ‘peeps’ );
    define ( ‘BP_GROUPS_SLUG’, ‘gatherings’ );
    define ( ‘BP_FORUMS_SLUG’, ‘discussions’ );
    define ( ‘BP_MESSAGES_SLUG’, ‘notes’ );
    define ( ‘BP_WIRE_SLUG’, ‘pinboard’ );
    define ( ‘BP_XPROFILE_SLUG’, ‘info’ );
    define ( ‘BP_REGISTER_SLUG’, ‘signup’ );
    define ( ‘BP_ACTIVATION_SLUG’, ‘enable’ );
    define ( ‘BP_SEARCH_SLUG’, ‘find’ );
    define ( ‘BP_HOME_BLOG_SLUG’, ‘news’ );

    because they do not work at all for me.

    sellarsc
    Participant

    I have the same problem and I alos just use the default buddypress theme. Any idea what is wrong?

    #167741
    Andres Felipe
    Participant

    Hi @darrenmeehan

    First, thanks for your effort with this plugin. I tried it in 1.6.x and 1.7 and the “Like” button is being displayed but after clicking it it starts to “ajaxify” but nothing happens and then get a blank button and after refresh it’s again the “Like” button.

    Some time ago I tried this plugin and it worked for me but it’s not longer updated and it doesn’t records the people who liked the activity and this is this most important feauture in a like button for a social network.

    I hope this could help.

    #167740
    bp-help
    Participant

    @paravia
    Go to dashboard/pages/groups actually open the page as if you was going to edit it, it should be just a blank page then click “Screen Options” it should be there! Follow the rest of the instructions!

    #167739
    paravia
    Participant

    I don’t have it, I have ‘Description Status Members Last Active’ up there. See screenshot
    Anyway even if I had the ‘slugs’, it’s not the single groups slugs that I want to change, I want to change wherever it says ‘Groups’ on my site to ‘Gathering’ (like, ‘Gatherings, My Gatherings, All Gatherings’ etc. – not: Groups, My Groups, All Groups). Hope I am being clear, I think there is a misunderstanding on what I wish to accomplish. Thanks!

    #167737
    bp-help
    Participant

    Do you see that button at the top right of the Groups page that says “Screen Options” just below the toolbar? Click on that and click the box that says “Slug” then scroll down past the page body and voila the slug metabox magically appears. You can change it there! Good luck!

    #167735
    paravia
    Participant

    I am on the Groups page but all I can see is a listing of my groups and Visit/Edit/Delete options (no slug metabox?).
    Under Settings/Buddypress I can only change the pages names, which I did, changing ‘groups’ to ‘gatherings’ but this only changes the page name, not the slugs. It still says ‘Groups, My Groups, All Groups’ etc. (as per above) when I visit the site. I don’t want to see ‘Groups’ anywhere on my site, I want to see ‘Gatherings, My Gatherings, All Gatherings’ etc.

Viewing 25 results - 19,976 through 20,000 (of 68,967 total)
Skip to toolbar