• Is there a way that I can receive my customers choice of variation when they place an order?

    For example, if someone purchases a pair of shoes from my store they select the colour, shoe size and heel height. This information doesn’t arrive with the order and I have to email the customer to check. Very unprofessional…

    Can anyone help?

    Thanks

    https://www.ads-software.com/plugins/wp-e-commerce/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Yes, you can customize the purchase receipt, sales log display and packing slip to show the details that are important to your store.

    Most of the time, the product name purchased will have enough detail. The product name is made using the variation names. But this doesn’t always work for a store, and it didn’t work for us.

    This is a screen shot of how we show the information in one of our stores

    Thread Starter SalsaMummy

    (@salsamummy)

    Thanks for your reply Jeff. Could you point me in the right direction to do this? Where are the options?

    Thanks again,
    Charlotte

    These are the filters you can use to customize the contents

    add_filter( 'wpsc_purchase_log_admin_notification_raw_message', array( $this, 'add_details_to_confirmation' ) , 5, 2 );
    add_filter( 'wpsc_purchase_log_customer_notification_raw_message', array( $this, 'add_details_to_confirmation' ) , 5, 2 );
    add_action( 'wpsc_transaction_result_cart_item', array( $this, 'collect_cart_item_details' ) );
    add_action( 'wpsc_additional_sales_item_info', array( $this, 'add_details_to_checkout_table' ), 10, 1 );
    Thread Starter SalsaMummy

    (@salsamummy)

    That’s great. I’m a little out of my depth here…Could you explain where I need to insert the code? Cheers

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Customer variation choice not displaying for admin’ is closed to new replies.