Hi @jamesacosby
Our intention is not to “harass”. Sorry that it has felt this way to you.
Shareaholic is mostly a free plugin and a lot of work goes into it — a review is all we ask for to keep us motivated.
You can disable the notice in any of three ways:
1. Clicking “dismiss” within the notice
2. Shareaholic -> Plugin Settings -> Within “Advanced” Section check “Disable Review Notice”
3. With code
/**
* Disable Shareaholic Review Notice
*
*/
function shareaholic_disable_review_notice() {
remove_action('admin_notices', array('ShareaholicAdmin', 'display_review_notice'));
}
add_action('admin_init', 'shareaholic_disable_review_notice', 11);