• Witam,
    mam taki problem to moja testowa stronka http://www.yogimaster.cba.pl , mam mianowicie taki problem że moj slider nie dziala ;/ nie wiem czym to jest spowodowane czy to wina javascript juz nie wiem sam to kod:

    <script type="text/javascript">
    var $jx = jQuery.noConflict();
    $jx(function() {
     $jx(".mygallery").jCarouselLite({
     btnNext: ".nextb",
            btnPrev: ".prevb",
    		visible: 1,
    	    speed: 1000,
    		easing: "backout"
    
        });
    
    });
    </script>
    
    <div id="slidearea">
    
    <div id="gallerycover">
    <div class="mygallery">
    
    	<ul>
    			<?php
    			$gldcat = get_option('elv_gldcat');
    			$gldct = get_option('elv_gldct');
    			$my_query = new WP_Query('category_name='.$gldcat.'&showposts='.$gldct.'');
    			while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
    			?>
     <li>
    <div class="mytext">
    
    <div class="imgframe">
    <?php elv_slider_image();?>
    </div>  
    
    <div class="txtframe">
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    <p><?php the_content_rss('', TRUE, '', 50); ?> </p>
    <a class='readmore' href="<?php the_permalink() ?>"> </a>
    </div>  
    
    </div>
     </li>
    			<?php endwhile; ?>
         </ul>
    
        <div class="clear"></div>  
    
    </div>
    
    </div>
    
    </div>

    Prosze o pomoc jak mógłbym rozwiazać ten problem dodam że pracuje na szablonie Warpack.

  • Temat ‘slider’ jest zamknięty na nowe odpowiedzi.