Is there a log somewhere we can check exactly which email addresses were sent the Abandoned Basket email from Miva?
Announcement
Collapse
No announcement yet.
See Abandoned Basket Email Addresses
Collapse
X
-
no. but curious as to why?Bruce Golub
Phosphor Media - "Your Success is our Business"
Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
phosphormedia.com
-
We use a custom field to mark an item "Sold Out". So this disables the add to cart button so the item can't be purchased. I had placed a product out of stock the other morning and a customer still ordered the item after it was 'Sold Out'.
In the past, I had realized customers could still use Wish Lists, but I had since corrected that problem. The only way that I can think of this still happening is if possibly an abandoned cart email got sent out and the customer was able to order that way? So to confirm my suspicions, I was hoping to see the actual email addresses that were sent the abandoned cart email in the log instead of just seeing that the scheduled task had ran.
I want to try to keep this issue from happening again but need to nail down how it happened.
I did use the "Review Baskets" tab to view the basket, but for some reason it is entirely blank?
I thought maybe that is default functionality for a basket that becomes an order?
Comment
-
Got it, that makes sense. It might be worth investigating using the inventory tracking as the tool and using the API to update those items from a data source on your end (just a thought). I'll pass this on to Dev support internally, but not sure if they'll have insights based on your current method.
Comment
-
You could use some preprocessing logic to see if the basket has a sold out item. If it does not then send the email.
Code:<mvt:foreach iterator="item" array="basket:groups"> <mvt:item name="customfields" param="Read_Product_Code( l.settings:item:code, 'soldout', g.soldout )" /> </mvt:foreach> <mvt:if expr="NOT g.soldout"> // send email </mvt:if>
Comment
-
Originally posted by afiumano View PostWe use a custom field to mark an item "Sold Out". So this disables the add to cart button so the item can't be purchased. I had placed a product out of stock the other morning and a customer still ordered the item after it was 'Sold Out'.
In the past, I had realized customers could still use Wish Lists, but I had since corrected that problem. The only way that I can think of this still happening is if possibly an abandoned cart email got sent out and the customer was able to order that way? So to confirm my suspicions, I was hoping to see the actual email addresses that were sent the abandoned cart email in the log instead of just seeing that the scheduled task had ran.
I don't know what the abandoned-cart emails contain, but it's certainly possible that there are links in there that allow a customer to restore abandoned items to a new cart. It should be possible to determine that by a quick look at the template. So that might be another place where some protective code is needed.
My Modulator utility can be used to intercept all add-to-cart actions with a single template. I think this module may already be running in the store you're asking about? Let me know if you want me to work on a solution for this.
Kent Multer
Magic Metal Productions
http://TheMagicM.com
* Web developer/designer
* E-commerce and Miva
* Author, The Official Miva Web Scripting Book -- available on-line:
http://www.amazon.com/exec/obidos/IS...icmetalproducA
Comment
-
Rick Wilson The customer just calls me and tells me to mark it out of stock for them and I login to admin and just place a '1' in the custom field for the respective product variant. It is pretty quick. Then I move the sold out product to the bottom of each category it appears. It usually takes me 5-10 minutes.
Kent Multer The products are placed out of stock via a custom field (there are size variants and the stock IS variant specific). The Add to Cart buttons and Wish List edits are indeed just done with code on the page, testing for the custom field. I just double checked the "Order Again" link on the "Order Status" page and there is no code on this page so this page is a possible cause and will need to be fixed.
The Abandoned Cart email includes a link to the Cart based on the session id:
Code:&mvte:urls:BASK:auto_sep;Session_ID=&mvte:global:Basket:session_id;
Comment
-
Originally posted by afiumano View PostWe use a custom field to mark an item "Sold Out". So this disables the add to cart button so the item can't be purchased. I had placed a product out of stock the other morning and a customer still ordered the item after it was 'Sold Out'.
In the past, I had realized customers could still use Wish Lists, but I had since corrected that problem. The only way that I can think of this still happening is if possibly an abandoned cart email got sent out and the customer was able to order that way? So to confirm my suspicions, I was hoping to see the actual email addresses that were sent the abandoned cart email in the log instead of just seeing that the scheduled task had ran.
I want to try to keep this issue from happening again but need to nail down how it happened.
I did use the "Review Baskets" tab to view the basket, but for some reason it is entirely blank?
I thought maybe that is default functionality for a basket that becomes an order?
Inventory at checkout
https://docs.miva.com/miva10/referen...ry-at-checkout
https://docs.miva.com/how-to-guides/...ry-at-checkout
Older video - https://docs.miva.com/videos/inventory-at-checkoutWayne Smith
Comment
Comment