Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,801 through 8,825 (of 68,915 total)
  • Author
    Search Results
  • #260446
    nhatnnt1
    Participant

    Hello.
    Sorry for late reply. I had to reinstall several times and install wordpress not script. I do not understand why.
    If BuddyPress plugin and theme running on the host. It works well. But when up vps is problematic. I have tried many ways.
    Looking forward to your suggestions.

    #260443
    Emmanuel
    Participant

    I am using
    wordPress 4.6.1
    buddyPress 2.7
    I deleted the other plugins. only buddypress plugin is active but the problem remains
    I try other theme but nothing happen

    #260440
    Venutius
    Moderator

    I set up this permalink structure and afterwards was able to create a group on my test server, so that’s not it.

    What other plugins are you running? Have you tried deleting all but BuddyPress? Also try with the 2015 theme.

    #260437

    In reply to: How to output user ID?

    Hugo Ashmore
    Participant

    and if you need a code example of how you might do this look at danbp’s reply here:

    Reply To: [Resolved] Display user id

    #260431
    Venutius
    Moderator

    Have you enabled the Groups compoenet and associated the Groups Page, in Settings>>BuddyPress?

    #260429
    danbp
    Participant

    Hi @davidself1001,

    i think BP Profile Tabs is a plugin to create “nice looking tabs using the jQuery UI”, it is not the xprofile component !

    xprofile fileds and field groups (the tabs) management is located at
    dashboard > users > profile fields. What you see on that screen is normally what you have in the DB.
    Once you created fields and field groups in xprofile, you will see the group tabs in the plugin.

    #260427
    danbp
    Participant

    You misunderstood me.

    Remove any define’profile’ and it each time you visit a profile the default activity screen will show up.

    But this may not work in your configuration as anything related to, at least, BuddyPress is going through site/activity/something/. You have to check for this as it is wrong.

    Perhaps in Dashboard > settings > general. What is WordPress URL and site URL ? Or have you added activity in a plugin or even in htaccess ?

    #260419
    Jason
    Participant

    Thank you for that information! I have seen this question going back 7+ years, so I know that I am not alone in this request. However, I do not know how to program PHP šŸ™ Unless someone can provide a bid $$ amount for adding this functionality through a plugin, I will have to either 1) accept the current functionality or, 2) move on to another plugin or platform solution.

    It would be nice to have a “pro” version of Buddypress that would have more options.

    #260417
    coffeywebdev
    Participant

    Buddypress does not support this functionality out of the box, but with a little PHP knowledge one could make these adjustments to your buddypress site.

    Be sure when making customizations that you don’t overwrite the plug-in! You can include BuddyPress/bbPress template files in your theme and modify them to do whatever you want. The possibilities are endless!

    Check out the BuddyPress documentation for more info on extending BuddyPress for custom features.

    BuddyPress Codex

    #260410
    danbp
    Participant

    BP is a WP plugin, don’t be confused by what i wrote. By same level i was meaning this :
    BuddyPress does not work on installations where you give WordPress its own directory. (install guide::Required)

    Glad you got it back to normal.

    #260408
    rfk55tn
    Participant

    Thank you for your help.

    When I did the install of BP I followed this guide: https://premium.wpmudev.org/blog/buddypress-guide/ Initially, I was using another theme which required nesting the pages in order to make a drop down menu in associated groups within the header. When I installed the twentysixteen theme I did not remove that nesting. So, I ended up with up with that mess you found. By removing the nesting – which wasn’t needed – through Pages in Admin, all of the buttons have come back. The “Groups” page works wonderfully.

    I was under the impression that BP was a plug-in that was added to WP through the use of the “Add” feature within WP. How would I do an install of BP “at the same level of WP”? As a plug-in, doesn’t it install within WP? Would it be necessary to do a reinstall of the entire site to get two, same level installs?

    #260407
    danbp
    Participant

    Hi,

    you need a function to do that.

    Here’s one who will show the user id on profile header and on members directory.
    Add it to bp-custom.php or child theme functions.php

    function razman_user_id_display() {
    	if ( bp_is_user() ) {
    		$user_id = bp_displayed_user_id();	
    	} else {
    		$user_id = bp_get_member_user_id();
    	}
    		
    	echo '<div class="myuser-id">My user ID: '. $user_id .'</div>';
    	
    }
    add_action( 'bp_before_member_header_meta', 'razman_user_id_display' );
    add_action( 'bp_directory_members_item', 'razman_user_id_display' );
    danbp
    Participant

    Ensure you have a page for each active BP component. That the page is unique (no same page in trash or sub page) and that no template or model is assigned to them.

    Set up pretty permalinks to whatever but default and save.

    Go to dashboard > tools > buddypress and use the repair tool.

    And read the install guide ! šŸ˜‰

    #260405
    danbp
    Participant

    Hi,

    it seems that you have a lot of pages on the site and that you use weird settings.

    I would do the following:
    – remove any redirect settings and other done via plugins.
    – deactivate all plugins except buddypress.
    – activate 2016, and not a child theme.
    – ensure that each active BP component has a page assigned and that this page is unique, without any template or model assigned. Just a title and nothing else.
    Actually, you have links like “…/americannexus.net/activity/members/” (found in the Who’s on widget). Or the link to Archangel’s profile indicates “../americannexus.net/activity/members/archangel/”

    That’s unusual and cannot work properly, except if your WP is in a directory called “activity”. And it is not the case ! Note also that BP should be at the same level as WP.

    – set up pretty permalinks (what ever but default option) and save.

    – and read attentively the install guide.

    Other dysfunctionning points:
    The toolbar has a Register button who link to ../americannexus.net/join/ (this works correctly)
    but the homepage shows ../americannexus.net/register/. If you want visitors to register, send them to /join/ page and not to an empty page.

    …and of course, this link doesn’t work too (at least for a not logged visitor) : ../americannexus.net/activity/groups/create/

    Here the list of correct slugs of a default BP install:
    – your-site.net
    – your-site.net/register/
    – your-site.net/activity -> BP site activity page (active by default)
    – your-site.net/members/ -> BP members directory (mandatory)
    – your-site.net/groups/ -> BP groups directory (if group component is active)

    These BP pages are dynamic and depending the context, you can have ie:
    your-site.net/members/USERNAME -> goes to a profile
    your-site.net/members/USERNAME/friends -> goes to the friends screen of the specified user

    It works the same for groups.

    Once BP and WP are working correctly together, you can reactivate the child theme and your plugins.

    #260402
    Emmanuel
    Participant

    Hello
    please i have the same problem.
    When i seek to create group in my admin panel or throught user profil (front end), it is impossible.
    the send me this message : The requested URL /example.com/groups/create/ was not found on this server.
    But in the buddypress config allthings seem to be good (components, pages, options)
    I’m working with WP 4.6.1 and BP 2.7
    I am in local server.
    why can i do please.

    #260393
    danbp
    Participant

    Can’t say more! The site is not public, you use S2 members, pages are redirected, and you use a premium theme. And apparently you’re unable to provisory revert to a standart install without undoing a lot of settings. If you couldn’t test, how could we do ?

    I presume there is a little js conflict somewhere – which could explain the jumping page phenomenom.
    Afaik you have to ask on the theme support how to adjust the layout while using BuddyPress.

    #260362
    mashauri
    Participant

    I have shared hosting with xilo.net
    They assure me that I have 128MB of PHP memory
    (although I am not convinced that this is the case given many “fatal errors” I receive – which go away if I simply reload the page)
    I would appreciate your thoughts and suggestions on memory requirements (I am runnig WPLMS with BuddyPress and BuddyDrive as part of the standard plugins)

    danbp
    Participant

    bp_parse_args could be a solution.

    Read the first comment block in bp-xprofile-template.php

    #260340
    danbp
    Participant

    @livingflame,

    if you’re only looking for “free” solutions, i’m afraid that you won’t get many, unless you find and built them yourself.

    BuddyDev, very expensive. That’s your opinion. Did you even know that you use a function contributed by it’s author ?

    How many time have you already spent on this forum, and nothing to say about all other searches you probably have done elsewhere ?
    Do you imagine the price you have to pay if this support forum wouldn’t be “free” ? And the time (which is money) to charge to yourself for those efforts ? Certainly more than 20$ !

    Not everything can be native, because not everybody need functionnalities you want and because BP is only a plugin and not a collection of whatever existing enhancement who might be added, or who YOU think it should be in.

    This is your 7th topic here.
    And a good dozen of times i read your claim about lack of feature or functionnalities.
    You critizise a lot but aren’t very constructive. That attitude is really unfair in regard of all the people volonteers working around BuddyPress.

    #260339
    Venutius
    Moderator

    Ok I’ve written something up, hope you like it

    http://buddyuser.com/hardening-buddypress-against-spammers

    #260337
    danbp
    Participant

    It’s a temporary information and i wouldn’t try to alter or remove it.

    It use WP heartbeat API and what you’re looking for is defined in this (filterable)function:

    bp_activity_heartbeat_last_recorded

    #260336
    Paul Wong-Gibbs
    Keymaster

    Yep, like @hnla said. BuddyPress’ DB requirements are the same as WordPress’.

    #260335
    livingflame
    Participant

    https://la.wordpress.org/plugins/buddypress-private-message-for-friends-only/

    Okey, very very partial solution.

    Really solution: BuddyDev Message Privacy BUT native!

    #260331
    danbp
    Participant

    And what is the problem ? It seems to do what it is intended for.
    But it is a premium plugin. If you need assistance you have to ask on the plugin support.

    BuddyPress Message Privacy

    #260326
    danbp
    Participant

    Not sure it’s a fix to apply directly in a core file. You’ve probably need to review some of your templates or custom functions.

    http://hookr.io/plugins/buddypress/2.6.2/functions/bp_blogs_get_subdomain_base/

    http://hookr.io/plugins/buddypress/2.6.2/functions/bp_signup_get_subdomain_base/

Viewing 25 results - 8,801 through 8,825 (of 68,915 total)
Skip to toolbar