Forum Replies Created
-
> 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.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.You need to be specific about the trouble you are having.
You’re using BuddyBoss.
You need to send your issue to them.
These are the forums for BuddyPress.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.phpLearn 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.Change this:
global $current_user;
to :global $current_user; var_dump( $field_ids );And then post the dump here.
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);Use WP Debug to get the actual error – not just the message.
https://duckduckgo.com/?q=bp_has_members
‘type’
(int) Sort order.
Accepts ‘active’, ‘random’, ‘newest’, ‘popular’, ‘online’, ‘alphabetical’.
Default: ‘active’.is a bbPress shortcode. You need to have bbPress installed.Thanks for pointing this out. It has been referred to the site admins.
Use the BP Group Extension API.
The error comes from this plugin: stax-buddy-builder
Not from BuddyPress.
You need to contact the creators of this plugin: stax-buddy-builderYours 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.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.
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.Please show the full error.
Did you check to see if that file exists?
You may need to reinstall BP.
Or perhaps change the php version to 7.4If you are using a separate page, just check for the page slug.
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' ) ) : ?>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() );These are the forums for BuddyPress.
Ask BuddyBoss or the creators of the Invite plugin .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.These are the support forums for BuddyPress – contact BuddyBoss.