Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 9,751 through 9,775 (of 69,015 total)
  • Author
    Search Results
  • #255966
    gerwinb
    Participant

    yes, i do… I’ll try again with an empty buddypress website to see if that is working.

    #255965
    sharmavishal
    Participant

    Use buddypress or peepso

    shanebp
    Moderator
    #255953

    In reply to: change url path menu

    sharmavishal
    Participant

    you would be clicking group in your buddypress profile right? if yes thats the way it would work..main groups directory you can create the navigation in your menu

    doubleF
    Participant

    Ok I had a look on the other extensions, I understand what you mean about the callback functions.

    Is there any other way around ? Because I don’t need a “new extension”, we just need something pretty simple :

    Post created > New Activity > New notification on Buddypress

    Do I need to create a new Bp component for that ?

    The activity item is created, just no notification triggered…

    Thanks for your precious help

    #255942

    In reply to: Profile Fields

    danbp
    Participant

    It’s not a duplicate, but how it works.
    On the left, you have the WP field for “username”, on the right BP’s mandatory field “name”. Both are used for registering a new user. WP’s username field accept only lower case alphanumerics without space. Mostly used to enter a pseudonym. BP’s field accept uppercase and space or even carets, wich allows to enter first and last name for example.

    Note that you’re not obligated to enter a first and last name. If you rename Name to City or Gender, a user must enter a city name or his gender. Eg. username: johnrobertsonquid | city: Los Angeles or username: johnrobertsonquid | gender: male

    But whatever the field may contain, it cannot be removed.

    About xprofile fields:

    User Extended Profiles

    Slava Abakumov
    Moderator

    Yes, I’m sure. Technically it can be done, but some coding will be involved, and that is not a 5 min task. As a starting point you can check this codex page.

    #255939
    danbp
    Participant

    Hi,

    this page is made of list elements and divs. To wrap them into columns, you have to adjust the CSS.
    This can be done by child-theme, where you have to copy
    bp-templates/bp-legacy/buddypress/members/register.php
    to /your-child-theme/bp-legacy/buddypress/members/register.php

    And CSS goes into /your-child/style.css

    How to wrap <div> and <li> is out of the scope of this forum.

    r-a-y
    Keymaster

    @strothi – I’ve split your post into a new topic.

    Regarding your error, I’m guessing it is a problem with the BuddyBoss Reorder Tabs plugin.

    Can you confirm? If not, can you list all your BuddyPress plugins?

    #255930
    danbp
    Participant

    Sorry for you!… When it is so easy to avoid such situation by reading BP’s Codex…

    BuddyPress Links in WordPress Menus

    Slava Abakumov
    Moderator

    You can use BuddyPress Member Types Generator plugin to create members types.

    Or use BuddyPress Member Types plugin, they have a bit different functionality. The 2nd one seems to have more features.

    Different “Types of feeds” is not easily achievable, only with custom coding.

    Custom login and registration pages – lots of solutions for custom login. Custom registration page is limited to BuddyPress, there is no plugin, that can do anything with it. You will need to dive into templating and custom styles.

    #255927
    Slava Abakumov
    Moderator

    Unfortunately, it’s currently impossible to do that via an option or a plugin.
    So far, image *must* be uploaded for BuddyPress to place it in a proper place and display.

    But if you are tech-savvy, you could try to filter bp_attachments_get_attachment() function, that is used to get the URL to a cover image. And build a custom form, where users insert URL, and you save them into usermeta table and then retrieve and display.

    Slava Abakumov
    Moderator

    The reason that it doesn’t work – it requires to be placed on a user BuddyPress profile page.
    It uses bp_displayed_user_domain() function to generate the link, as there is no user on your custom page (it’s not BuddyPress or even WordPress) – bp_get_members_component_link function produces nothing.

    There is no easy fix. You will need to create that link manually by retrieving somehow user domain (link to profile) of a desired user.

    #255925

    In reply to: Private Messaging AJAX

    Slava Abakumov
    Moderator

    So far BuddyPress doesn’t support this out of the box and I don’t know such plugins.
    But this is a good feature request, and I’m pretty sure that this will implemented eventually. Because we already have similar thing on Activity directory page.

    Here is the ticket that I created with this request.

    PS Update to the latest BuddyPress 2.6.1.1 🙂

    Slava Abakumov
    Moderator

    I personally use Hueman theme on my site, and it has an ability to redefine or clean the footer credits: http://take.ms/8y2CP
    And it looks good with BuddyPress, and has interesting settings for WordPress itself.

    #255817
    pulidomate
    Participant

    Finally i have done this:

    function activation_email( $subject, $message, $user_id, $user_email, $key ) {
        $teacher = bp_get_profile_field_data('field=Teacher&user_id='.$user_id);
        $activate_url = esc_url( $activate_url );
        $message = sprintf( __( "Thanks for registering! To complete the activation of this account please click the following link:\n\n%1\$s\n\n", 'buddypress' ), $activate_url );
        $user_email = $teacher;
    
        wp_mail( $user_email, $subject, $message );
    }
    add_action( 'bp_core_sent_user_validation_email', 'activation_email', 10, 5 );
    doubleF
    Participant

    Hello,

    Yes, several times and I’ve also looked the function within the Buddypress’s plugin and it seems to work out as a notification ID is returned.

    That’s why I’m out of clue on that one…

    danbp
    Participant

    Hi,

    have you read this ?

    bp_notifications_add_notification

    #255770
    Paul Wong-Gibbs
    Keymaster

    The content property is run through KSES and the permitted HTML tags are set here: https://buddypress.trac.wordpress.org/browser/trunk/src/bp-activity/bp-activity-filters.php#L206

    You COULD unhook this function from the filter (see: lines 16-25, same file) but I would not recommend it, because other people will use this to inject malicious markup. Instead, consider using the bp_activity_filter_kses filter and whitelist a few extra HTML funtions that you need (i.e. just the paragraph tag).

    #255764
    maxgx
    Participant

    ok, moved on a clone, disabled all plugins and tested it throughout and i found it out:

    new activity notifications do work ok, what is missing are notifications of comments to activity – actually, it’s not a problem with my setup, it’s really a (very much needed, badly missed, imho) missing feature

    luckily, BP Live Notification does seem to do the job, but it’s yet another addition to the ever growing list of plugins needed for covering up the lack of (quite obvious, always imho) features…

    you could mark this as resolved, i guess (tho it’s not quite, really)

    #255761
    danbp
    Participant

    Hi @pulidomate,

    By default, it’s not possible. But you can try to code it.

    That said, registering users is reserved to site admin or editors. So far i understand your question, you’re talking about group admins (admins = teachers)and member types (teachers and students).

    Registration and user management is a core thing for users with WP roles/capabilities. It is not the same thing as Teachers and Students within BuddyPress.

    Group admins are, by default, users with a WP role of subscribers. Same thing for students. BP distinguish those users inside a group only, but for WP they still emain as “subscribers”.

    May be you can use a plugin, but i haven’t tested it. Try:
    https://wordpress.org/plugins/new-user-approve/

    #255677
    danbp
    Participant

    @maxgx, please don’t double post.
    I answered you here: https://buddypress.org/support/topic/auto-refresh-load-newest-not-working/

    Topic closed.

    #255664
    dsantoschabrier
    Participant

    To make this happen. Do I Have to modify the bp-activity-functions.php or buddypress.js?

    #255660
    rezza72
    Participant

    HI
    i use SocialChef theme .

    all active plugins :
    bbPress
    BuddyPress
    ITRO Popup Plugin
    TablePress
    TablePress Extension: Responsive Tables
    Telegram for WordPress
    TinyMCE Advanced
    Wise Chat
    WooCommerce
    WP Statistics
    WR PageBuilder

    ekruep
    Participant

    Okay, just in case anyone else is wanting to do this, my developer helped me implement a solution!!

    Here is the function he wrote and placed in the bp-custom.php file.

    function add_front_menu_item( ) {
    
        global $bp;
    
        $args = array(
            'name' => __('Home', 'buddypress'),
            'slug' => 'front',
            'default_subnav_slug' => 'public',
            'position' => 10,
            'show_for_displayed_user' => false,
            'screen_function' => 'bp_custom_user_nav_item_screen',
            'item_css_id' => 'custom-class'
        );
    
        bp_core_new_nav_item($args);
    

    I hope this helps someone else save time and frustration!

Viewing 25 results - 9,751 through 9,775 (of 69,015 total)
Skip to toolbar