Viewing 14 replies - 1 through 14 (of 14 total)
  • Plugin Author Stefan Boonstra

    (@stefanboonstra)

    Hi,

    I can’t seem to find the page http://www.creativeguru.com/ciclope/, it gives me a ‘404, page not found’ error.

    Could you please provide a URL to the page you have installed the slideshow on?

    Best regards,
    Stefan

    Thread Starter htnitsuga@gmail.com

    (@htnitsugagmailcom)

    Sorry, try it again please!
    Thanks
    http://www.creativeguru.com.ar/ciclope

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    I see the slideshow JavaScript file is not loaded. This file is what runs the slideshow, so that’s why it’s not moving.

    Do you call the ‘<?php wp_footer(); ?>‘ function right before the ‘</body>‘ tag in the ‘footer.php’ file in your website’s theme? This is required in order to be able to load the slideshow script.

    Thread Starter htnitsuga@gmail.com

    (@htnitsugagmailcom)

    Thanks?
    How wolud that be?
    Please help me!
    Is it ok?

    <div id="footer">
    		<div class="copyright">
    			<?php get_auzora_copyright(); ?>
    		</div>
    		<div class="social_link">
    			<?php echo get_auzoraSocial_links(); ?>
    		</div>
    		<div class="clear"></div>
    	</div><!-- closes footer-->
    
    </div><!-- closes wrap-->
    
    <?php if (trim(get_option('az_fs')) <> "" ) { echo stripslashes(get_option('az_fs')); } ?>	
    
    <?php wp_footer(); ?> 
    
    </body>
    
    </html>

    [Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    That looks good, perhaps it’s because of another plugin interfering with the slideshow plugin that the script doesn’t load.

    You can check if this is true by disabling the other plugins and checking if it works after that.

    Otherwise you could try to manually place the URL to the slideshow script into the footer: ‘<script type="text/javascript" src="http://creativeguru.com.ar/wp-content/plugins/slideshow-jquery-image-gallery/js/SlideshowPlugin/slideshow.js"></script>

    Thread Starter htnitsuga@gmail.com

    (@htnitsugagmailcom)

    It didnt work. I placed the URL into the footer and nothing. The same with disabled the others pluggins and didnt work too.
    The webpage has a nivoslider ah the home. Maybe it would be the problem?

    <?php get_header(); ?>
    	<div id="main">
    		<?php
    		/*Build shadow..under the content box!*/
    		?>
    		<div id="main_wrap"><div class="left_wrap"></div><div class="right_wrap"></div></div>
    		<?php
    		/* End Build Shadow */
    		?>
    
    			<?php $page_show = $_COOKIE["page_show"];?>
    
    			<div class="main_holder<?php if( (!$page_show) || ($page_show == "0") ) echo " show"; ?>" id="home">
    				<div class="inner">
    
    					<?php
    					/*
    						get_auzora_home_content(), --> auzora/library/theme_functions.php line 191.
    						get the choosen layout for home/landing page.
    					*/
    						get_auzora_home_content();
    					?>
    
    				</div>
    			</div>
    
    			<?php auzora_get_content(); ?>
    
    			<!--navigation -->
    			<div class="menu-shad"></div>
    			<div class="navigation">
    				<div class="navigation_top">
    					<div class="nav">
    
    <ul>
    							<li<?php if( (!$page_show) || ($page_show == "0")) echo " class='press'"; ?>><a href="#home" rel="0"></a><span class="nav_tooltip"><span class="tooltip_right">Home</span></span>
    							<?php auzora_build_menu(); ?>
    						</ul>
    					</div>
    				</div>
    			</div><!-- closes navigation-->
    
    	</div><!-- closes main-->
    
    <?php get_footer(); ?>

    [Moderator Note: Please post code or markup snippets between backticks or use the code button. Or better still – use a pastebin. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    That could possibly be the problem. Could you please send me a download link to the exact same Nivo Slider plugin that you have installed? I could install it on my website and see what’s causing these difficulties.

    Thread Starter htnitsuga@gmail.com

    (@htnitsugagmailcom)

    nivo-slider.css

    /*
    * jQuery Nivo Slider v1.9
    * http://nivo.dev7studios.com
    *
    * Copyright 2010, Gilbert Pellegrom
    * Free to use and abuse under the MIT license.
    * http://www.opensource.org/licenses/mit-license.php
    *
    * March 2010
    */

    /* The Nivo Slider styles */
    .nivoSlider {
    position:relative;
    }
    .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    }
    /* If an image is wrapped in a link */
    .nivoSlider a.nivo-imageLink {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    border:0;
    padding:0;
    margin:0;
    z-index:60;
    display:none;
    }
    /* The slices in the Slider */
    .nivo-slice {
    display:block;
    position:absolute;
    z-index:50;
    height:100%;
    }
    /* Caption styles */
    .nivo-caption {
    position:absolute;
    left:0px;
    bottom:0px;
    background:#000;
    color:#fff;
    opacity:0.8; /* Overridden by captionOpacity setting */
    width:100%;
    z-index:89;
    }
    .nivo-caption p {
    padding:5px;
    margin:0;
    }
    /* Direction nav styles (e.g. Next & Prev) */
    .nivo-directionNav a {
    position:absolute;
    top:42%;
    z-index:99;
    cursor:pointer;
    height: 55px;
    width: 52px;
    font-size: 0px; line-height: 0px; text-indent: -9999; color: transparent;
    }
    /* Control nav styles (e.g. 1,2,3…) */
    .nivo-controlNav a {
    position:relative;
    z-index:99;
    cursor:pointer;
    }
    .nivo-controlNav a.active {
    font-weight:bold;
    }

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    Thanks. Do you use it as a WordPress Plugin, or have you included it manually by placing the scripts on the page? If the Nivo slider script is included like so: ‘<?php wp_enqueue_script('slideshow', ...); ?>‘, it could cause the slideshow plugin to fail loading its own script.

    Thread Starter htnitsuga@gmail.com

    (@htnitsugagmailcom)

    What slider do you recomend me?
    Compatible?

    Thread Starter htnitsuga@gmail.com

    (@htnitsugagmailcom)

    It was included in the theme!

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    If you’re looking for a different slideshow, Googling ‘Free WordPress Slideshow’ might give you some nice results.

    I’m sorry I couldn’t be of any better service. Goodluck with the next! (I’ll be trying to find out what exactly went wrong.)

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    Is it included using PHP, or is it included in a ‘<script>‘ tag?

    Thread Starter htnitsuga@gmail.com

    (@htnitsugagmailcom)

    Using PHP i think

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Only one slide works’ is closed to new replies.