Hi Tosin,
Depending on your theme and template pack, you may need to make some template override.Which template pack are you using?
Regards
BrajeshHi Tosin,
Please put this in your bp-custom.php/** * Removes the Updates & new members fro activity options dropdown. */ add_filter( 'bp_get_activity_show_filters_options', function ( $filters ) { unset( $filters['activity_update'] ); unset( $filters['new_member'] ); return $filters; } );
Let me know if it works or not?
Regards
BrajeshI was wondering if its possible to add a new filter called (Trending) which will filter the activity based on posts with the most comments like this plugin https://wordpress.org/plugins/bp-whats-hot/
What I simply mean if you can make turn this plugin (https://wordpress.org/plugins/bp-whats-hot/) into a dropdown filter option rather than a navigation tab menu.
I removed the activity filter tab menu through a template override in child theme but now I want the trending feature be a filter dropdown option
Hi Tosin,
Thank you for the confirmation.I am sorry, I am not familiar with that plugin.
You may want to approach the author for help.Regards
Brajesh
You must be logged in to reply to this topic.