Viewing 4 replies - 1 through 4 (of 4 total)
  • I have the exact same problem.

    I’m using a custom taxonomy which is linked to multiple post types (both pages and products for instance) and I wish to display that custom taxonomy in the slideshow. I wish to display both products and posts that are tagged with this taxonomy.

    Is this possible?

    Plugin Contributor Ron Rennick

    (@wpmuguru)

    If you are not coders you would want to look for a slider that supports multiple post types at the same time.

    I did solve this problem, but it required me to edit the plugin code a bit, which I am always hesitant to do.

    What I did was that I opened the admin.php file and added a line of code after:

    foreach ( $post_types as $post_type ) { ?>
    
    							<option style="padding-right:10px;" value="<?php echo esc_attr( $post_type ); ?>" <?php selected( esc_attr( $post_type ), genesis_get_responsive_slider_option( 'post_type' ) ); ?>><?php echo esc_attr( $post_type ); ?></option><?php } ?>

    The code I added was:

    <option style="padding-right:10px;" value="any" <?php selected( 'any', genesis_get_responsive_slider_option( 'post_type' ) ); ?>>any</option>

    This allows you to select all post types for the genesis responsive slider query.

    JoakimB, I know it’s almost been a year since you figured out this solution, but does it still work for you? I’m trying to do this exact thing and while the “any” option does show up in the dropdown menu, when I choose it and save the settings, my slider doesn’t stops showing anything at all.

    Alternatively, I can’t manage to find another slider plugin that supports multiple types of content.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Displaying Multiple Types of Content’ is closed to new replies.