by Robin Cornett
5 (68 reviews)
Scriptless Social Sharing
This plugin adds super simple social sharing buttons to your content.
Tested up to WP 6.8 (Current: 6.9)
v3.3.1
Current Version v3.3.1
Updated 6 months ago
Last Update on 19 Jul, 2025
Synced 15 hours ago
Last Synced on
Rank
#1,822
—
No change
Active Installs
10K+
-38.1%
KW Avg Position
83.3
—
No change
Downloads
194.9K
+6 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(68 reviews)
Next Milestone 20K
10K+
20K+
321
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
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
Need 3,963 more installs to reach 20K+
Rank Changes
Current
#1,822
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
68 reviews
Overall
100%
5
67
(99%)
4
1
(1%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| social networks | 53 | — | Tag | 16 hours ago |
| sharing buttons | 83 | — | Tag | 16 hours ago |
| social sharing | 114 | — | Tag | 16 hours ago |
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
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 3.3.1
- Last Updated
- Jul 19, 2025
- Requires WP
- 6.2+
- Tested Up To
- 6.8
- PHP Version
- 7.4 or higher
- Author
- Robin Cornett
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 68
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Scriptless Social Sharing
Scriptless uses SVG files to display the social network icons, or you can revert to using the old FontAwesome webfont. Text only buttons are an option as well. And if you prefer flexbox for styling items in rows instead of table CSS, that's now available on the settings page.
Scriptless Social Sharing currently supports the following social networks: X (Twitter) Facebook Pinterest LinkedIn Reddit
Pocket Telegram Hatena Bookmark SMS Email Bluesky Instagram does not support social sharing buttons.
Yes, using a filter, you can change which SVG icons are used. The plugin provides SVG alternatives for social networks if they are available. Here's an example of how you could switch to using the "square" icons for each network (not all networks have one): add_filter( 'scriptlesssocialsharing_svg_icons', 'rgc_use_square_icons' ); /** * Change the Scriptless Social Sharing SVG icons to use the square versions when available. * * @param $icons * * @return array */ function rgc_use_square_icons( $icons ) { $square_icons = array( 'email' => 'envelope-square', 'facebook' => 'facebook-square', 'pinterest' => 'pinterest-square', 'reddit' => 'reddit-square', 'twitter' => 'twitter-square', 'whatsapp' => 'whatsapp-square', ); return array_merge( $icons, $square_icons ); } Want to use an icon not provided by the plugin? Load your own icons in your theme. As of version 3.2.0, the plugin uses SVG files directly, instead of sprite files. To use your own SVG files instead of the plugin's, add them to your theme, in assets/svg. The plugin will use the theme icons in preference of the plugin.
Buttons can be added in multiple places, or easily add support so you can add buttons anywhere you like. The default button locations are: Before Content: at the beginning of the post/entry, within the post/entry content. After Content: at the end of the post/entry, within the post/entry content. Manual: select this if you are adding buttons with your own code (this ensures that the necessary styles are loaded, and some other housekeeping). To take advantage of the new location options, you must visit the plugin settings page and update your settings. Note: if you have code that removes the original buttons output and adds it back by hand, make sure that you select Manual for the location for each affected content type. The best way to change the button output location is by using a filter. This example changes the locations from using the_content filter (with hook set to false) to using action hooks instead. add_filter( 'scriptlesssocialsharing_locations', 'prefix_change_sss_locations' ); function prefix_change_sss_locations( $locations ) { $locations['before'] = array( 'hook' => 'genesis_before_entry', 'filter' => false, 'priority' => 8, ); $locations['after'] = array( 'hook' => 'loop_end', 'filter' => false, 'priority' => 8, ); return $locations; } If you use the Genesis Framework, there is a setting to tell the plugin to use Genesis hooks instead.
Yes! Introduced in version 3.0, the new sharing block allows you to put sharing buttons anywhere in your content. Add just a few buttons, or rely on the default configuration defined on the settings page.
As of version 2.0.0, you can add sharing buttons directly to your content with a shortcode. You can tweak the output, too. For example, to add the buttons to your content, exactly as you have them set up in your settings, just use this shortcode: [scriptless] If you want to remove the heading, try it this way (or customize the heading by adding text): [scriptless heading=""] Want to only show certain buttons in the shortcode? Add them as a shortcode attribute (separate with commas, no spaces). This will show just the email and facebook buttons: [scriptless buttons="email,facebook"]
Yes. First, you have to tell the plugin that it can, in fact, run, even on the relevant archive page: add_filter( 'scriptlesssocialsharing_can_do_buttons', 'prefix_add_buttons_archives' ); function prefix_add_buttons_archives( $cando ) { if ( is_home() || is_tax() || is_category() ) { $cando = true; } return $cando; } Then you can add the buttons to the individual posts (this example works only with the Genesis Framework): add_action( 'genesis_entry_content', 'prefix_scriptlesssocialsharing_buttons_entry_content', 25 ); function prefix_scriptlesssocialsharing_buttons_entry_content() { if ( ! function_exists( 'scriptlesssocialsharing_do_buttons' ) ) { return; } $is_disabled = get_post_meta( get_the_ID(), '_scriptlesssocialsharing_disable', true ); if ( ! $is_disabled && ! is_singular() ) { echo wp_kses_post( scriptlesssocialsharing_do_buttons() ); } }
Yes, this is intentional. Pinterest really really really wants your posts to have an image. The Pinterest button breaks if there isn't an image. The plugin looks in three places to find one: 1) the custom Pinterest image; 2) the post featured image; and 3) if there is no featured image set, it picks the first image uploaded to that specific post. At this point, if there is still no image, rather than putting up a button which won't work, the plugin won't output a Pinterest button at all on that particular post.
You can add an image for the plugin to use specifically for Pinterest, instead of the post's featured image. This image will be added to the Pinterest sharing button as well as hidden in your content, so that the Pinterest bookmarklet will be able to "see" the image. Scroll down in the post editor sidebar to find where to add the custom image.