Guest User

Untitled

a guest
Jul 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?php /* setting a variable so we can count the loop */ $count = 1; ?>
  2. <?php while (wpsc_have_products()) : wpsc_the_product(); ?>
  3.  
  4. <?php
  5.  
  6. /* conditional if this is the first time through the loop */
  7. if ( $count == 1 ) {
  8. /* we show the normal loop for the fist product only */
  9. ?>
  10.  
  11. <!-- regular wp-ecommerce stuff -->
  12. <?php
  13.  
  14. /* incrementing the starting variable so we can stop the loop and do different things afer */
  15. $count++;
  16.  
  17. }
  18.  
  19. endwhile; ?>
  20.  
  21. <div class="clear"></div>
  22. <div id="slider-controls">
  23. <p class="btn next">></p>
  24. <p class="btn prev"><</p>
  25. </div><!-- /#slider-controls -->
  26. <div class="slider">
  27.  
  28. <ul>
  29.  
  30. <?php while (wpsc_have_products()) : wpsc_the_product(); ?>
  31.  
  32. <li class="imagecol">
  33. <a rel="<?php echo str_replace(array(" ", '"',"'", '"','&#039;'), array("_", "", "", "",''), wpsc_the_product_title()); ?>" class="image" href="<?php echo wpsc_the_product_permalink(); ?>">
  34. <img class="product_image" width="95px" height="119px" id="product_image_<?php echo wpsc_the_product_id(); ?>" alt="<?php echo wpsc_the_product_title(); ?>" title="<?php echo wpsc_the_product_title(); ?>" src="<?php echo wpsc_the_product_thumbnail(); ?>"/>
  35. </a>
  36. </li><!-- /.imagecol -->
  37.  
  38. <?php endwhile; ?>
  39.  
  40. </ul>
  41.  
  42. </div><!-- /.slider -->
Add Comment
Please, Sign In to add comment