Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,601 through 4,625 (of 69,040 total)
  • Author
    Search Results
  • #306390
    Nahum
    Participant

    could try
    https://codex.wordpress.org/Shortcode_API#Output
    and
    codex.buddypress.org/developer/loops-reference/the-blogs-loop/

    #306388

    On the Buddypress activity page, you can filter by All Members, Favorites, Mentions, ect…

    How do I add a filter to only show updates from a specific user id?

    #306384
    imanuelgittens
    Participant

    Hi, I’m using the buddyboss theme which uses buddypress and the groups functionality is giving me some trouble. I can’t remove members from a group – I have to ban them then add them to another group. Is this a common problem?

    #306383

    In reply to: PROBLEM IN DATA EXPORT

    shanebp
    Moderator
    #306380
    visitatore
    Participant

    Wordpress version 5.2.1
    Buddypress 4.3.0
    Twenty Twelve theme
    Link to the Blog: https://problemaesportazionedati.altervista.org/

    PROBLEM IN DATA EXPORT:
    Created ALTERBLOG account (exported data issues)
    enabled:
    1) Cache
    2) https
    3) Cloudflare
    Installed Buddypress 4.3.0
    Activated all components in “Buddypress Settings”
    Went to “Tools / Export Personal Data” and tried to download personal data.
    Data downloading was unsuccessful and produced the following warning:

    An error occurred while trying to export personal data.

    SyntaxError: Unexpected token <in JSON at position 0

    Brand new Alterblog account; Buddypress unique plugin installed; tried other Themes with the same result.

    Try the same procedure with other themes and get the same result.

    Can anyone from Buddypress solve the problem?

    Early thanks. (I’m using Google Translate, greetings from Italy)

    Claudio

    salmansaleem920
    Participant

    Hi,
    I have a community site build on buddypress. So far, all is going good but now my client wants extended profile field (Surname of user) to be shown in place of default first and last name of user. How can i do this ? Please help

    mohammedarif
    Participant

    Hello,
    I build a custom tab which url “http://example.com/members/{dynamic_user_slug}/customtab” in BuddyPress profile page. I want when user click a menu then he goes to his custom tab that is “{dynamic_user_slug}/customtab”.
    So how can I get this dynamic_user_slug in the url?

    #306362
    wasanajones
    Participant

    I’m trying to create a shortcode to replace the Site Directory page generated by Buddypress on multisite networks.

    Know of a resource to do it in functions.php or bp-custom.php ?

    Thanks

    ranjanmania
    Participant

    Hi,

    we have created buddypress profiles for some users who aren’t our regular story writers on our news media website. How can we get these users feature into the search findings of search box that we have in our homepage and other pages we have on our website. We want to search them by their names on all the pages

    Website is http://www.sportscrunch.in

    Thank you in advance.
    Ritesh

    #306353
    Nahum
    Participant

    Find the /buddypress/members/single/profile/change-avatar.php file and place a copy in your child theme’s /buddypress/members/single/profile/ folder and modify that file by removing the parts about gravatar

    or this maybe

    Loco Translate

    Nahum
    Participant

    Trying to get to the best way to avoid those flashing number counts in the activity navigation tabs when at 0 and the page loads.

    What I ended up doing is overriding the /common/nav/directory-nav.php template from:

    <?php if ( bp_nouveau_nav_has_count() ) : ?>
    <span class="count"><?php bp_nouveau_nav_count(); ?></span>
    <?php endif; ?>

    to

    <?php if ( bp_nouveau_nav_has_count() ) : ?>
    <span class="count c-<?php bp_nouveau_nav_count(); ?>"><?php bp_nouveau_nav_count(); ?></span>
    <?php endif; ?>

    then
    .buddypress-wrap .bp-navs li.dynamic a .count.c-0 { display:none; }

    Anyway to get at this via bp_nouveau_get_nav_count Rather not have to override that template.

    #306340

    In reply to: Registration page

    smiranda
    Participant

    I have the same issue. I hope BuddyPress folks are on board for support. nearly two weeks after the above post.

    #306338

    In reply to: Help with Setup

    shanebp
    Moderator

    Deactivate Youser for now.
    Get a basic BP install working first.

    Walk thru the Configure guide and the Admin guide instructions in the codex.

    Resave your permalinks after choosing any option other than the default option.

    I’m not saying that it will solve all your issues, but it will get you on the right track.

    #306333

    In reply to: Comment Blacklist

    shanebp
    Moderator

    BuddyPress does not include forums.

    If you are using bbPress, you should ask on their support forums.

    Finding out which words are triggering a filter can be difficult. The people at bbPress should be able to provide specifics re their filter.
    If the issue about WP comments rather than forum lists, you could ask on the WP support forums.

    #306332

    In reply to: BuddyPress and bbpress

    gal_Dahan
    Participant

    Unfortunately there is no answer you have knowledge WP Job Manager I want instead of apply for job will send a message to the user via buddypress

    #306331
    writersabroad
    Participant

    Not sure if this is a wordpress or buddypress issue so posting in both places. I run a writers community with buddypress and have set up forums where members can post pieces of work. We are experiencing some difficulty with the comment blacklist which prevents some words from being used even if within a word e.g. double breasted…. and one piece of work I can’t for the life of me find the word that is blocking the post… whilst I want to be able to stop spam comments, surely forum posts from members who have to be signed in to post is another thing? Any suggestions? I am useless with code :). Even if we had something which could identify the rogue word we could do something about it…

    Thank you

    hungerford
    Participant

    WP v5.2.1
    BP v4.3.0

    I have BuddyPress installed in a multisite environment and I am trying to figure out what the exact code needs to be placed within the bp-custom.php file to remove … “on the site SITENAME,” … from the following within the Global and Personal activity streams:

      When a post is made.
      when a comment is made.

    Also, I’m trying to figure out how to turn off the notifications within the global and personal activity streams for:

      When a page is made.

    I may be novice but can pick up some things fairly quick. I just need a little help so any assistance would be greatly appreciated. 🙂

    nlstrev
    Participant

    For the Reply after going to inbox, you want to see who all the recipients are who received the message.

    In buddypress plugin, it default is set to max 5, so 4 recipients including you equals 5. On 5 or more recipients it simply states “Conversation between 5 recipients.”

    You can use this filter function

    add_filter('bp_get_max_thread_recipients_to_list', 'bp_get_max_thread_recipients_to_list_reply');
    
    function bp_get_max_thread_recipients_to_list_reply(){
        return 999;
    } 

    It is set to 999, meaning after 999 recipients it will display “Conversation between 999 recipients.” otherwise it will work and autolink to up to 999 recipients.

    Change the default return value to whatever number you would like.

    Ticket should be closed now.

    26 Enterprises LLC
    Participant

    So I am using Woffice with BuddyPress. I understand the only way to show posts on the dashboard widget that a user is a member of is by making that group “public”. I understand this can not be done with making the group “hidden” or “private”.

    I am looking for all posts from groups that a user is a member of to show on the dashboard so he can at a glance see what pertains to him.

    I am a District Manager for an Automotive Parts Distributor and have built a website for my dealerships to share information with them. For example, most users will have access to a role specific group (sales representative, sales manager, parts manager, general manager, etc) (private group) this is where I will share training information, videos, specials, pricing discounts, etc.

    Managers will have access to a 2nd group, their dealership group (hidden group) this is where I will share objectives, goals, etc specific to their dealership.

    I want this information to show on the dashboard so they do not have to click into their group as well as wiki articles, posts, etc.

    The Site Wide Activity widget gets this done if they are public groups. Only issue is I do not want sales representatives to see what is being said in the sales managers group (pricing, discounts, etc). And I don’t want and am not allowed to let other dealerships see each other’s numbers.

    Any help would be appreciated.

    Bradley

    fschoenfeldt
    Participant

    Dear BuddyPress community,

    my company is using your plugin for our companies intranet.

    We’ve got a development Server running and updated the Woffice Intranet Theme to the latest 2.8.3.1 Version.

    Once I updated the theme, BuddyPress somehow also changed the settings from the legacy buddypress template package to the Nouveau one. I tried changing this setting back to legacy, without luck. It applies the settings in the settings panel but the actual page doesn’t change. I tried clearing (or entirely disabling) the cache multiple times.

    Information regarding our system (because it’s an intranet, I can’t provide a link):
    We’re using WordPress v5.2.1, with the Intranet Theme Woffice (v2.7.2.1 -> v2.8.3.1). The Theme comes with BuddyPress 4.3.0. We didn’t change anything in BuddyPress.

    Also, we got Unyson 2.7.22.

    Any thoughts?

    Thanks in advance,
    Frederik

    fschoenfeldt
    Participant

    Dear BuddyPress community,

    my company is using your plugin for our companies intranet. When a user is logged in, his online status is shown in a sidebar. Then, when the user logs out, the online status should disappear immediately. But it the online status doesn’t change for quite some time.

    Is there a filter function, or a setting in BuddyPress that controls the behaviour of the “online Users display”?

    Information regarding our system (because it’s an intranet, I can’t provide a link):
    We’re using WordPress v5.2.1, with the Intranet Theme Woffice (v2.7.2.1). The Theme comes with BuddyPress 4.3.0. We didn’t change anything in BuddyPress.

    Also, we got Unyson 2.7.22.

    Any thoughts?

    Thanks in advance,
    Frederik

    #306311

    In reply to: Email Activation

    shanebp
    Moderator

    > Should the .php file have <?php ?> tags in it?

    Yes – please read the documentation: https://codex.buddypress.org/themes/bp-custom-php/

    #306309
    ryuunosukemiyosaki
    Participant

    Hello,

    I’ve been looking for a way to change BuddyPress slug URLs but I couldn’t find a source that is up to date. Could you please help me out about this?

    URLs that I want to change:

    /profile/
    /profile/edit/group/1/
    /profile/change-avatar/
    /profile/change-cover-image/
    /activity/
    /activity/mentions/
    /activity/favorites/
    /submissions/
    /submissions/publish/
    /submissions/pending/
    /submissions/drafts/
    /achievements/
    /achievements/earned/
    /achievements/unearned/
    /achievements/?achievements_page=2
    /settings/
    /settings/notifications/
    /settings/profile/
    /settings/data/
    /leaderboard/
    /leaderboard/today
    /leaderboard/week
    /leaderboard/month

    Thank you so much,
    Anil

    #306306

    In reply to: Bp Better Messages

    shanebp
    Moderator

    These are the support forums for BuddyPress.

    You have a much better chance of getting a reply by using the support forums for BP Better Messages:
    https://www.wordplus.org/forums/

    #306303

    Hi,

    Thank you for your reply.
    There’s no option available on WP Multisite sub websites Screen Options to select BuddyPress. That’s the problem. Only the BuddyPress options are available on root site. Buddypress plugin enabled as network wide.

    Screenshot: https://prnt.sc/nxvz6a

    Currently I’m using an alternative way (Reg. expressions) to redirect properly. But still there’s an issue.
    Thank you!

Viewing 25 results - 4,601 through 4,625 (of 69,040 total)
Skip to toolbar