Linux 软件免费装
Banner图

Buddypress Who clicked at my Profile?

开发者 Florian Schießl
更新时间 2017年1月19日 00:55
捐献地址: 去捐款
PHP版本: 4.2 及以上
WordPress版本: 4.5.3
版权: GPLv2
版权网址: 版权信息

标签

profile buddypress social network

下载

1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 3.0 3.1 3.3 3.4 3.5 3.6

详情介绍:

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.

安装:

  1. Upload the files to the /wp-content/plugins/buddypress-who-clicked-at-my-profile/ directory or install through WordPress directly.
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. If you use bbpress < 2.6 please apply the changes described there: https://bbpress.trac.wordpress.org/ticket/2779 to get the notifications working

屏幕截图:

  • screenshot-1.jpg

常见问题:

This plugin does not work?

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 increase of change the number of visits that get tracked?

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.

Exclude some users from being tracked?

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.

You do not want to use the buddypress notification system for "who clicked at my profile" notifications?

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; }

You have questions?

Please use the plugins support forum

更新日志:

3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.0 1.9 1.8 1.7 1.6 1.5 1.4 1.3 1.2 1.1 1.0