• I am using the default slider for my page. I want to have more than 4 images in the slider- how do i add that/is it possible.

    I have also installed the I-trans slider- but it does not seem to work on the homepage which is a blog page. Does that only work on a static page- anyway to get a slider like the default slider on a blog page?

    The I-trans slider is not working properly either as adding it to the custom slider shortcode option does not show any images.

    I really like the default slider but need more than 4 images- and changing in the html code has not worked either,
    I would really appreciate some help with this as I am designing the page for a client…

    Thank you in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Better late than never!
    The default slider is limited to 4 slides.
    To place more than 4 slides you need to use itrans Slider.
    To put itrans Slider‘s slides in the header (and not in the post) you need to place the TX code (previously generated in the post, cut and paste…) in the “Other Slider Plugin Shortcode” field and be sure to uncheck “Show Default i-craft Slider“.

    Example: https://www.templatesnext.org/icreate/wp-content/uploads/2015/02/heading-options.png

    To generate slides with itrans Slider go to itrans Slider control panel, on the left sidebar of wordpress CP, and create each slides with the proper button (the process is like a page or product creation).

    same problem here.

    the 3rd party slider generated with tx-shortcode works in home, in single page etc but NOT on the the blog homepage. it always shows the default I-craft slider.

    you have to edit header.php to “force” i-trans slider.

    I solved that way: in the <!– #Banner –> section you will find something like

    <?php
    		elseif ( is_home() && !is_paged() || $show_slider ) :
    		?>

    and so on. It ruls what happens with blog home or if homepage is woocommerce shop. I’ve override all the 3 statements.

    elseif (is_home() || (in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) && is_shop() && is_front_page()) ) : 
    
    		?>
    
                <?php if (!empty($other_front_slider)) : ?>
    
                    <?php echo do_shortcode('[tx_slider category_id="" delay="6000" class=""]') ?>  
    
            	<?php elseif (!$hide_front_slider) : ?>
    
                    <?php echo do_shortcode('[tx_slider category_id="" delay="6000" class=""]') ?>  
    
            	<?php else : ?>
    
                    <?php echo do_shortcode('[tx_slider category_id="" delay="6000" class=""]') ?>                             
    
            	<?php endif; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Default slider contra I-trans slider’ is closed to new replies.