Replies
Hi,
Thank you for using the plugin.You are most probably logged in as site admin. Please try logging as a non admin user and check.
Regards
Brajesh- Brajesh Singh on April 20, 2020 at 11:48 am in reply to: [Resolved] RECENT VISITOR PLUGIN ERRORS #28999
Also, Please open your own topic in future. That will help us serve you better.
Regards
Brajesh - Brajesh Singh on April 20, 2020 at 11:47 am in reply to: [Resolved] RECENT VISITOR PLUGIN ERRORS #28998
Hi,
We do record all visits, including duplicate visits.1. You can use visitors_get_profile_visit_count($user_id) to see/display total visits
2. You can visitors_get_recent_visitors() It returns an array of objects with following property for each objectid
user_id
visitor_id
visit_count
visit_timeThe property visit_count contains how many times the visitor has visited the user.
Please feel free to adapt.
Since the UI for this is not available, If you are not comfortable with code, You may use our cusotmization service.
Regards
Brajesh - Brajesh Singh on April 20, 2020 at 11:13 am in reply to: Member Types Pro: 'Exclude Members with this type' from directory not working #28996This reply has been marked as private.
- Brajesh Singh on April 20, 2020 at 11:08 am in reply to: [Resolved] Slug BuddyBlog in the activities e home profile. #28994
Thank you.
Your feedback is appreciated.Regards
Brajesh - Brajesh Singh on April 20, 2020 at 11:07 am in reply to: Any known sliders/slideshows that work with MediaPress specific galleries? #28993
Hi Sam,
We do have at least 2 sliders for MediaPress.Since @ravisharma developed these sliders for us and he is busy with something else currently, we will need 3-4 days to put it on github.
Please check back in 3-4 days.
Thank you
Brajesh - Brajesh Singh on April 19, 2020 at 5:42 pm in reply to: [Resolved] Slug BuddyBlog in the activities e home profile. #28988
Hi Simone,
You are welcome.I don’t see any serious SEO issue.
It may be a good idea to link to the permalink and we should most probably report and get it in BuddyPress core as an enhancement.Regards
Brajesh Hi Tosin,
try changing the orderadd_action( 'template_redirect', 'stop_heartbeat', 1 ); function stop_heartbeat() { if ( bp_is_activity_component() || bp_is_group_activity() ) { return; } wp_deregister_script( 'heartbeat' ); }That should work.
PS:- It makes heartbeat work on activity directory, user’s own activity page and group’s activity page.
Regards
Brajesh- Brajesh Singh on April 19, 2020 at 5:18 pm in reply to: Member Types Pro: 'Exclude Members with this type' from directory not working #28986
Hi Simon,
Thank you for the patience.I have checked your site and I do not see the issue. I don’t see the business users listed in directory.
Please check it again.Thank you
Brajesh Hi Granmeh,
If you are using BP Force profile photo plugin, you may use the following code/** * Skip settings component from force profile. */ add_filter( 'bp_force_profile_photo_skip', function ( $skip ) { if ( bp_is_current_component( 'settings' ) ) { $skip = true; } return $skip; } );Regards
Brajesh