• Here’s where I’m at (The Fun Times Guide):

    WP 3.5

    Themes
    – Genesis Framework 1.8.2
    – Lifestyle Child Theme 2.0.2
    Plugins
    – WordPress MU Sitewide Tags Pages 0.4.2
    – Genesis Responsive Slider 0.9.2

    After digging through these forums (I’m not a wiz with PHP), I added this code functions.php of my child theme to make SWT post show on the index page categories:

    // Sitewide tags thumbnail function
    function my_swt_thumb_filter( $thumb, $args, $post ) {
            if( function_exists( 'sitewide_tags_thumbnail_link' ) )
                    $thumb = sitewide_tags_thumbnail_link( $thumb, $post->ID ); 
    
            return $thumb;
    }
    add_filter( 'genesis_pre_get_image', 'my_swt_thumb_filter', 10, 3 );

    All appears to work well there. Except on the Genesis Slider the image URLs are broke – producing this HTML code:

    <img src="<img width=" 110"="" height="110" class="attachment-thumbnail" alt="roof-gutters"> "" alt="4 Tips for Getting Your Roof Gutters Ready for Spring Snowmelt" />

    Of course that’s not correct HTML –

    Is that being produced by SWT or the slider? Can anyone direct me to the fix? If I pull just a local category (a category at the main blog that does NOT use SWT for content) the pictures work fine. But if I pull from a SWT category across the network – that’s what I get.

    Help is greatly appreciated.

    Jim

    http://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Ron Rennick

    (@wpmuguru)

    Sorry, you aren’t going to be able to get either of the Genesis sliders to work with SWT posts.

    Both sliders require the image be uploaded to the site where the slider is being shown.

    I cant get my header slider to work. treasurecoastfloridahomes.net
    I have not touched the site on 4 weeks, logged on to check it and no slider
    Can anyone help?

    Plugin Author Ron Rennick

    (@wpmuguru)

    SWT does not copy the images to the tags blog. It just keeps a copy of the thumbnail IMG tag. If you want to use a slider you’ll probably have to come up with a way to copy the actual image.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘SWT not working with Genesis Slider’ is closed to new replies.