Gallery error message

Posted in: Newspaper
Post count: 29

Keeps coming up, usually when looking at an archive page.

Notice: Undefined index: size in /var/sites/s/sunnyinkabul.com/public_html/wp-content/themes/Newspaper/includes/shortcodes/gallery.php on line 10

Any idea why?

Post count: 7909

Hi,

Please try to replace the code from gallery.php: http://screencast.com/t/4scE9uD6

function td_shortcode_atts_gallery($atts) {
    
    //make medium size thumbnails
    if (isset($atts['size']) and $atts['size'] == 'thumbnail') {
        $atts['size'] = 'medium';
    }
    return $atts;
}

add_filter('shortcode_atts_gallery', 'td_shortcode_atts_gallery');

It will be fixed also in the next update!

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.