Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter joshuamauldin

    (@joshuamauldin)

    Ok. Here was my attempt at solving:

    I found this line in gallery-to-slideshow-class.php:
    $output = "\n\t<div class=\"gallery-to-slideshow-wrapper\">\n\t\t";

    And right before it, I added:

    $post_thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium' );
    $post_thumb_url = $post_thumb['0'];

    Note: you can change out medium for any thumbnail size.

    I then found this line:
    $featured_id = get_post_thumbnail_id( $post->ID );

    And right before that, I added:
    $output .= "<li><a><img src=\"$post_thumb_url\" /></a></li>";

    You may have a more elegant solution, but there’s my stab.

    Plugin Author Matt

    (@sksmatt)

    Hi Joshuamauldin,

    Adding a new filter hook on next version to modify this behavior.

    Kind Regards!

    It seems like you’ve added the filters but I am not sure how to use them… How would I go about displaying the featured image and removing the header?

    Thank you,
    Anton

    I found how to do it in another post. Here it is in case somebody else needs this info:

    add_filter( 'mv_gallery_to_slideshow_header', 'my_custom_gallery_header' );
    function my_custom_gallery_header( $output ) {
        return '';
    }
    add_filter( 'mv_gallery_to_slideshow_featured_id', 'my_custom_gallery_featured' );
    function my_custom_gallery_featured( $output ) {
        return '';
    }
    Plugin Author Matt

    (@sksmatt)

    Thanks vasilescu_anton!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Gallery to Slideshow] Slideshow doesn't display the_post_thumbnail’ is closed to new replies.