Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 2,756 total)
  • @henrywright

    Moderator

    You should be able to create the page yourself. If you go to Pages in wp-admin you can use the Add New button like you would do if you were creating a standard page.

    @henrywright

    Moderator

    Try using bp_parse_args(). Here is an example:

    
    function my_filter_after_has_activities_parse_args( $r ) {
        $r['per_page'] = 3;
        // Do something else here
        return $r;
    }
    add_filter( 'bp_after_has_activities_parse_args', 'my_filter_after_has_activities_parse_args' );
    

    See https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/

    @henrywright

    Moderator

    BuddyPress is easily extended. If you look through the code you will see a lot of action and filter hooks. Also the template hierarchy will let you override core templates. It is a very developer friendly and support here in the forum is the best 😀

    @henrywright

    Moderator

    You will need to ask the author of your theme and plugins.

    @henrywright

    Moderator

    If you aren’t modifying the templates then check your theme or plugins in case they are modifying them. It is likely that something has changed and that change has introduced the issue.

    @henrywright

    Moderator

    The script may use certain IDs or classes in the DOM and if you have modified the template then the AJAX request may not work as expected. Try again using a fresh copy of BuddyPress to see if the problem continues to happen

    @henrywright

    Moderator

    Trac is the best place to report bugs. See https://buddypress.trac.wordpress.org/

    You can use the same username and password you use here in the forum.

    @henrywright

    Moderator

    @henrywright

    Moderator

    You can report issues on Trac at https://buddypress.trac.wordpress.org/

    The username and password you use here should work.

    @henrywright

    Moderator

    BuddyPress can’t do this out of the box but it is very developer friendly. If you are comfortable with PHP and JavaScript you could extend to add this custom functionality.

    @henrywright

    Moderator

    Check out the “Displaying Extended Profile Fields on Member Profiles” article

    Displaying Extended Profile Fields on Member Profiles

    @henrywright

    Moderator

    You can access that data with get_user_meta(). For example:

    $address = get_user_meta( bp_displayed_user_id(), 'address', true );
    echo $address;

    @henrywright

    Moderator

    BuddyPress members are the same as WordPress users as far as the database is concerned. They are all saved in the wp_users table.

    @henrywright

    Moderator

    See here for information on the border-radius CSS property: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius

    @henrywright

    Moderator

    You can add CSS to your child theme’s style.css file. That is the usual place to add your custom declarations.

    @henrywright

    Moderator

    I can’t find bp_activity_setup_nav in the current codebase. Hooking to bp_init instead should work.

    bp_core_remove_nav_item() will delete an item from the primary navigation of the specified component.

    bp_core_remove_subnav_item() will delete an item from the secondary navigation of the specified component.

    Hope this helps.

    @henrywright

    Moderator

    Good to see you’ve made something available to help with GDPR @buddyboss.

    @henrywright

    Moderator

    The “Articles” tab isn’t something that BuddyPress adds. If the count isn’t compatible with Nouveau then I suggest you let the plugin author know at https://wordpress.org/support/plugin/social-articles

    @henrywright

    Moderator

    Hi

    Try asking your question over at bbPress. They handle forum-related questions.

    @henrywright

    Moderator

    Further to what @djpaul said, make sure you have DISABLE_WP_CRON set to false in your wp-config.php file.

    define( 'DISABLE_WP_CRON', false );

    @henrywright

    Moderator

    I’m not sure that specific field will be added to core but I’m sure a plugin will be easy to build

    @henrywright

    Moderator

    Glad to see you again on here @mcpeanut. Do share your BuddyPress website and story behind it when it’s ready!

    @henrywright

    Moderator

    You might have caching going on. Try asking your host if they are caching your CSS assets.

    @henrywright

    Moderator

    You should add custom CSS to your theme’s style.css document.

    For example wp-content/themes/your-child-theme/style.css

    @henrywright

    Moderator

    The “Name” field isn’t unique. You can have 2 users with the same name if we are talking about that field.

Viewing 25 replies - 1 through 25 (of 2,756 total)
Skip to toolbar