Administrator
- Join Date:
- Feb 2006
- Location:
- Tampa Bay, Florida
- Posts:
- 10,690
- Plugin Contributions:
- 56
Save For Later Support Thread
This sounds easy but it's not. It's just not designed to work this way.
Views: 64,707
Administrator
This sounds easy but it's not. It's just not designed to work this way.
New Zenner
Can anyone help me with a problem? I know this thread has been quiet and I can see why. Save for later has been working a treat on my test store but I encountered a problem that I am unable to rectify.
I can not seem to get the search function to work in this particular situation.
Add an item to cart.
Save item for later.
Now you have 0 items in cart and 1 item saved for later.
Try searching for anything using the search function in the search banner. (not header search)
I get a website waiting for reply followed by nothing. No searches work.
Searches do work however......
Can anyone offer any explanation on how I might resolve this?
I am running 1.3.9h with default installs. Items were copied directly over writing previous files as there are no other customization's to merge.
I hope others are able to recreate my issue so I may have peace of mind that I didn't wreck my fresh install using my first mod. LOL!
Thank you very much!
Administrator
What is the search banner - the search sidebox? The search page?
New Zenner
swguy:
What is the search banner - the search sidebox? The search page?
Sorry, searches work when using the sideboxes/search_header.php in layout boxes controller in any instance.
Searches do not work when using the function from sideboxes/search.php in layout boxes controller.
They only don't work when you have items saved for later and 0 items in the cart. The searches work in all other instances.
Thank you.
To test my theory try adding an item to the cart. next click save for later, now search using the search box that is wherever you defined it to be in tools->layout boxes controller->sideboxes/search.php
for me, the settings for this function are...
sideboxes/search.php ON RIGHT 10 0 OFF
If you have 0 items in cart and items saved for later the search breaks.
I'm stumped because while the search sidebox will break in this instance, I can still perform the same search successfully if I input the search terms in the search field that is in the header as defined in sideboxes/search_header.php
Thanks!
Administrator
I can't dup this.
New Zenner
swguy:
I can't dup this.
Ok, Thank you very much Swguy for looking into the issue for me. I greatly appreciate your time and effort. :)
I'll create a second stock cart and go step by step through my same process again and see if I can find out where I went wrong etc. If I can isolate exactly what i'm doing wrong i'll make note not to do that and share the information with you and others. :smartalec:
New Zenner
Hi,
Can anyone tell me if there is the facility within this mod to see which customers have saved items for later? This would be really useful as an incentive could then be emailed to them to get them to purchase those items.
Any help, gratefully received! :)
Administrator
I have not done this, and wouldn't recommend it. Most people would call that kind of unsolicited email "spam."
Inactive
OLCS:
Hi,
Can anyone tell me if there is the facility within this mod to see which customers have saved items for later? This would be really useful as an incentive could then be emailed to them to get them to purchase those items.
Any help, gratefully received! :)
I was looking at modifying either the 'Recover Cart Sales' mod to query the wishlist table or creating an addon for Mailbeez (like the satisfaction mod) to do exactly that.
Inactive
swguy:
I have not done this, and wouldn't recommend it. Most people would call that kind of unsolicited email "spam."
I disagree <sort of>, depending on the verbage within the email, the frequency, etc.
Go search around on amazon or Tiger Direct for a few different items, you will get a very targeted email within a day or two from them (if you are customer).
I think it is in the same vein as trying to recover from shopping cart abandonment, hey we noticed you added something to your cart, blah blah blah. One time, don't pester/spam them, etc. Its just a gentle reminder. Currently have over 10% abandoned cart recovery and the recipients don't seem to mind, in addition I have received great feedback due to what is contained in the email. ie shipping was too high, found it cheaper, etc. etc. and it allows me to adjust certain products as needed, if possible.
I have seen this 'feature' over used though. One site sent me an email about an item in my cart about every other day for a month. (they did not have a 'wishlist' feature) Annoyed me enough to purge my cart and NOT purchase from them.
Totally Zenned
Go search around on amazon or Tiger Direct for a few different items, you will get a very targeted email within a day or two from them (if you are customer).
Because the big boys do it doesn't mean they are not spamming.
I would absolutely call it spam if I had not asked to be "reminded" about a certain product!!
Inactive
Design75:
Because the big boys do it doesn't mean they are not spamming.
I would absolutely call it spam if I had not asked to be "reminded" about a certain product!!
I don't disagree. TigerDirect is probably the worst about it. Amazon is a bit more subtle.
I like the Mailbeez option of giving the customer the ability to opt-out of further emails of that type.
Certainly wouldn't call it 'spam' as it doesn't really fall under the category of entirely 'unsolicited', as you are a customer and agreed to get emails from me.
New Zenner
Certainly wouldn't call it 'spam' as it doesn't really fall under the category of entirely 'unsolicited', as you are a customer and agreed to get emails from me
I totally agree. Our customers will have confirmed they are willing for us to send them infrequent emails when they created an account, so not sure it would fall under the category of spam. I guess all I wanted was the ability to be able to see who had saved products for later, even if I didn't email them, just to see 1) whether people find the 'save for later' facility useful and 2) have that data available so I can start asking myself some questions as to why they didn't buy those certain products at the time.
Many thanks for your time
Inactive
OLCS:
I totally agree. Our customers will have confirmed they are willing for us to send them infrequent emails when they created an account, so not sure it would fall under the category of spam. I guess all I wanted was the ability to be able to see who had saved products for later, even if I didn't email them, just to see 1) whether people find the 'save for later' facility useful and 2) have that data available so I can start asking myself some questions as to why they didn't buy those certain products at the time.
Many thanks for your time
I have a SQL script that I use to query the tables for that info.
Nothing 'clean' yet, just gives me an idea of what people are putting in their 'wishlist'.
SELECT customers_firstname, customers_lastname, products_name, products_price, customers_basket_quantity
from customers_basket_later
INNER JOIN customers ON customers.customers_id = customers_basket_later.customers_id
INNER JOIN products ON products.products_id = customers_basket_later.products_id
INNER JOIN products_description ON products_description.products_id = products.products_id
I am close to completing a mailbeez module to get that info and send an email out.
New Zenner
Limitless:
I have a SQL script that I use to query the tables for that info.
Nothing 'clean' yet, just gives me an idea of what people are putting in their 'wishlist'.
SELECT customers_firstname, customers_lastname, products_name, products_price, customers_basket_quantity
from customers_basket_later
INNER JOIN customers ON customers.customers_id = customers_basket_later.customers_id
INNER JOIN products ON products.products_id = customers_basket_later.products_id
INNER JOIN products_description ON products_description.products_id = products.products_idI am close to completing a mailbeez module to get that info and send an email out.
Perfect! Just what I am after, to get an idea of who has what stored for later in their cart. Would be very interested to hear when you have completed your mailbeez module.
Thanks Limitless! :D
Inactive
Getting back to the Save for Later mod, I've got a question regarding moving the 'Checkout', 'Back to Shopping', and 'Shipping Estimator' buttons.
Its not too bad when you have few items in your saved for later section but if I have 10 or so items, it pushes the 'checkout button' way down the page, way way below the fold.
Can I safely move them back up above the save for later section?
Totally Zenned
yes you can
Inactive
Thanks. I didn't think that would be an issue, but always safer to ask first and break later.
Inactive
OLCS:
Perfect! Just what I am after, to get an idea of who has what stored for later in their cart. Would be very interested to hear when you have completed your mailbeez module.
Thanks Limitless! :D
Need some suggestions before I submit the plugin for download.
http://www.zen-cart.com/showthread.php?201124-Mailbeez-Addon-Module-Wishlist-Reminder
New Zenner
Hi Scott,
Thanks for this great mod. My site uses the default template, so there's no custom template. I can't figure out where to put the files in the 'Common Files' folder. I know you say in the root directory. When I open the Common Files folder it shows a folder named Includes. I opened my Includes directory and copied the files into the various sub-directories in the Includes directory for my site. The Save for Later button shows but when I click it a blank page appears with an error message. Where did I go wrong :-(
Thanks,
Chiliboy
Tell staff why this post should be reviewed.