• Resolved serpher

    (@serpher)


    Like the title says. When selecting a taxonomy option, the preview says that there’s no images to display. I use Enhanced Media Library plugin to attach taxonomy to images. Maybe that’s the problem, but I don’t know how else should I add taxonomy.
    Re-adding images that are in Media Library already, just to use them with Carousel is counterproductive.

    • This topic was modified 6 years, 4 months ago by serpher.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Vova

    (@gn_themes)

    Hey @serpher,

    try to add the following snippet to the end of the functions.php file of your active theme:

    add_filter( 'su/slides_query', 'filter_su_slides_query', 1, 2 );
    
    function filter_su_slides_query( $query, $args ) {
    	$query['post_status'] = 'any';
    	return $query;
    }
    Thread Starter serpher

    (@serpher)

    @vladimir Thank you so much!!!
    I hope this will help others as well ??

    • This reply was modified 6 years, 4 months ago by serpher.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Carousel doesn’t display taxonomy photos’ is closed to new replies.