newellmultimedia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress slider only displaying 5 out of 6 imagesI check out the source code. The showcase div is located in a wpzoom_showcase.php file and is also surrounded by a “homeGallery” div
This code is below:
<div id=”homeGallery”>
<div id=”showcase”><?php $loop = new WP_Query( array( ‘post_type’ => ‘slideshow’, ‘posts_per_page’ => $wpzoom_slideshow_num ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post();
unset($img,$link);
if ( current_theme_supports( ‘post-thumbnails’ ) && has_post_thumbnail() ) {
$thumbURL = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), ” );
$img = $thumbURL[0];
}
else {
$img = catch_that_image($post->ID);
}if ($img) {
$link = get_post_meta($post->ID, ‘wpzoom_slide_url’, true);
$img = wpzoom_wpmu($img);if (strlen($link) > 1)
{
?>“><img src=”<?php bloginfo(‘template_directory’); ?>/scripts/timthumb.php?h=300&w=960&zc=1&src=<?php echo $img; ?>” height=”300″ width=”960″ alt=”” /><?php
}
else
{
?><img src=”<?php bloginfo(‘template_directory’); ?>/scripts/timthumb.php?h=300&w=960&zc=1&src=<?php echo $img; ?>” height=”300″ width=”960″ alt=”” /><?php
}
}endwhile; ?>
</div><!– end #showcase –>
</div><!– end .wrap –>
</div><!– end #homeGallery –>I’ll also try your solution Photocurio and try other formats besides jpg, maybe png might be better.
Forum: Fixing WordPress
In reply to: WordPress slider only displaying 5 out of 6 imagesNo problems Endlyss.
The slideshow does have an options panel in the left side bar. but It only has one option to see the different slides / edit them etc, and one to add a new slide, haven’t seem any options for a slides limit. So in answer to your first question, yes, I am adding slides through its control panel. I’m not sure if its a Nivo-Slider, I doubt the client will know as it was set up by someone else.
Also tried adding a 7th slide to the slider, but it still only showed 5 slides.
Forum: Fixing WordPress
In reply to: WordPress slider only displaying 5 out of 6 imagesI was wondering if there was a limit, but I haven’t seen one in the options and I think previously there use to be 6 slides.
URL: https://www.austeducationglobal.com.au/
cheers
[ No bumping please. ]