Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 551 through 575 (of 7,560 total)
  • Author
    Search Results
  • #302345
    shanebp
    Moderator

    BuddyPress does not provide forums.
    Try using bbPress or maybe ask on their support forums.

    #302216
    shanebp
    Moderator

    Did you try asking on the bbPress support forums ?

    #302215
    shemakeswebsites
    Participant

    Hello everyone. I’m using the following snippet that will display the first name and last initial for users in buddypress. However, in bbpress it has no effect. Any ideas on how I could edit this to get it to work for bbpress? I’m so sad that something like this isn’t a default option.

    $changeLastInitial = new changeLastInitial;
    add_filter('bp_displayed_user_fullname', array(
        $changeLastInitial,
        'last_initial'
    ), 7, 1);
    add_filter('bp_get_member_name', array(
        $changeLastInitial,
        'last_initial'
    ), 7, 1);
    add_filter('bp_get_the_profile_field_value', array(
        $changeLastInitial,
        'last_initial_xprofle'
    ), 7, 3);
    add_filter('bp_core_get_user_displayname', array(
        $changeLastInitial,
        'bp_core_get_user_displayname'
    ), 7, 2);
    
    class changeLastInitial
    {
        function bp_core_get_user_displayname($name, $id)
        {
            $name = $this->last_initial($name);
            return $name;
        }
        function last_initial_xprofle($value, $type, $id)
        {
            if ($id == 1) {
                $value = $this->last_initial($value);
            }
            return $value;
        }
        function last_initial($name)
        {
            $name_a = explode(' ', $name);
            // if there is at least two parts to the name
            if (count($name_a) == 2) {
                // replace the last part of the name with the first letter of the last part
                $name_a[count($name_a) - 1] = substr($name_a[count($name_a) - 1], 0, 1);
                // put it all back together
                $name  = implode(' ', $name_a).".";
            }
            return $name;
        }
    }
    
    Michael Van Patten
    Participant

    Looking for the right solution…

    We would like to create a social community site like facebook where members have profile pages and can post videos, pictures and such. Create and join groups and get push notifications for chosen content.

    1ST PAGE – ENROLLMENT & INTRO VIDEO
    1. Three minute intro video
    2. MEMBERSHIP ENROLLMENT BUTTON:
    Most important this will be a paid membership site with a pay to enter button. Emails provided in this sign up should integrate with mailchimp

    2ND PAGE- POST ENROLMENT
    Once they’ve entered we would like a landing page that has
    1. A embedded live stream video player
    2. A randomized video playlist player
    3. A grid avatar list of our core contributors below these two players
    4. Tabs up top to navigate to members profiles, groups and more

    we welcome your suggestions. Thank you all so much in advance

    1. Which version of WordPress are you running? WordPress 5.0.2
    2. Did you install WordPress as a directory or subdomain install? Directory installation
    3. If a directory install, is it in root or in a subdirectory? Root
    4. Did you upgrade from a previous version of WordPress? If so, from which version? No Fresh Install 2 days ago
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. N/A
    6. Which version of BP are you running? 4.1.0
    7. Did you upgraded from a previous version of BP? If so, from which version? NO
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? BuddyPress, Google Analytics for WordPress by MonsterInsights, Jetpack by WordPress.com, OptinMonster API, WPForms Lite
    9. Are you using a standard WordPress theme or customized theme? Tonic
    10. Which theme do you use ? Tonic
    11. Have you modified the core files in any way? NO
    12. Do you have any custom functions in bp-custom.php? NO
    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? NO
    14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress
    15. Which company provides your hosting? Bluehost
    16. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache
    17. Which BP Theme are you using? Tonic
    18. Have you overloaded any BuddyPress template files. NO
    19. Any other site customisations that might have a bearing on the issue? NO

    #302021
    Leandro
    Participant

    Hi,

    I am working in a multisite installation and I feel that is occuring a strange behaviour between buddpress, bbpress and groups.

    My installation has two websites, the root and a second where I am planning run the community, however as I would like to share users avatar between the entire network I activated the buddypress in multisite mode.

    The problem is that when I use the code to define to buddypress to run in community, my option to assign forum to groups disappear from the group management are in the network panel. However if I create a group, a forum is created normally in the subsite (bbpress is activated in subsite only).

    I would like to know if this is the normal behaviour from the plugin? I feel that if I set buddypress to run in a subsite in the network mode, it should still displaying the select forum metabox but grabbing information from the bbpress installation in the subsite.

    #283058
    badusername
    Participant

    I was able to use phpmyadmin and go into the database – table: wp_users and change the user_nicename to whatever I wanted. That worked fine.

    It looks like regular users who signed up already had nice @names but I think mine were bad in part because I set them up before I set up bbpress and buddypress and it was just trying to use my email address. Plus, setting up multiple accounts at different times to test things.

    #283044
    shanebp
    Moderator

    So does buddypress usually use the regular wordpress login user name? If a site just uses bbpress and buddypress – people set up an acccount just through wordpress and bbpress/buddypress use that?

    Yes and yes.

    #283043
    badusername
    Participant

    As far as I can tell people on my site start the process of creating an account with membermouse. So, yeah, I will try creating a new account again and see what I can figure out. I’ve made a bunch of test accounts for myself – so maybe I used the same email or something. I need clean up and delete a bunch of those anyway now.

    So does buddypress usually use the regular wordpress login user name? If a site just uses bbpress and buddypress – people set up an acccount just through wordpress and bbpress/buddypress use that?

    #283042
    shanebp
    Moderator

    Yikes, afaik, that is not done by BuddyPress.
    It looks like you have a plugin or other code that allows emails as user names.
    My guess re the ‘2-2-‘ bits is that more than one user was created with that email.
    ( Try a test registration using a unique email )
    WP dictates that login names have to be unique.

    BuddyPress uses the login names for @ mentions.
    So does bbPress – for example, this forum where your @ mention name is: badusername

    So, again, afaik, it will not be reasonably possible to simplify the @ mention names.
    With considerable and complicated customization, it might be possible.

    #283041
    badusername
    Participant

    Thanks shanebp!

    I don’t know why mine are so long. But I’m also using other plugins – membermouse, wp courseware and bbpress. Maybe they are doing it?

    How, where or at what point are they usually created in buddy press? Because the ones for my accounts were not anything I created myself. And what do they usually look like? Are they something simple that a person chooses?

    For example, for one test account I set up mine is: @trisha2766__21gmail-com-2-2 – which looks like a variation of my email address. Another one is @xiwang-2-2-2-2-2 – no idea where that came from.

    But they are neither one practical for people to type to mention someone.

    #283035
    Venutius
    Moderator

    That’s probably one for the bbPress forums then – https://bbpress.org/forums/ within each group with a forum there should be a forum menu item that links to the group forum. I’d first check there are no plugin conflicts by deactivating all other plugins except for BuddyPress and bbPress, if you still don’t get the menu item within the group then try a default theme such as 2016. BuddyPress forums are provided by bbPress, so that’s the best place to go for support.

    https://bbpress.org/forums/

    #283030
    brewsi
    Participant

    I am trying to create forums for groups in buddypress using bbpress.

    I am really struggling to understand how they integrate. I have read lots of documentation and been through numerous support.

    My users can create a group and a a forum for that group.
    That forum then goes onto the forum page under a parent forum of group forums.

    Bit on the group’s page I can’t get the forums to show which is frustrating as when the user completes the group the forum isn’t viaible.

    Can someone talk me through the set up or point me in the way of comprehensive instructions?

    Thanks

    #283026

    In reply to: Do not get activities

    eigodeasobo
    Participant

    Yes, When Icreate a topic and create a reply in bbPress it does not create an item in the BuddyPress activity stream.

    Is it better to assign these two post IDs to “$args” and call new as “new WP_Query ($args)”?

    #283015

    In reply to: Do not get activities

    shanebp
    Moderator

    If I post “bbp_create_topic”

    Do you mean, create a topic or create a reply in bbPress?
    And it does not create an item in the BuddyPress activity stream?

    btw- these are the BuddyPress forums.
    The bbPress forums are here and are probably a better place to ask your question.

    #282874
    leandrorm
    Participant

    Hi i am tryng tocreate a custom visibility option at the moment bbpress gives these options:
    $this->visibility_levels = array(
    ‘public’ => array(
    ‘id’ => ‘public’,
    ‘label’ => _x( ‘Everyone’, ‘Visibility level setting’, ‘buddypress’ )
    ),
    ‘adminsonly’ => array(
    ‘id’ => ‘adminsonly’,
    ‘label’ => _x( ‘Only Me’, ‘Visibility level setting’, ‘buddypress’ )
    ),
    ‘loggedin’ => array(
    ‘id’ => ‘loggedin’,
    ‘label’ => _x( ‘All Members’, ‘Visibility level setting’, ‘buddypress’ )
    )
    );
    if ( bp_is_active( ‘friends’ ) ) {
    $this->visibility_levels[‘friends’] = array(
    ‘id’ => ‘friends’,
    ‘label’ => _x( ‘My Friends’, ‘Visibility level setting’, ‘buddypress’ )
    );
    }

    is it possible to create one only for group members ?

    that only group members can acces that info

    thx for the help 😀

    #282857
    Info Ekonomi
    Participant

    This happens to BBPress too, I now run Buddy and BBpress, this problem occurs that no confirmation email sent to the new registered users. I figured a temporary workaround (the bad one) that after a user registered they need to click the Forget Password to get the confirmation email.

    So what’s the fix actually this is really bad situation, I have number of new registered users that can’t confirm their emails because of this problem.

    #282845
    dmninjas
    Participant

    @meriping check out the below links.. it help you fix. Regards -DM Ninjas

    https://premium.wpmudev.org/forums/topic/how-can-i-change-bbpress-fot-size

    #282843
    shanebp
    Moderator

    Did you try asking on the support forum for bbPress ?

    Most browsers have an inspection tool that gives you info about css and files. Right click on the page area and select ‘inspect’.

    #282842
    meriping
    Participant

    Hi guys, I’m trying to change the font size i forums as it is remarkably smaller than the font in the rest of the site. I’m using child and bbpress .I think my biggest problem is that I’m not able to pinpoint the correct .css file. Could someone give me a hint?
    Thank you buddys.

    eigodeasobo
    Participant

    I see.
    I have asked a question below.
    https://bbpress.org/forums/topic/how-to-filter-buddypress-activity/
    I’m looking forward to hearing from you.
    Thanks.

    shanebp
    Moderator

    You could look in the database for the names of those activity types.
    You could ask on the support forum for bbPress.

    #282776
    bensmith916
    Participant

    Oh ok that makes sense. Fortunately I posted to both forums, but so far no responses to the one on bbPress. Do you have any suggestions for creating a split page debate platform like this?

    #282766
    shanebp
    Moderator

    BuddyPress is not a forum plugin.
    BuddyPress uses bbPress for forums.
    You may want to ask your question on the bbPress forums.

    luvlifewlee
    Participant

    Thhe submit/update/post button on profile or group activity stream is missing. Actually, it’s just invisable. You can still click the AREA of the button (guess and click lol) but before I launch membership, itll need to be seen.

    It makes me think its style related. I used Customify Theme, and am running a number of buddy press plugins, as well as bbpress. Ive deactivated any activity stream related plugins, and also deactivated and deleted the activity privacy plugin.

    Without deactivating… all my plugins. (again) Is there a few plugins I should watch for? some styling magaic I can do?

    mattybakes01
    Participant

    Hi Guys,

    I have ticked Allow registered members to upload avatars but the option does not appear in the profile itself.

    Allow registered members to upload cover images does show.

    I have disabled all plugins to see if something was causing the issue but that hasn’t worked.
    I have removed all custom CSS, custom functions. Anything I have added I have removed but no joy.

    Am i missing something?

    The rest of Buddypress works fine just no option to change the profile picture/avatar!

    Wordpress version: 4.9.8
    Themeis Divi Version: 3.18.3
    Buddypress version: 4.1.0
    BBPress Version: 2.5.14

Viewing 25 results - 551 through 575 (of 7,560 total)
Skip to toolbar