Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 26 through 50 (of 3,820 total)
  • @shanebp

    Moderator

    > Usernames are in the main WP profile
    They are also in the BP profile via xprofile data

    >my tech guy had to go into the database

    Did he search the whole database for that user name?
    I’ll bet it is in the xprofile table.

    @shanebp

    Moderator

    I cannot speak to conflicts / issues re memberpress.
    You should be able to edit profile fields for tyler.miller.
    Go to wp-admin > users > tyler.miller and select ‘extended profile’.
    That should show his profile fields and one of them probably has the old user name.

    @shanebp

    Moderator

    You need to be specific about the trouble you are having.

    @shanebp

    Moderator

    You’re using BuddyBoss.
    You need to send your issue to them.
    These are the forums for BuddyPress.

    @shanebp

    Moderator

    Did you try using this filter?

    if ( apply_filters( 'bp_bypass_check_for_moderation', false, $user_id, $title, $content ) ) {
    	return true;
    }

    Found in buddypress\bp-core\bp-core-moderation.php

    @shanebp

    Moderator

    Learn how to use var_dump – it shows the output on the screen.

    You are using the BP Profile Search plugin, correct?
    If so, ask the creators of that plugin.
    If not, then you are using BuddyBoss and you should ask them.

    @shanebp

    Moderator

    Change this:
    global $current_user;
    to :

    global $current_user;
    var_dump( $field_ids );

    And then post the dump here.

    @shanebp

    Moderator

    Try:

    function hide_field_19_wrap ( $field_ids ) {
        global $current_user;
    
        if ( user_can( $current_user, "subscriber" ) ) { 
            unset( $field_ids[19] );
        }
      
      return $field_ids;
    }
    add_filter ('bps_before_search_form_filter' , 'hide_field_19_wrap', 10, 1);
    

    @shanebp

    Moderator

    Use WP Debug to get the actual error – not just the message.

    @shanebp

    Moderator

    https://duckduckgo.com/?q=bp_has_members

    ‘type’
    (int) Sort order.
    Accepts ‘active’, ‘random’, ‘newest’, ‘popular’, ‘online’, ‘alphabetical’.
    Default: ‘active’.

    @shanebp

    Moderator

    is a bbPress shortcode. You need to have bbPress installed.

    @shanebp

    Moderator

    Thanks for pointing this out. It has been referred to the site admins.

    @shanebp

    Moderator

    @shanebp

    Moderator

    The error comes from this plugin: stax-buddy-builder
    Not from BuddyPress.
    You need to contact the creators of this plugin: stax-buddy-builder

    @shanebp

    Moderator

    Yours is the first report of such an error.
    The cause can only be guessed at – unless you can share the exact fatal error which you can get by trying on debugging.

    @shanebp

    Moderator

    A litespeed style sheet is not being loaded because it is loaded from http – instead of https.
    You can see the error by opening your browser’s inspection tool and then the console.
    This is the error:
    Mixed Content: The page at 'https://www.moviemakingbay.com/mmtb/new-registration-page/' was loaded over HTTPS, but requested an insecure stylesheet 'http://www.moviemakingbay.com/mmtb/wp-content/litespeed/css/5810e95e71643d10ac36591f4668ddc7.css?ver=1a34c'. This request has been blocked; the content must be served over HTTPS.

    Your issue is not related to BuddyPress.

    @shanebp

    Moderator

    What is wp-custom.php ?
    Did you mean bp-custom.php ? If so, the latest BP release loads bp-custom.php without issues.
    Try turning on debugging and then check your error log for relevant info about your issue.

    @shanebp

    Moderator

    Please show the full error.

    @shanebp

    Moderator

    Did you check to see if that file exists?
    You may need to reinstall BP.
    Or perhaps change the php version to 7.4

    @shanebp

    Moderator

    If you are using a separate page, just check for the page slug.

    @shanebp

    Moderator

    An easier approach is to simply overload the activities loop template in your theme or child-theme.
    In that template, add whatever code you need gather the ids you want to use.
    for example, untested:

    $ids = an array of activity ids that you want to include. 
    $ids = a csv string from imploding $ids
    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&include=$ids' ) ) : ?>

    @shanebp

    Moderator

    If you create a ‘last_activity’ entry in the activities table, the user should appear in the members list.
    For example, once you have the user id:
    bp_update_user_last_activity( $user_id, bp_core_current_time() );

    @shanebp

    Moderator

    These are the forums for BuddyPress.
    Ask BuddyBoss or the creators of the Invite plugin .

    @shanebp

    Moderator

    I cannot duplicate this issue.
    Perhaps you could turn on debugging and try again, then check your error log and post any relevant errors here.

    @shanebp

    Moderator

    These are the support forums for BuddyPress – contact BuddyBoss.

Viewing 25 replies - 26 through 50 (of 3,820 total)
Skip to toolbar