Forum Replies Created
-
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.
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/
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 😀
You will need to ask the author of your theme and plugins.
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.
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
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.
You can report issues on Trac at https://buddypress.trac.wordpress.org/
The username and password you use here should work.
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.
Check out the “Displaying Extended Profile Fields on Member Profiles” article
You can access that data with
get_user_meta()
. For example:$address = get_user_meta( bp_displayed_user_id(), 'address', true ); echo $address;
BuddyPress members are the same as WordPress users as far as the database is concerned. They are all saved in the
wp_users
table.See here for information on the
border-radius
CSS property: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radiusYou can add CSS to your child theme’s style.css file. That is the usual place to add your custom declarations.
I can’t find
bp_activity_setup_nav
in the current codebase. Hooking tobp_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.
Good to see you’ve made something available to help with GDPR @buddyboss.
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
Hi
Try asking your question over at bbPress. They handle forum-related questions.
Further to what @djpaul said, make sure you have
DISABLE_WP_CRON
set tofalse
in your wp-config.php file.define( 'DISABLE_WP_CRON', false );
I’m not sure that specific field will be added to core but I’m sure a plugin will be easy to build
Glad to see you again on here @mcpeanut. Do share your BuddyPress website and story behind it when it’s ready!
You might have caching going on. Try asking your host if they are caching your CSS assets.
You should add custom CSS to your theme’s style.css document.
For example wp-content/themes/your-child-theme/style.css
The “Name” field isn’t unique. You can have 2 users with the same name if we are talking about that field.