<?php endwhile; ?>
	<?php /** end the product loop here */?>
	
	
	<?php if(wpsc_product_count() < 1):?>
		<p><?php  echo __('There are no products in this group.', 'wpsc'); ?></p>
	<?php endif ; ?>

<?php

if(function_exists('fancy_notifications')) {
  echo fancy_notifications();
}
?>
		
		
		<!-- Start Pagination -->
		<?php if ( ( get_option( 'use_pagination' ) == 1 && ( get_option( 'wpsc_page_number_position' ) == 2 || get_option( 'wpsc_page_number_position' ) == 3 ) ) ) : ?>
			<div class="wpsc_page_numbers">
				<?php if ( wpsc_has_pages() ) : ?>
					Page <?php echo wpsc_showing_products_page(); ?>: <?php echo wpsc_first_products_link( '&laquo; First', true ); ?> <?php echo wpsc_previous_products_link( '&laquo; Previous', true ); ?> <?php echo wpsc_pagination( 10 ); ?> <?php echo wpsc_next_products_link( 'Next &raquo;', true ); ?> <?php echo wpsc_last_products_link( 'Last &raquo;', true ); ?>
				<?php endif; ?>
			</div>
		<?php endif; ?>
		<!-- End Pagination -->
		
		
	<?php endif; ?>

</div>
예제 #2
0
    if (function_exists('fancy_notifications')) {
        echo fancy_notifications();
    }
    ?>
		
		
		<!-- Start Pagination -->
		<?php 
    if (get_option('use_pagination') == 1 && (get_option('wpsc_page_number_position') == 2 || get_option('wpsc_page_number_position') == 3)) {
        ?>
			<div class="wpsc_page_numbers">
				<?php 
        if (wpsc_has_pages()) {
            ?>
					Page <?php 
            echo wpsc_showing_products_page();
            ?>
: <?php 
            echo wpsc_first_products_link('&laquo; First', true);
            ?>
 <?php 
            echo wpsc_previous_products_link('&laquo; Previous', true);
            ?>
 <?php 
            echo wpsc_pagination(10);
            ?>
 <?php 
            echo wpsc_next_products_link('Next &raquo;', true);
            ?>
 <?php 
            echo wpsc_last_products_link('Last &raquo;', true);