Hello!! After taking some relaxing and deserved holidays Im back to work with WSI plugin. On this occasion the release is to fix some minor but not less important bugs and to change the way the plugin and MyCRED / Cubepoints work.
Before version 2.1.3 points were given as soon as the user clicked on the invitation link, which makes really easier to nasty users get a lot of points for free and we don’t want that. Now, by using cookies we detect the user that clicked on the link and once he finish the registration on our site the points will be delivered to the inviter.
So if you are one of the happy users of the plugin that use Cubepoints or MyCred I encourage you to update the plugin as soon as possible.
Also another user reported problem with the evil Internet Explorer. We added some js to fix the issue for the users that still put in risk their machines using IE 🙂
Another important change is that we added filters to the messages, to let users change them programatically. Check out the filters page to check all available filters
For example let’s say that you have a custom post called “movies” and if someone share your site on the movies section you want a whole different message. Now you can use filters to do something like:
add_filter('wsi_html_message', 'my_movies_html_message',10,1); function my_movies_html_message($html_message){ if( is_singular('movies')) return 'Please check this great movies site on %%SITEURL%%'; return $html_message; }
Regards
Leave a Reply