Re: Back In Stock Notifications
Our back in stock module seems to have stopped working.
Normally it is because someone has subscribed to a product and forgets to add their email address and I have to run an sql patch to remove the product from the list which fixes the issues.
This time however when I do a test run of emails there is one entry that shows the customers name but no email address and no product indicated - and so nothing will mail out.
Can anyone advise how to remove a 'phantom' entry???
Until this is done no back in stock emails will go out.
Phil
Re: Back In Stock notification issues
Found the answer.
Post this into the SQL functions area.
The XXX is the product ID for the item you want to remove the listing for.
delete from back_in_stock_notification_subscriptions where product_id = XXX;
Re: Back In Stock notification issues
Noticed a small bug in 3.2.0 that gives users a broken link to the product page from their subscriptions list under "My Account"
To fix, just need to edit the includes/templates/template_default/templates/tpl_account_back_in_stock_notifications_default.php file:
Line 166: change from:
PHP Code:
$product_page = zen_get_info_page($subscribed_notification_lists[$i]['id']);
to:
PHP Code:
$product_page = zen_get_info_page($subscribed_notification_lists[$i]['product_id']);
... and line 169 change from:
PHP Code:
'products_id=' . $subscribed_notification_lists[$i]['id'], $request_type);
to:
PHP Code:
'products_id=' . $subscribed_notification_lists[$i]['product_id'], $request_type);
Re: Back In Stock notification issues
Just noticed I posted the below in the OLD BISN thread.
Hoping someone has an idea here.
Not sure what has changed now, but my 'back in stock notification' emails are missing my domain name in the link that gets sent out?!!?!
Any one run into this before I start digging around?
Re: Back In Stock Notifications
Hi,
Can I know why my website turn into blank after install ceon back in stock notification 3.2.0.? Im using zen card version 1.5.1.
Thank you.
Re: Back In Stock Notifications
Quote:
Originally Posted by
countrycharm
Hi,
Can I know why my website turn into blank after install ceon back in stock notification 3.2.0.? Im using zen card version 1.5.1.
Thank you.
Re: Back In Stock Notifications
Quote:
Originally Posted by
Orkid
Hi,
Can I know why my website turn into blank after install ceon back in stock notification 3.2.0.? Im using zen card version 1.5.1.
Thank you.
Hi,
If you are using version zen chart vert 1.5.1
Do not replace the functions_general.php
Just add the following code from line #1115 (after)
$return_button = zen_image_button(BUTTON_IMAGE_SOLD_OUT_SMALL, BUTTON_SOLD_OUT_SMALL_ALT);
The change begins with a comment:
// BEGIN CEON BACK IN STOCK NOTIFICATIONS 1 of 1
And ends with a comment:
// END CEON BACK IN STOCK NOTIFICATIONS 1 of 1
If you do not under, you can use WinMerge to find out the different.
Finally, I solved my problem.
Thank you..
Re: Back In Stock Notifications
can i install the last version to my 1.3.9 h version ?
no issue ?
Re: Back In Stock Notifications
I've done some mods to this to record the customer language when they sign up and then send only that language when that admin language is in use to avoid mistakes. pm me if you want the files.
Re: Back In Stock Notifications
...this is now available for testing, so those of you holding your breath for the last year can exhale now:
https://www.zen-cart.com/showthread....66#post1310666