3.8 Developers Beta Release

Today I had the priviledge of announcing a 3.8 Developers Beta to the mailing list. What’s the hype? Well 3.8 has been 11 months in the making, and has had some great minds slaving away at it….

Hide the customer’s purchase number upon checkout

I’d like to hide the customer’s purchase number upon checkout from the ecommerce plugin for wordpress.

Making Tax use discounted price

Needed to put this somewhere just incase we decide to add it into core. function calculate_total_tax() { global $wpdb; $total = 0; if($this->total_tax == null && $this->coupons_amount == 0) { foreach($this->cart_items as $key => $cart_item) { $total += $cart_item->tax; } } elseif($this->coupons_amount == 0) { $total = $this->subtotal-$this->coupons_amount; $total = $total /(100) *$wpsc_cart->tax_percentage; }else{ $total [...]

Sales Price doesn’t show in Grid View

Hi, I had a couple of people that we’re getting frustrated that grid_view was not displaying the sales price,, instead it was just showing the normal price without the discount,,, The problem lies in the theme file grid_view.php Check your HTMl that displays the price it should look like this: <span class=”pricedisplay”><?php echo wpsc_product_normal_price(); ?></span>Price: [...]