Facebook Like Button Not Showing?

Simple Social Button uses Facebook’s Like button plugin. Facebook’s like plugin uses tracking methods in its like plugin, which is used to generate the like button. If your browser’s tracking prevention is set to strict, then the like button won’t show. If your browser’s tracking prevention is set to Basic/Moderate, then you will see the […]

How To Display Total Share Counts With SSB?

Would you like to display the total share counts of your post, page or any specific content in your social share buttons to show your audience that how many times your content is shared on different platforms? Simple Social Buttons provide social counts so everyone can easily check how many times a post or a […]

Changing Buttons Style On Different Positions

If you are interested to change the styles of the button for different positions you can do this by applying this simple filter. For example, you want to change the style of sidebar buttons other than inline position, add_filter( ‘ssb_position_style’, ‘ssb_position_style_cb’, 10, 4 ); /** * To change the styling of social share buttons on […]

Custom Click To Tweet URL Hook (PRO)

You can change the URL of click to tweet button by using the filter. You can change the URL for a specific post or you can change URL global. Filter: ssb_ctt_url Example Usage:  function custom_click_to_url( $url ){ if( 35 == get_the_ID( ) ){ $url =’http://wpbrigade.com’; } return $url; } add_filter(‘ssb_ctt_url’,’custom_click_to_url’);

Hook For Custom Open Graph

You can use the simple filter to change the default open graph tags according to your choice. All you need to add the simple filter inside your Functions.php file.   Filter: ssb_og_tag Usage Example:  function custom_open_graph( $tags ){ $title = get_the_title( ); $tags = ”; return $tags; } add_filter(‘ssb_og_tag’,’custom_open_graph’);

How to Enable/Disable Open Graphs Tags in SSB?

You can control the open graph tags on simple social buttons and can show the Open Graph Tags from other SEO Plugins such as Yoast, RankMath, All In One SEO. If you enable the Open Graph Tags Toggle, It will show the default Open Graph Tags for Facebook and Twitter. But if you want to […]

Click To Tweet Settings

You can play with Click To Tweet settings by navigating to Simple Social Buttons>Settings>Click To Tweet Design: In the design section, you can select the different themes from 5 available themes. Simple, Round, Dark, Side-Line, Own Style Hide Tweet Button: Here you can hide or display the Tweet button that is being displayed on the […]

Click To Tweet Gutenberg Block

With Simple Social Buttons PRO you can add the click to the tweet button inside your blog posts and pages using Click to Tweet Gutenberg block. You can insert the block anywhere inside your post. Blocks Settings Theme:  There are five different themes to style your click to tweet box, Round, Simple, Dark, Side-Line, Own […]

Managing Social Networks on Specific Positions

You can use these simple filters to hide and show specific social networks on specific positions. We have developed filters for all positions such as InLine, Sidebar, On Media, Fly-In, and Popup. For the positioning of buttons at certain location/s, we have several filters to be used to change the order of buttons and show […]

How To Manage Social Networks on Media?

You can use this simple filter to hide and show specific social networks on specific positions. In the given example we are showing only the Pinterest network on media. Example Usage function on_media_buttons ( $networks ){ unset( $networks[‘fbshare’] ); unset( $networks[‘twitter’] ); unset( $networks[‘reddit’] ); unset( $networks[‘viber’] ); unset( $networks[‘fblike’] ); unset( $networks[‘linkedin’] ); // […]

How To Enable Click To Tweet Using ShortCode?

With Simple Social Buttons PRO you can add the click to the tweet button inside your blog posts and pages. All you need to do the paste the Shortcode inside your post and it will start working. Parameters: Theme= There are 5 themes for, twitter-dark, twitter-round, twitter-simple, twitter-side-line, twitter-own-style Front = The text is written […]

Enable Twitter Counts With Twitcount

Twitter count tracking requires the following steps: Step 1: Click here to visit twitcount.com Step 2: Click the Button “Give Me My Twitter Count Back” on their website to create an account. If you see a prompt to customize your button, ignore to click paste code. Step 3: After creating an account, click the “Account and Settings” tab, […]