
Untitled
By: a guest on
Apr 25th, 2012 | syntax:
None | size: 0.61 KB | hits: 27 | expires: Never
Wordpress - WP E-Commerce Plugin - Show price of variable item? (says €0)
<?php
$args = array(
'post_status' => 'publish',
'post_parent' => 0,
'post_type' => 'wpsc-product'
);
$products = new WP_Query($args);
?>
echo wpsc_currency_display(wpsc_calculate_price(wpsc_the_product_id()));
echo wpsc_the_product_price();
<p class="pricedisplay <?php echo wpsc_the_product_id(); ?>"><?php _e('Price', 'wpsc'); ?>: <span id='product_price_<?php echo wpsc_the_product_id(); ?>' class="currentprice pricedisplay"><?php echo wpsc_the_product_price(); ?></span></p>