Hello all,
I wondered if it's possible to use Thematic with wp ecommerce and have a slideshow feature products images on the front page? I've tried adapting my code that I got to work NivoSlider and the loop (thanks to Helga!) and it's not quite there but I hope not it's not too far off, any thoughts greatly appreciated:
<div id=”sliderloading“>
<div id=”slidercontainer” class=”grid_12“>
<div class=”nivoSlider“>
<?php query_posts(‘wpsc_category_name=featured&posts_per_page=3′);?>
<div id=”slider” class=”nivoSlider img“>
<?php while (wpsc_have_products()) : wpsc_the_product(); ?>
<?php
if ( has_post_thumbnail() ) {echo (‘<a href=“‘.wpsc_the_product_permalink().’”>
<img src=”‘.wpsc_the_product_image(’940′,’500′).’” alt=\”\” /></a>’);
}
?>
<?php endwhile; ?>
</div><!– End of slidercontainer –>
</div><!– End of slidercontainer –>
</div><!– End the slider –>