-
Mr. Vibe replied to the topic Profile Menu Edit in the forum How-to & Troubleshooting 4 years, 8 months ago
This is a javascript issue not connected to BuddyPress at all.
-
Mr. Vibe replied to the topic Hide admin profile in the forum How-to & Troubleshooting 4 years, 8 months ago
Yes, place it in child theme – functions.php
-
Mr. Vibe replied to the topic Hide admin profile in the forum How-to & Troubleshooting 4 years, 8 months ago
You can try this, lets say your admin user IDs are 1 and 23
add_filter('bp_activity_get_where_conditions',function($where){
if(!current_user_can('manage_options')){
$where[]='user_id NOT IN (1,23)';
}
return $where;
}); -
Mr. Vibe replied to the topic Paid Membership Pro plugin not compatible with Buddypress? in the forum How-to & Troubleshooting 4 years, 8 months ago
BuddyPress is so much better than PMPRo, I have worked extensively on both Pmpro and BuddyPress. BuddyPress is hands down the best code written, better than WooCommerce and even WordPress itself. I litreally mean there is no competition here. I can show you code examples from BuddyPress vs other plugins to convincingly prove this as well.
If you…[Read more]
-
Mr. Vibe replied to the topic RESOLVED-Restrict Activity Posting To Admin in the forum How-to & Troubleshooting 4 years, 8 months ago
You can try this :
add_action('bp_before_group_activity_post_form',function(){
add_filter('bp_get_template_part',function($template){
if(!bp_group_is_admin()){
return false;
}
return $template;
});
}); -
Mr. Vibe replied to the topic BuddyPress 5.0.0 is ready! in the forum Miscellaneous 5 years, 1 month ago
Been waiting for this day ! Thank you.
-
Mr. Vibe replied to the topic Sidebar not appearing all where it is needed in the forum How-to & Troubleshooting 9 years ago
Hi Agbams,
Please create a topic in our dedicated support site here : http://vibethemes.com/documentation/wplms/ -
Mr. Vibe replied to the topic BuddyPress 2.4.0 – Pietro in the forum Miscellaneous 9 years ago
Really interesting features.
Great job once again. -
Mr. Vibe replied to the topic BP Messages Star fx for themes based on bp-deafult in the forum How-to & Troubleshooting 9 years, 5 months ago
Updated :
add_action('wp_ajax_messages_star','bp_course_messages_star');
[Read more]
function bp_course_messages_star(){
if(function_exists('bp_messages_star_set_action') && is_numeric($_POST['message_id']) && in_array($_POST['star_status'],array('star','unstar'))){
echo bp_messages_star_set_action(array(
'action' => $_POST['star_status'],… -
Mr. Vibe started the topic BP Messages Star fx for themes based on bp-deafult in the forum How-to & Troubleshooting 9 years, 5 months ago
Love the BP messages star functionality. It works perfectly on Twenty fifteen/fourteen but on themes based on BP Default this functionality does not appear.
It seems we need to add a small snippet to make it work on BP Default theme.
[Read more]
add_action('wp_ajax_messages_star','bp_course_messages_star');
function bp_course_messages_star(){… -
Mr. Vibe started the topic BP Messages Star fx for themes based on bp-deafult in the forum How-to & Troubleshooting 9 years, 5 months ago
Love the BP messages star functionality. It works perfectly on Twenty fifteen/fourteen but on themes based on BP Default this functioanlity does not appear. BP Messages
@wpthemes
Active 4 years, 8 months ago