{"id":27482,"date":"2014-01-26T19:17:25","date_gmt":"2014-01-26T19:17:25","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/buddypress-who-clicked-at-my-profile\/"},"modified":"2016-07-25T18:23:07","modified_gmt":"2016-07-25T18:23:07","slug":"buddypress-who-clicked-at-my-profile","status":"publish","type":"plugin","link":"https:\/\/af.wordpress.org\/plugins\/buddypress-who-clicked-at-my-profile\/","author":12351279,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"3.6","stable_tag":"trunk","tested":"4.7.33","requires":"4.2","requires_php":"","requires_plugins":"","header_name":"Buddypress - Who clicked at my Profile?","header_author":"Florian Schiessl","header_description":"","assets_banners_color":"cc9e79","last_updated":"2016-07-25 18:23:07","external_support_url":"","external_repository_url":"","donate_link":"http:\/\/ifs-net.de\/donate.php","header_plugin_uri":"http:\/\/ifs-net.de","header_author_uri":"http:\/\/ifs-net.de","rating":4.9,"author_block_rating":0,"active_installs":40,"downloads":15234,"num_ratings":15,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":"2","5":"13"},"assets_icons":[],"assets_banners":{"banner-772x250.png":{"filename":"banner-772x250.png","revision":"852774","resolution":"772x250","location":"assets"}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["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"],"block_files":[],"assets_screenshots":{"screenshot-1.jpg":{"filename":"screenshot-1.jpg","revision":"864960","resolution":"1","location":"assets"}},"screenshots":{"1":"screenshot-1.jpg"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[204,435,904],"plugin_category":[43,44],"plugin_contributors":[],"plugin_business_model":[],"class_list":["post-27482","plugin","type-plugin","status-publish","hentry","plugin_tags-buddypress","plugin_tags-profile","plugin_tags-social-network","plugin_category-customization","plugin_category-discussion-and-community","plugin_committers-quan_flo"],"banners":{"banner":"https:\/\/ps.w.org\/buddypress-who-clicked-at-my-profile\/assets\/banner-772x250.png?rev=852774","banner_2x":false,"banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/buddypress-who-clicked-at-my-profile_cc9e79.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/buddypress-who-clicked-at-my-profile\/assets\/screenshot-1.jpg?rev=864960","caption":"screenshot-1.jpg"}],"raw_content":"<!--section=description-->\n<p><strong>Do you want to increase your buddypress user's interaction?<\/strong><\/p>\n\n<p>Tell them if other visited their profile!<\/p>\n\n<p>This plugin will notify your members about other members that visited their profile via buddypress notification system.\nThis plugin also provides a widget that shows last profile visitors for the logged in user.\nThis plugin provides a shortcode that can be used anywhere to display the logged in user's visitors<\/p>\n\n<p>Shortcode usage:<\/p>\n\n<pre><code>[buddypresswcamp_show_visits]\n<\/code><\/pre>\n\n<p>Use Parameter to show avatars insted of links or configure how many last visitors should be shown.<\/p>\n\n<pre><code>[buddypresswcamp_show_visits showAvatars=1 amount=5]\n<\/code><\/pre>\n\n<p>If you use bbpress &lt; 2.6 please apply the changes described there: https:\/\/bbpress.trac.wordpress.org\/ticket\/2779 to get the notifications working<\/p>\n\n<p><strong>More about me and my plugins<\/strong><\/p>\n\n<p>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.\nBecause not all plugins I'd like to have exist already I wrote some own plugins and I think I'll continue to do so.<\/p>\n\n<p>If you have the scope at forums or social networks my other modules might also be interesting for you. <a href=\"http:\/\/wordpress.org\/plugins\/search.php?q=quan_flo\" title=\"ifs-net \/ quan_flo Wordpress Plugins\">Just take a look at my Wordpress Profile to see all my Plugins.<\/a> 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.<\/p>\n\n<!--section=installation-->\n<ol>\n<li>Upload the files to the <code>\/wp-content\/plugins\/buddypress-who-clicked-at-my-profile\/<\/code> directory or install through WordPress directly.<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>If you use bbpress &lt; 2.6 please apply the changes described there: https:\/\/bbpress.trac.wordpress.org\/ticket\/2779 to get the notifications working<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt>This plugin does not work?<\/dt>\n<dd><p>This will only work with standard buddypress profile.\nIf you use another profile plugin make sure that the action \"bp_before_member_header\" is called.\nThis plugin will hook into this action and do it's magic stuff...<\/p><\/dd>\n<dt>You want to increase of change the number of visits that get tracked?<\/dt>\n<dd><p>You want to change the number of visits that should be tracked? Use the 'buddypress_wcamp_quantity' filter.<\/p>\n\n<p>Add the following code to your functions.php<\/p>\n\n<pre><code>add_filter('buddypress_wcamp_quantity','my_buddypress_wcamp_quantity');\nfunction my_buddypress_wcamp_quantity() {\n    return 25;\n}\n<\/code><\/pre>\n\n<p>This sets the value of users that get tracked to 25 for example.<\/p><\/dd>\n<dt>Exclude some users from being tracked?<\/dt>\n<dd><p>Some users should not be tracked? No problem!<\/p>\n\n<p>Add the following code to your functions.php<\/p>\n\n<pre><code>add_filter('buddypress_wcamp_excludeUsers','my_buddypress_wcamp_excludeUsers');\nfunction my_buddypress_wcamp_excludeUsers() {\n    return array(1,5,8,23); \/\/ exclude (as example) Users with ID 1, 5, 8 and 23\n}\n<\/code><\/pre>\n\n<p>This sets the value of users that get tracked to 50 for example.<\/p><\/dd>\n<dt>You do not want to use the buddypress notification system for \"who clicked at my profile\" notifications?<\/dt>\n<dd><p>Add the following code to your functions.php to disable the usage of buddypress notifications system for this plugin<\/p>\n\n<pre><code>add_filter('buddypress_wcamp_usenotifications','my_buddypress_wcamp_usenotifications');\nfunction my_buddypress_wcamp_usenotifications() { \n    return false; \n}\n<\/code><\/pre><\/dd>\n<dt>You have questions?<\/dt>\n<dd><p>Please use the plugins support forum<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>3.6<\/h4>\n\n<ul>\n<li>improved buddypress compatibility<\/li>\n<\/ul>\n\n<h4>3.5<\/h4>\n\n<ul>\n<li>Added shortcode support - now you can include last visitors into every wordpress page! See plugin website for shortcode usage<\/li>\n<\/ul>\n\n<h4>3.4<\/h4>\n\n<ul>\n<li>Added filter for excluding specified users from being tracked, see FAQ for usage<\/li>\n<li>amount of tracked visits now per default set to 25 (use a filter to change this)<\/li>\n<li>widget that shows last visits has new options, aount of visits that should be displayed can be configured now.<\/li>\n<\/ul>\n\n<h4>3.3<\/h4>\n\n<ul>\n<li>code optimation and removing deprecated widget structure (thanks to mcpalls)<\/li>\n<\/ul>\n\n<h4>3.2<\/h4>\n\n<ul>\n<li>Adding update notifications with version hints<\/li>\n<\/ul>\n\n<h4>3.1<\/h4>\n\n<ul>\n<li>The usage of buddypress notification system can now be controlled via filter, see FAQ section for more details<\/li>\n<\/ul>\n\n<h4>3.0<\/h4>\n\n<ul>\n<li>New major release with new functionality<\/li>\n<li>Uses buddypress notification system to tell your users that others have visited their profile<\/li>\n<li>Some technical changes (timestamp of each visit tracked now)<\/li>\n<li>If you use bbpress &lt; 2.6 please apply the changes described there: https:\/\/bbpress.trac.wordpress.org\/ticket\/2779 to get the notifications working <\/li>\n<li>Removed some php notices<\/li>\n<\/ul>\n\n<h4>2.0<\/h4>\n\n<ul>\n<li>Included filter \"buddypress_wcamp_quantity\" that lets you control the number of visits that should be tracked for each user. To use this filter see readme.txt file<\/li>\n<\/ul>\n\n<h4>1.9<\/h4>\n\n<ul>\n<li>increased number of shown profile visits to 15 (need some customization? change the value of the $numberOfVisitsShown variable insider buddypress-who-.clicked-at-my-profile.php for your needs)<\/li>\n<li>fixed minor bug (own profile might be shown as visitor, no more existend users that visited a profile before they got deleted might have caused little display errors in widget<\/li>\n<\/ul>\n\n<h4>1.8<\/h4>\n\n<ul>\n<li>fixed html bug<\/li>\n<\/ul>\n\n<h4>1.7<\/h4>\n\n<ul>\n<li>fixed minor bug (php notice removed)<\/li>\n<\/ul>\n\n<h4>1.6<\/h4>\n\n<ul>\n<li>fixed minor bug<\/li>\n<\/ul>\n\n<h4>1.5<\/h4>\n\n<ul>\n<li>new option for widget: You can now choose if avatars or only links to visiting users should be shown inside each widget<\/li>\n<\/ul>\n\n<h4>1.4<\/h4>\n\n<ul>\n<li>minor bugfixes (removed PHP Warning)<\/li>\n<\/ul>\n\n<h4>1.3<\/h4>\n\n<ul>\n<li>fixed bug (wrong username if user name contained spaces, using native buddypress userlink method now to create userlink)<\/li>\n<\/ul>\n\n<h4>1.2<\/h4>\n\n<ul>\n<li>minor bugfixes (removed PHP Warning)<\/li>\n<\/ul>\n\n<h4>1.1<\/h4>\n\n<ul>\n<li>minor bugfixes<\/li>\n<\/ul>\n\n<h4>1.0<\/h4>\n\n<ul>\n<li>First version.<\/li>\n<\/ul>","raw_excerpt":"This plugin will notify your members about other members that visited their profile. This plugin also provides a widget that shows last profile visito &hellip;","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/27482","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=27482"}],"author":[{"embeddable":true,"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/quan_flo"}],"wp:attachment":[{"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=27482"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=27482"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=27482"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=27482"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=27482"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/af.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=27482"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}