Where the variations are stored in the database when using wp-e-commerce plugin? [closed]
Where the variations are stored in the database when using wp-e-commerce plugin? [closed]
Where the variations are stored in the database when using wp-e-commerce plugin? [closed]
Use any E-Commerce plugin. Which you use is up to you, pretty much all of them do the job. Create a product for your image, set the low res image as the featured image, or some content imag, then set it up as a digital/download product with the file being the original high resolution image. … Read more
$wpsc_cart->tax_percentage contains the tax percentage for me using the latest version 3.8.6. make sure you have enabled tax and added a tax rate under settings > store > taxes.
Managed to figure it out. The pdf output code has this to get the normal field values: $form_sql = “SELECT * FROM `”.$wpdb->prefix.”wpsc_submited_form_data` LEFT JOIN `”.$wpdb->prefix.”wpsc_checkout_forms` ON “.$wpdb->prefix.”wpsc_submited_form_data.form_id = “.$wpdb->prefix.”wpsc_checkout_forms.id WHERE `log_id` = ‘”.(int)$purchase_id.”‘ AND `active` = ‘1’”; $input_data = $wpdb->get_results($form_sql,ARRAY_A); The there is a switch statement based ont he unique_name but as this is … Read more
The various currencies and their associated countries are stored in the database, {$prefix}wpsc_currency_list.
Some inspiration: An old colleague of mine did a similar solution. He created a product, in your case called “Installation service”, put it as a draft and added it with ajax when customer added it in the shopping cart, and then updated the total price. In that way the product was added to the order … Read more
Tried here? settings->store->presentation :Display per item shipping
In the wp-e-commerce admin, Settings -> Store -> Admin, you can customise the Customer Purchase Receipt (confirmation email) template to add this, e.g. Please quote %purchase_id% as reference when paying by EFT. There are a couple of hooks in wp-e-commerce that let you insert other data into the confirmation emails: wpsc_transaction_result_cart_item — this is called … Read more
Found that theme functions was handled wp_deregister_script(‘jquery’) and jQuery loaded from one of plugins was outdated (1.5.2) which was causing all errors. I have removed wp_deregister_script(‘jquery’) from the functions.php file and all working as should.
WP e-Commerce hook after creating order?