Professional Social Sharing Buttons, Icons & Related Posts – Shareaholic
Boost Audience Engagement with Award Winning Speed Optimized Social Tools: Share Buttons, Related Posts, Monetization & Google Analytics.
Next Milestone 30K
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 9.7.13
- Last Updated
- Nov 06, 2024
- Requires WP
- 3.7+
- Tested Up To
- 6.7.4
- PHP Version
- 5.3 or higher
- Author
- Shareaholic
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4.4
- Reviews
- 1,049
- Support Threads
- 1
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about Professional Social Sharing Buttons, Icons & Related Posts – Shareaholic
Shareaholic is not displaying for me. Why, and what should I try?
Something on your own personal device/browser/connection is likely filtering web functionality like major social buttons. The usual cause for this uncommon issue is 3rd party browser add-on software that blocks ads and optionally filters out major social buttons. For example, some security apps and Internet connections have an option to filter social buttons. Usually a social filter option is disabled by default, but if you find that some software is inappropriately filtering Shareaholic, please let us know.
Where can I find a detailed FAQ?
Please see here: Shareaholic Helpdesk
Where can I get detailed Usage & Installation instructions?
Please see here: Usage & Installation Instructions
Can I disable the redirect screen after activation?
When Shareaholic is activated it redirects to its welcome screen. If you want to prevent this you can use the function below:
/**
* Disable Shareaholic activation redirect
*
* Use this if you use the TGM Plugin Activation to install plugins
*/
function prefix_shareaholic_disable_welcome_redirect() {
delete_transient( '_shr_activation_redirect' );
}
* 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);
How can I programmatically disable Shareaholic In-Page Apps?
You can disable Shareaholic In-Page Apps using a filter (PHP code) that you can add to a "functionality" plugin such as the Code Snippets plugin.
Disable Shareaholic In-Page Apps in specific categories, for example:
function shareaholic_disable_categories() {
// Examples of in_category usage: https://codex.wordpress.org/Function_Reference/in_category
if ( in_category( array( 'my_category_1_slug', 'my_category_2_slug' ) ) ) {
return true;
}
}
add_filter( 'shareaholic_disable_share_buttons', 'shareaholic_disable_categories' );
add_filter( 'shareaholic_disable_recommendations', 'shareaholic_disable_categories' );
Disable Shareaholic In-Page Apps on a custom post type, for example:
function shareaholic_disable_customposts() {
if ( 'my_custom_post_type' == get_post_type() ) {
return true;
}
}
add_filter( 'shareaholic_disable_share_buttons', 'shareaholic_disable_customposts' );
add_filter( 'shareaholic_disable_recommendations', 'shareaholic_disable_customposts' );
For all other apps, use "Targeting Rules" to disable apps from specific sections of your website.
How can I change the thumbnail image size for Shareaholic Related Posts?
The default Shareaholic thumbnail width is 640px with dynamic height and no cropping. The thumbnail size can be specified programmatically by adding add_image_size('shareaholic-thumbnail', $width, $height, true); to your theme's functions.php file with appropriate width and height variables.
Each time you change Shareaholic's thumbnail dimensions like this, you will probably want to have WordPress regenerate appropriate sized thumbnails for all of your images. We highly recommend the Regenerate Thumbnails plugin for this purpose.