This plugin will notify your members about other members that visited their profile. This plugin also provides a widget that shows last profile visito …
Do you want to increase your buddypress user’s interaction?
Tell them if other visited their profile!
This plugin will notify your members about other members that visited their profile via buddypress notification system.
This plugin also provides a widget that shows last profile visitors for the logged in user.
This plugin provides a shortcode that can be used anywhere to display the logged in user’s visitors
Shortcode usage:
[buddypresswcamp_show_visits]
Use Parameter to show avatars insted of links or configure how many last visitors should be shown.
[buddypresswcamp_show_visits showAvatars=1 amount=5]
If you use bbpress < 2.6 please apply the changes described there: https://bbpress.trac.wordpress.org/ticket/2779 to get the notifications working
More about me and my plugins
Since the year 1999 I do administration, customizing and programming for several forums, communities and social networks. In the year 2013 I switched from another PHP framework to WordPress.
Because not all plugins I’d like to have exist already I wrote some own plugins and I think I’ll continue to do so.
If you have the scope at forums or social networks my other modules might also be interesting for you. Just take a look at my WordPress Profile to see all my Plugins. Use them and if my work helps you to save time, earn money or just makes you happy feel free to donate – Thanks. The donation link can be found at the right sidebar next to this text.
/wp-content/plugins/buddypress-who-clicked-at-my-profile/
directory or install through WordPress directly.This will only work with standard buddypress profile.
If you use another profile plugin make sure that the action “bp_before_member_header” is called.
This plugin will hook into this action and do it’s magic stuff…
You want to change the number of visits that should be tracked? Use the ‘buddypress_wcamp_quantity’ filter.
Add the following code to your functions.php
add_filter('buddypress_wcamp_quantity','my_buddypress_wcamp_quantity'); function my_buddypress_wcamp_quantity() { return 25; }
This sets the value of users that get tracked to 25 for example.
Some users should not be tracked? No problem!
Add the following code to your functions.php
add_filter('buddypress_wcamp_excludeUsers','my_buddypress_wcamp_excludeUsers'); function my_buddypress_wcamp_excludeUsers() { return array(1,5,8,23); // exclude (as example) Users with ID 1, 5, 8 and 23 }
This sets the value of users that get tracked to 50 for example.
Add the following code to your functions.php to disable the usage of buddypress notifications system for this plugin
add_filter('buddypress_wcamp_usenotifications','my_buddypress_wcamp_usenotifications'); function my_buddypress_wcamp_usenotifications() { return false; }
Please use the plugins support forum