Tag: wpec
WP e-Commerce Plugin Skeleton Update
30th September
Hi Everyone,
Previously I had created a WP e-Commerce Plugin Skeleton as a template to show other developers how to extend WP e-Commerce in a good fashion. I have just recently updated the Plugin Skeleton for a couple of reasons.
Wrap a Class around the Plugin so that we can avoid any function conflicts.
Add in new functionality to show how you can add information to the single products page using actions provided in the template.
To see the table rate price in action install and activate the Plugin then add a table rate price to a Product and view it in the front end.
Download : pluginSkeleton
3.8 Developers Beta Release
17th November
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
25th March
I’d like to hide the customer’s purchase number upon checkout from the ecommerce plugin for wordpress.
How to add quantities into your Purchase Report
21st January
Hi, heres a question I was asked today, seems like everyones been having trouble getting quantities into the admin purchase report. I TOTALLY understand, the function is big and bloated, it’s part of the old system which we are trying our best to overhaul when time allows.
Anyway to the task at hand.
Wp-e-commerce version: I don’t think the version matters so much since this is part of the old code.
File: transaction_result_functions.php
Around line 180 you should see something like this:
$report_product_list.= ” – “. $product_data['name'] .stripslashes($variation_list).” “.$message_price .”nr”;
change it to this:
$report_product_list.= $row['quantity'].” – “. $product_data['name'] .stripslashes($variation_list).” “.$message_price .”nr”;
That should do it
have a good week!
SCM
