sharethissupport
Forum Replies Created
-
Hi,
Can you please forward me the link of your wordpress blog to which you’ve added sharethis Google plus one button so that I can check the issue?
You can contact us here:
forums.sharethis.comRegards,
SharethisSupportForum: Hacks
In reply to: how to exclude sharethis and signature from showing up in easyslider slideshowHi,
Displaying sharethis conditionally is not possible with the automatic installation however this can still be done by setting the plugin to not automatically place the buttons and then adding the span tags manually to your templates.These go on the page where you want the buttons to appear and they also determine what kind of button appears as well as what URL and title it shares. You will have to put ‘script tags’ in your Main index template(index.php) and ‘span tags in a condition block’ in Single Post template(single.php).
Here is the basic span for just the ShareThis button: <span class=”st_sharethis” st_title='<?php the_title(); ?>’ st_url='<?php the_permalink(); ?>’ displayText=”ShareThis”></span>
You can change the class of the span to determine the button that appears. For example class=””st_twitter”” will make a twitter icon and class=””st_email_vcount”” will make a email vertical counter button.
However, adding code in index.php and single.php will not display sharethis buttons on the blog page but will show buttons whenever an individual post is opened.
If you wish to display sharethis buttons on the blog page ,you will have to put ‘span tags’ in (loop.php).In loop.php,
1. put span tags just above the line “<div class=”entry-utility”>” to display buttons at the end of each post on the blog page.<span class=’st_twitter’ ></span>
<span class=’st_facebook’ ></span>
<span class=’st_yahoo’ ></span>
<span class=’st_gbuzz’ ></span>
<span class=’st_email’ ></span>
<span class=’st_sharethis’ ></span>
<div class=”entry-utility”>2. to display buttons at the beginning of each post on the blog page,put span tags just below the lines
<h2 class=”entry-title”>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></h2>
<div class=”entry-meta”>
<?php twentyten_posted_on(); ?>
</div><!– .entry-meta –>
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>For Example:You will have to put a sharethis <span> tags in a conditional block with condition:
if (<?php the_permalink(); ?> is equal to ‘Title of page to which you wish to add sharethis buttons’)
{
//Sharethis <span> tags
}You should be able to add sharethis buttons to some posts (not all the posts) but for that you will need to use conditional blocks.
The link explains various conditions:
https://www.bloggermint.com/2010/07/hide-widgets-pages-categories-posts-wordpress/
Hope this helps.
Regards,
SharethisSupportHi,
Sharethis plugin adds buttons at the bottom of each post.
In order to add sharethis buttons to top of each post, you’ll need to add the buttons manually.
Here are the steps:Sharethis script and span tags go on the page where you want the buttons to appear and they also determine what kind of button appears as well as what URL and title it shares. You will have to put ‘script tags’ in your Main index template(index.php) and ‘span tags ‘ in Single Post template(single.php).
Here is the basic span for just the ShareThis button: <span class=””st_sharethis”” st_title='<?php the_title(); ?>’ st_url='<?php the_permalink(); ?>’ displayText=””ShareThis””></span>
You can change the class of the span to determine the button that appears. For example class=””st_twitter”” will make a twitter icon and class=””st_email_vcount”” will make a email vertical counter button.
However, adding code in index.php and single.php will not display sharethis buttons on the blog page but will show buttons whenever an individual post is opened.
If you wish to display sharethis buttons on the blog page ,you will have to put ‘span tags’ in (loop.php).In loop.php,
1. put span tags just above the line “<div class=”entry-utility”>” to display buttons at the end of each post on the blog page.<span class=’st_twitter’ ></span>
<span class=’st_facebook’ ></span>
<span class=’st_yahoo’ ></span>
<span class=’st_gbuzz’ ></span>
<span class=’st_email’ ></span>
<span class=’st_sharethis’ ></span>
<div class=”entry-utility”>2. to display buttons at the beginning of each post on the blog page,put span tags just below the lines
<h2 class=”entry-title”>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></h2>
<div class=”entry-meta”>
<?php twentyten_posted_on(); ?>
</div><!– .entry-meta –>
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>Hope this helps.
In case of any issues, please feel free to ask us here: forums.sharethis.com .
Regards,
NeelamHi,
1) Sharethis plugin adds buttons at the bottom of each post.
In order to add sharethis buttons to top of each post, you’ll need to add the buttons manually.
Here are the steps:Sharethis script and span tags go on the page where you want the buttons to appear and they also determine what kind of button appears as well as what URL and title it shares. You will have to put ‘script tags’ in your Main index template(index.php) and ‘span tags ‘ in Single Post template(single.php).
Here is the basic span for just the ShareThis button: <span class=””st_sharethis”” st_title='<?php the_title(); ?>’ st_url='<?php the_permalink(); ?>’ displayText=””ShareThis””></span>
You can change the class of the span to determine the button that appears. For example class=””st_twitter”” will make a twitter icon and class=””st_email_vcount”” will make a email vertical counter button.
However, adding code in index.php and single.php will not display sharethis buttons on the blog page but will show buttons whenever an individual post is opened.
If you wish to display sharethis buttons on the blog page ,you will have to put ‘span tags’ in (loop.php).In loop.php,
1. put span tags just above the line “<div class=”entry-utility”>” to display buttons at the end of each post on the blog page.<span class=’st_twitter’ ></span>
<span class=’st_facebook’ ></span>
<span class=’st_yahoo’ ></span>
<span class=’st_gbuzz’ ></span>
<span class=’st_email’ ></span>
<span class=’st_sharethis’ ></span>
<div class=”entry-utility”>2) to display buttons at the beginning of each post on the blog page,put span tags just below the lines
<h2 class=”entry-title”>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></h2>
<div class=”entry-meta”>
<?php twentyten_posted_on(); ?>
</div><!– .entry-meta –>
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>2. You can customize the tweet by using the span tag property st_via :
to add the reply i.e. @ , in span tag of twitter button like this:
<span class=”st_twitter” st_via=’username’></span>3. It’s not mandatory to add GA id for each domain from here:
https://sharethis.com/account/domains
In order to integrate sharethis with GA , you’ll need to follow the steps explained here:
https://help.sharethis.com/analytics/google-analyticsHope this helps.
In case of any issues, please feel free to ask us here: forums.sharethis.com .
Regards,
NeelamForum: Plugins
In reply to: [SEO Ultimate] [Plugin: SEO Ultimate] Can you relocate the SHARE THIS link?Hi,
Sharethis plugin adds buttons at the bottom of each post.
In order to add sharethis buttons to top of each post, you’ll need to add the buttons manually.
Here are the steps:Sharethis script and span tags go on the page where you want the buttons to appear and they also determine what kind of button appears as well as what URL and title it shares. You will have to put ‘script tags’ in your Main index template(index.php) and ‘span tags ‘ in Single Post template(single.php).
Here is the basic span for just the ShareThis button: <span class=””st_sharethis”” st_title='<?php the_title(); ?>’ st_url='<?php the_permalink(); ?>’ displayText=””ShareThis””></span>
You can change the class of the span to determine the button that appears. For example class=””st_twitter”” will make a twitter icon and class=””st_email_vcount”” will make a email vertical counter button.
However, adding code in index.php and single.php will not display sharethis buttons on the blog page but will show buttons whenever an individual post is opened.
If you wish to display sharethis buttons on the blog page ,you will have to put ‘span tags’ in (loop.php).In loop.php,
1. put span tags just above the line “<div class=”entry-utility”>” to display buttons at the end of each post on the blog page.<span class=’st_twitter’ ></span>
<span class=’st_facebook’ ></span>
<span class=’st_yahoo’ ></span>
<span class=’st_gbuzz’ ></span>
<span class=’st_email’ ></span>
<span class=’st_sharethis’ ></span>
<div class=”entry-utility”>2. to display buttons at the beginning of each post on the blog page,put span tags just below the lines
<h2 class=”entry-title”>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></h2>
<div class=”entry-meta”>
<?php twentyten_posted_on(); ?>
</div><!– .entry-meta –>
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>Hope this helps.
In case of any issues, please feel free to ask us here: forums.sharethis.com .
Regards,
NeelamForum: Fixing WordPress
In reply to: Unwanted outlined box in blog postHi,
It seems to be some issue with sharethis fblike button on blogger and wordpress blog.
Our dev team is working diligently to fix the issue .
Will be fixed soon.Sorry for the inconvenience.
Regards,
Sharethissupport