WP-e-Commerce has a filter that you can in your themes functions.php file to change the product order from ascending to descending. To change the order simply copy the function below.
[php]
add_filter( ‘wpsc_product_order’ , ‘change_product_order’ );
function change_product_order(){
return ‘desc’;
}
[/php]
