• I am running the plugin Easy Slider.
    http://wordpress.org/extend/plugins/easy-slider/

    It creates a slideshow based on the image in the page titled EasySlider. Which contains:

    <ul>
    	<li><a href="#" target="_blank"><img title="banner" src="slide_1.jpg" alt="banner" width="960" height="305" /></a></li>
    	<li><a href="#" target="_blank"><img title="banner" src="slide_2.jpg" alt="banner" width="960" height="305" /></a></li>
    	<li><a href="#" target="_blank"><img title="banner" src="slide_3.jpg" alt="banner" width="960" height="305" /></a></li>
    </ul>

    I have the sharethis plugin
    http://wordpress.org/extend/plugins/share-this/

    and an automatic signature setup in my functions.php

    /* ADD SIGNATURE */
    add_filter('the_content','add_signature');
    function add_signature($text) {
    
    global $post;
    
    if($post->post_type == 'post') $text .= '<div class="signature">
    <img src="destiny-sig.png" alt="signature" />
    </div>';
    
    return $text;
    }

    Both of which place the sharing buttons, and the image signature at the bottom of every page and post. which is the way I want.

    However, since the EasySlider is technically a post, how can I tell WP to not use sharethis and the signature on this ONE post (Easy Slider). It throws off the last slide in the slideshow because the signature and sharing buttons are there instead of the final image.

Viewing 1 replies (of 1 total)
  • sharethissupport

    (@sharethissupport)

    Hi,
    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:
    http://www.bloggermint.com/2010/07/hide-widgets-pages-categories-posts-wordpress/
    Hope this helps.
    Regards,
    SharethisSupport

Viewing 1 replies (of 1 total)
  • The topic ‘how to exclude sharethis and signature from showing up in easyslider slideshow’ is closed to new replies.