-
Re: Back In Stock Notifications
Hi Peter,
Quote:
Originally Posted by
papyria
Conor,
Actually, that wasn't me, that was countrycharm, he deserves your thanks! :)
Quote:
Originally Posted by
papyria
Loh and behold after this posting on the board, suddenly the exact functionality appeared on my site as you described it.
I'm glad you've got the installation problem sorted and now the module is working as expected, sending e-mails with unsubscription codes if the user doesn't have an account.
I hope it helps your sales! :)
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Conor, small problem. We moved a site that had this mod installed and now it's throwing this error:
Warning: require_once(/home/regimen1/public_htm/shop/admin/includes/functions/back_in_stock_notifications_functions.php) [function.require-once]: failed to open stream: No such file or directory in /home/regimen1/public_html/shop/admin/back_in_stock_notifications.php on line 18
I've checked and the file is there. We've made no other changes. Version is 1.3.8a. I'm pretty sure it was working before the move but have asked client to be sure.
I can't imagine why it can't find the file. Any ideas?
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
delia
I can't imagine why it can't find the file. Any ideas?
When moving the site you've forgotten to update admin/includes/configure.php with the new path to the admin directory.
Enjoy the rest of your weekend!
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
ahem, yes, that would be possible! Thanks, Conor!
Oh for the lack of one l in a config file
But now I get this:
Fatal error: Cannot redeclare sendbackinstocknotifications() (previously declared in /home/regimen1/public_html/shop/admin/includes/functions/extra_functions/back_in_stock_notifications_functions.php:30) in /home/regimen1/public_html/shop/admin/includes/functions/back_in_stock_notifications_functions.php on line 212
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
delia
But now I get this:
Fatal error: Cannot redeclare sendbackinstocknotifications() (previously declared in /home/regimen1/public_html/shop/admin/includes/functions/extra_functions
You've accidentally put the functions file in both the functions folder and the extra_functions folder within the admin. Delete the copy in the admin/includes/extra_functions folder.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
bingo - did that while trying to fix the other. Thanks!
-
Re: Back In Stock Notifications
Hi,
can anyone give the code to make the change in the back in stock notification screen?
At present when the customer goes to his account area to check the back in stock subscription list it shows
Subscribed Product Date Subscribed
I want to show the
Subscribed product name (product Model) Date Subscribed
product name (product Model) - Should be a link to the items catalog page
Thank you
-
Re: Back In Stock Notifications
I am getting error 1066 Not unique table/alias: 'njm'
while trying to get the model number to print in the back in stock notification page in my account area.
I am making the changes in file includes/modules/pages/account_back_in_stock_notifications/header_php.php
Any Help?
--------------------------------------------------------------
$subscribed_notification_lists_query = "
SELECT
bisns.id, bisns.product_id, pd.products_name, bisns.date_subscribed, njm.products_model
FROM
" . TABLE_BACK_IN_STOCK_NOTIFICATION_SUBSCRIPTIONS . " bisns ,
". TABLE_PRODUCTS . " njm
LEFT JOIN
" . TABLE_PRODUCTS . " njm
ON
bisns.product_id = njm.products_id
LEFT JOIN
" . TABLE_PRODUCTS_DESCRIPTION . " pd
ON
bisns.product_id = pd.products_id
LEFT JOIN
" . TABLE_CUSTOMERS . " c
ON
c.customers_id = bisns.customer_id
WHERE
(bisns.customer_id = '" . (int) $customer_id . "'
OR
c.customers_email_address = bisns.email_address)
AND
pd.language_id = '" . (int)$_SESSION['languages_id'] . "';";
$subscribed_notification_lists_result = $db->Execute($subscribed_notification_lists_query);
if ($subscribed_notification_lists_result->RecordCount() == 0) {
// User is not subscribed to any back in stock notification lists
} else {
// Build the list of notification lists to which this user is subscribed
while (!$subscribed_notification_lists_result->EOF) {
$subscribed_notification_lists[] = array(
'id' => $subscribed_notification_lists_result->fields['id'],
'product_id' => $subscribed_notification_lists_result->fields['product_id'],
'product_name' => $subscribed_notification_lists_result->fields['products_name'],
'product_model' => $subscribed_notification_lists_result->fields['products_model'],
'date' => $subscribed_notification_lists_result->fields['date_subscribed']
);
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
nishajh
I am getting error 1066 Not unique table/alias: 'njm'
Simply remove the following from the code you posted and it will work:
PHP Code:
,
". TABLE_PRODUCTS . " njm
(Don't forget to remove that comma!)
As for having the model appended to the product's name and the name and model link to the product page, you'll need to modify
includes/templates/template_default/templates/tpl_account_back_in_stock_notifications_default.php
change:
PHP Code:
// Add the product's name
$product_name =
htmlentities($subscribed_notification_lists[$i]['product_name'], ENT_COMPAT, CHARSET);
$back_in_stock_notifications_item->setVariable('product_name', $product_name);
to
PHP Code:
// Add the product's name
$product_name =
htmlentities($subscribed_notification_lists[$i]['product_name'], ENT_COMPAT, CHARSET);
$back_in_stock_notifications_item->setVariable('product_name', $product_name);
// Add the product's model
$product_model =
htmlentities($subscribed_notification_lists[$i]['product_model'], ENT_COMPAT, CHARSET);
$back_in_stock_notifications_item->setVariable('product_model', $product_model);
// Add a link to the product's page
$product_info_page_link = zen_href_link(PRODUCT_INFO, 'products_id='
$subscribed_notification_lists[$i]['id']);
$back_in_stock_notifications_item->setVariable('product_info_page_link',
$product_info_page_link);
Finally, you'll need to update the template file to use the variables you'd just "placed" with the new code above (courtesy of Ceon's cool template system):
includes/templates/template_default/templates/inc.html.back_in_stock_notifications.html
In ACCOUNT_BACK_IN_STOCK_NOTIFICATIONS_ITEM1 and ACCOUNT_BACK_IN_STOCK_NOTIFICATIONS_ITEM2 change:
PHP Code:
<ceon:variable name="product_name">Product Number One</ceon:variable>
to:
PHP Code:
<a href="{ceon:product_info_page_link}"><ceon:variable name="product_name">Product Number One</ceon:variable> (<ceon:variable name="product_model">Product Model</ceon:variable>)</a>
That's it! (You can opt not to use the brackets around the model, just remove them from the template code).
Easy with Ceon's template system! :)
Glad you like the software!
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Hi,
In the above, PRODUCT_INFO should be FILENAME_PRODUCT_INFO
All the best...
Conor
-
Re: Back In Stock Notifications
Hi,
Thank you very much for the help
I made the following changes in tpl_account_back_in_stock_notifications_default.php
// Add the product's name
$product_name = htmlentities($subscribed_notification_lists[$i]['product_name'], ENT_COMPAT, CHARSET);
$back_in_stock_notifications_item->setVariable('product_name', $product_name);
// Add the product's model
$product_model = htmlentities($subscribed_notification_lists[$i]['product_model'], ENT_COMPAT, CHARSET);
$back_in_stock_notifications_item->setVariable('product_model', $product_model);
// Add a link to the product's page
$product_info_page_link = zen_href_link(FILENAME_PRODUCT_INFO, 'products_id=' $subscribed_notification_lists[$i]['id']);
$back_in_stock_notifications_item->setVariable('product_info_page_link', $product_info_page_link);
******************
and in file inc.html.back_in_stock_notifications.html
<!-- ceon-begin-part ACCOUNT_BACK_IN_STOCK_NOTIFICATIONS_ITEM1 -->
<tr>
<td class="AccountBackInStockNotificationsListing AccountBackInStockNotificationsListingCellRow1"><ceon:variable name="checkbox"><input type="checkbox checked="checked" /></ceon:variable></td>
<td class="AccountBackInStockNotificationsListing AccountBackInStockNotificationsListingCellRow1"><a href="{ceon:product_info_page_link}"><ceon:variable name="product_model">Product Model</ceon:variable> - <ceon:variable name="product_name">Product Number One</ceon:variable> </a> </td>
<td class="AccountBackInStockNotificationsListing AccountBackInStockNotificationsListingCellRow1"><ceon:variable name="date_subscribed">23rd March</ceon:variable></td>
</tr>
<!-- ceon-end-part ACCOUNT_BACK_IN_STOCK_NOTIFICATIONS_ITEM1 -->
<!-- ceon-begin-part ACCOUNT_BACK_IN_STOCK_NOTIFICATIONS_ITEM2 -->
<tr>
<td class="AccountBackInStockNotificationsListing AccountBackInStockNotificationsListingCellRow2"><ceon:variable name="checkbox"><input type="checkbox checked="checked" /></ceon:variable></td>
<td class="AccountBackInStockNotificationsListing AccountBackInStockNotificationsListingCellRow2"><a href="{ceon:product_info_page_link}"><ceon:variable name="product_model">Product Model</ceon:variable> - <ceon:variable name="product_name">Product Number One</ceon:variable> </a></td>
<td class="AccountBackInStockNotificationsListing AccountBackInStockNotificationsListingCellRow2"><ceon:variable name="date_subscribed">23rd March</ceon:variable></td>
</tr>
<!-- ceon-end-part ACCOUNT_BACK_IN_STOCK_NOTIFICATIONS_ITEM2 -->
********************
RESULT
The page becomes blank when I enable the Add a link to the product's page portion in file tpl_account_back_in_stock_notifications_default.php and when I Comment this portion it shows the product model and name and also has a link. But when I click on the link I get this error message
/%7Bceon:product_info_page_link%7D 404
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
nishajh
// Add a link to the product's page
$product_info_page_link = zen_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $subscribed_notification_lists[$i]['id']);
$back_in_stock_notifications_item->setVariable('product_info_page_link', $product_info_page_link);
There should be a dot between 'products_id=' and $subscribed_notification_lists[$i]['id'] (I've added it above, marked in red).
Without that you get a PHP error which is why you see the blank page.
Please learn that for the future.. it should have been obvious for you to fix.. I can see that I missed it in my original reply to you but I was writing code off the top of my head and not testing it. In testing the code, it would have been immediately obvious that the dot was missing... anyone who knows PHP should have spotted my error themselves.
There are many decent books on PHP.. if you are going to do things yourself I recommend you read one! :)
Quote:
Originally Posted by
nishajh
when I Comment this portion it shows the product model and name and also has a link. But when I click on the link I get this error message
/%7Bceon: product_info_page_link%7D 404
That's because you commented out the code to set the link! (Again that would be obvious if you could read PHP).
That should be enough information now for you. If you find any other errors please try reading up a bit more on PHP first and post if you are still having trouble.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Thank you :smile:
Love this mod in the site
-
Re: Back In Stock Notifications
Hi Conor,
Another happy customer here .... great mod !
Is the mod compatible with 1.3.9d?
Thanks again.
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
dome90uk
Another happy customer here
As the software and support on this forum are both free, there's no such thing as a "customer" regarding this module, we earn nothing whatsoever from having written it or from providing support.
Quote:
Originally Posted by
dome90uk
.... great mod !
I'm very glad you like it though! :)
Quote:
Originally Posted by
dome90uk
Is the mod compatible with 1.3.9d?
Yes, just get the latest version from our website. It'll also be available from the Zen Cart downloads area shortly, haven't had time to get it uploaded to the downloads area yet.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
me again, Conor,
The mod is all working now except one minor point. Customers cannot remove products from the notification lists in their account. Uncheck the box and click update and it just refreshes the screen.
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
delia
The mod is all working now except one minor point. Customers cannot remove products from the notification lists in their account. Uncheck the box and click update and it just refreshes the screen.
Not sure what you've done wrong there.
Please get in contact via this address with FTP and admin details for the site in question and I'll take a look.
Oh, and a link to a product which is out of stock please.
All the best..
Conor
ceon
-
1 Attachment(s)
Re: Back In Stock Notifications
Hi, I have just installed this great software, however, I noticed that the product name of my foreign language, chinese came out to be strange/ alien words, can I know what went wrong?
see the attachment, the product name is displayed of the back in stock notification page as very strange words...., the product name under english page is all normal and alright. Can anyone help???
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
faithtong
see the attachment, the product name is displayed of the back in stock notification page as very strange words...., the product name under english page is all normal and alright. Can anyone help???
You are probably using an older version of the software. Please upgrade to 2.6.0 as it can handle the full UTF charset.
http://dev.ceon.net/web/zen-cart/bac..._notifications
All the best..
Conor
ceon
-
1 Attachment(s)
Re: Back In Stock Notifications
Thanks for your prompt reply。 I have just installed the latest version of your back_in_stock 2.6, however, my chinese page still showing the strange character. Please check the attached picture file below.
(when I copied these strange character, often starts with &# then followed by 5 numeric numbers, for instance: "礼" to zencart backpanel\Developer tool kit Search, the system will automatically convert it (if I am under Chinese mode) to the correct Chinese words, any advice?)
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
faithtong
(when I copied these strange character, often starts with &# then followed by 5 numeric numbers, for instance: "礼" to zencart backpanel\Developer tool kit Search, the system will automatically convert it (if I am under Chinese mode) to the correct Chinese words, any advice?)
Make sure your Zen Cart CHARSET is set to UTF.
If it already is or that doesn't do it then I'm afraid I can't help you at this time.. try asking again in a week or two, I'll not be able to reply before then.
All the best...
Conor
ceon
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
conor
Hi,
Make sure your Zen Cart CHARSET is set to UTF.
If it already is or that doesn't do it then I'm afraid I can't help you at this time.. try asking again in a week or two, I'll not be able to reply before then.
All the best...
Conor
ceon
I have tried to change all my charset to utf-8, however, it doesn't solve my case. :no: All my Chinese pages are showing alright (including the back_in_stock page at admin backpanel) besides my account_back_in_stock .
I will wait for your reply when you are back then. Thanks in advance!!!
-
Re: Back In Stock Notifications
This is coming 2 years late, but your module rocks! Thank you!
I just updated from 2.2.4 (as per the zen cart downloads page) to 2.60, but am having problems producing the correct link in the sentence "To be notified when this product is back in stock please click here."
The link at my product page causes the entire page to reload before scrolling down to the "Back in stock notification" box at the bottom.
The link at my product listing page is however broken because it also takes in this "sort" attribute. For example.. instead of qisahn.com/sony-playstation-3-brand-new-games-c-33_35/call-of-duty-modern-warfare-2-r1-p-1830#back_in_stock_notification_form it does qisahn.com/sony-playstation-3-brand-new-games-c-33_35/sort/20a/call-of-duty-modern-warfare-2-r1-p-1830#back_in_stock_notification_form
I can't figure what is wrong. As a temporary fix, I changed the code in functions_general
from
$params .= '&products_id=' . $product_id;
to
$params = '&products_id=' . $product_id;
I'll appreciate any help you can provide :)
-
Re: Back In Stock Notifications
Just noticed that this mod doesn't work anymore
i get this at the bottom of the product pages
Quote:
Couldn't open template file: /home/www/xxx.xxx/xxx/includes/templates/template_default/templates/inc.html.back_in_stock_notifications.html
have you ever bumped into this issue
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
MB1
i get this at the bottom of the product pages
have you ever bumped into this issue
No, it's not an issue. You've made some sort of mistake and deleted the file on your site or changed the permissions or something. Check it out and restore the file if necessary and things should work fine.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
qisahn
This is coming 2 years late, but your module rocks! Thank you!
I'm glad you like it!
Quote:
Originally Posted by
qisahn
I can't figure what is wrong. As a temporary fix, I changed the code in functions_general
This is a problem with your SEO software, it is changing the sort query string parameter into a URI part but clearly isn't converting it back properly.
You should get new SEO software or simply continue to use the workaround you've created.
Sorry I can't be of more help than that but this is a problem with this other module, there's nothing for me to fix - regarding the issue you are having - in the BISN module.
All the best...
Conor
ceon
-
Re: Back In Stock Notifications
there is no need to be sorry.
thank you for putting me on the right direction :)
-
Re: Back In Stock Notifications
Help from anyone would be appreciated! I'm a newbie running the latest version of zencart and mysql. Everything appears to be running until I get to the admin. I get a blank page at admin>Back In Stock Notification. Looked at the debug and here is what it states:
PHP Code:
[05-Sep-2010 07:38:35] PHP Warning: main(/zencart/includes/functions/back_in_stock_notifications_functions.php) [<a href='function.main'>function.main</a>]: failed to open stream: No such file or directory in /zencart/admin/back_in_stock_notifications.php on line 18
[05-Sep-2010 07:38:35] PHP Fatal error: main() [<a href='function.require'>function.require</a>]: Failed opening required '/zencart/includes/functions/back_in_stock_notifications_functions.php' (include_path='/usr/lib/php:.:/usr/php4/lib/php:/usr/local/php4/lib/php') in /store/admin/back_in_stock_notifications.php on line 18
I've been through the posts on all 42 pages so that I would not ask something that is often asked. Found some mention of the blank pages but nothing that helped me with this.
-
Re: Back In Stock Notifications
There is one other thing that I don't understand. This is what my button looks like and I'm not sure why it doesn't look like the button in the sample.
http://ranchdogmolds.com/Temp/backinstockbutton.gif
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
Ranch Dog
Failed opening required '/zencart/includes/functions/back_in_stock_notifications_functions.php'
You've set up your admin configure file wrongly.
Fix admin/includes/configure.php so that DIR_FS_ADMIN points to your admin and not your store's main folder as it is currently!
That'll get things working.
As for the image, what you posted is fine, that's the standard for Zen Cart. The example is from a store with a custom (better ;) ) layout/template from the standard Zen Cart installation.
All the best...
Conor
ceon
-
Re: Back In Stock Notifications
Greetings from South Texas Conor, you tip worked like a charm, now I have an Admin panel and can handle a more custom button (I think). Another problem surfaced; in Catalog>Back In Stock Notifications> clicking "Go" on any selection takes me back to the Admin Login. I will search this tread to see if I can find an answer.
This is an add-on that you will find RDO supporting! Well done!
-
Re: Back In Stock Notifications
I built a small "Out of Stock" button and have it up. I also have the Wish List add-on and it is up and running.
http://ranchdogmolds.com/Temp/new_buttons.gif
This should reduce the size of the Add to Cart box giving me more room for product discription. I also made a Back-In-Stock button but now need to figure out how to put it in place of the text link.
http://ranchdogmolds.com/store/inclu...k_in_stock.gif
Still having that problem with logout back to the Admin login mentioned in my previous post. I'm still looking through the past posts to see if I find it.
-
Re: Back In Stock Notifications
Conor,
I followed your advise in post #58 and now have a neat panel that has my buttons in place...
http://ranchdogmolds.com/Temp/new_buttons02.gif
Every thing has checked out on the customer side but know I must solve the big problem of the logout anytime I go to Catalog>Back In Stock Notifications>. Clicking "Go" on any selection from the drop-down menu takes me back to the Admin Login. The action is not being captured in a debug so I don't even know where to start.
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
Ranch Dog
Greetings from South Texas Conor, you tip worked like a charm, now I have an Admin panel and can handle a more custom button (I think). Another problem surfaced; in Catalog>Back In Stock Notifications> clicking "Go" on any selection takes me back to the Admin Login. I will search this tread to see if I can find an answer.
That doesn't sound right, it sounds like your server may be interrupting the form submission. I'll get in contact with you privately about this as I don't think it's directly related to the module.
Quote:
Originally Posted by
Ranch Dog
This is an add-on that you will find RDO supporting! Well done!
Thanks so much, that brings the number of donations up to 2 in just over a year.. it's greatly appreciated! :)
Quote:
Originally Posted by
Ranch Dog
I followed your advise in post #58 and now have a neat panel that has my buttons in place..
That looks well, I'm glad you got it sorted the way you wanted it.
Thanks again for supporting us, you're a rare gem!
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
conor
Thanks so much, that brings the number of donations up to 2 in just over a year.. it's greatly appreciated! :)
That is a shame in that this is a great add-on and given the amount of support you give to get and keep it running!
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
conor
Hi,
No, it's not an issue. You've made some sort of mistake and deleted the file on your site or changed the permissions or something. Check it out and restore the file if necessary and things should work fine.
All the best..
Conor
ceon
i got it working but for some reason i needed the theinc.html.back_in_stock_notifications.html file to be in the following folder /includes/templates/template_default/template/
for some reason it didn't work if it was in my template/template folder
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
MB1
i got it working but for some reason i needed the theinc.html.back_in_stock_notifications.html file to be in the following folder /includes/templates/template_default/template/
for some reason it didn't work if it was in my template/template folder
Are you using the latest version of the software, from version 2.4.0 upwards the functionality to load the template from the store's template directory should work.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Hi,
Sorry if this has been asked before I glanced through the thread (40+ pages) but could not see it. Is there a way for me to remove someone from a notification list without going into the database etc? We have some people who subscribe to everything, no idea why or what good it does them, and we also have one-off deals arranged for certain customers and again for unknown reasons some people subscribe to these too. When I run my 'send notifications' dozens of these needless emails are sent. There is also a product we have in the store that we dont sell, its for info purposes only but I have lost count how many people have subscribed for back in stock info on it so it would be handy to tidy these bits up if I can.
Cheers
N
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
PudzPud
Is there a way for me to remove someone from a notification list without going into the database etc?
I'm afraid the only way to do this is through database software such as PHPMyAdmin. Sorry, but there are no plans to add the functionality you are talking about.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
No problem, i'll just have to learn more about phpmyadmin.
thanks anyway its a great mod
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
PudzPud
No problem, i'll just have to learn more about phpmyadmin.
thanks anyway its a great mod
PHPMyAdmin's a great tool to learn how to use. Of course, it's a pity that the software doesn't do all you want it to out of the box but I'm glad you like it anyway, thanks for the nice comments!
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
I just found this nice module and trying to integrate it to our test shop. Looks very promising!
After little wondering why module is showing a notification subscribe link on product listing page although I'm just subscribed, I made following little modification;
In the functions_general.php file on line 1167:
product_id = '" . (int)$_GET['products_id'] . "'
to
product_id = '" . $product_id . "'
After that modification link is showed as expected. Probably a bug or have I misunderstood something?
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
ArtO
I just found this nice module and trying to integrate it to our test shop. Looks very promising!
Glad you like it! :)
Quote:
Originally Posted by
ArtO
After that modification link is showed as expected. Probably a bug or have I misunderstood something?
It's a minor bug but it is indeed a bug.. silly wee one too! I'll include this change in the next version.
Clearly I must have forgotten to update the code for the buy now button when I added the ability to subscribe to the back in stock notification list straight from the product listing page.
Thanks for letting me know.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Hello Everybody,
I am having problems installing Back In Stock Notifications. to be more specific adding the SQL patch. I did that by inserting the mysql file, I did that by inserting the plain text and I tried with my phpMyAdmin as well. Nothing worked.
I am using Zen Cart 1.3.8a, MySQL5.0.
If I do the patching with zen cart I am getting these messages:
11 statements processed.
Error ERROR: Cannot insert configuration_key "BACK_IN_STOCK_NOTIFICATION_ENABLED" because it already exists
Error ERROR: Cannot insert configuration_key "" because it already exists
Error ERROR: Cannot create table back_in_stock_notification_subscriptions because it already exists
Warning Note: 3 statements ignored. See "upgrade_exceptions" table for additional details.
At admin area in configuration menu I can see "Back in stock Notifications" option and it works, but there is no Catalog > Back In Stock Notifications Menu.
The module seems to be working partly. I can send Notification via e-mail but when I put my item back in stock there is no notification for back in stock..
please..... if anyone knows... please HELP...
Thank you in advance...
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
karapus
Hello Everybody,
I am having problems installing Back In Stock Notifications. to be more specific adding the SQL patch. I did that by inserting the mysql file, I did that by inserting the plain text and I tried with my phpMyAdmin as well. Nothing worked.
I am using Zen Cart 1.3.8a, MySQL5.0.
If I do the patching with zen cart I am getting these messages:
11 statements processed.
Error ERROR: Cannot insert configuration_key "BACK_IN_STOCK_NOTIFICATION_ENABLED" because it already exists
Error ERROR: Cannot insert configuration_key "" because it already exists
Error ERROR: Cannot create table back_in_stock_notification_subscriptions because it already exists
Warning Note: 3 statements ignored. See "upgrade_exceptions" table for additional details.
At admin area in configuration menu I can see "Back in stock Notifications" option and it works, but there is no Catalog > Back In Stock Notifications Menu.
The module seems to be working partly. I can send Notification via e-mail but when I put my item back in stock there is no notification for back in stock..
please..... if anyone knows... please HELP...
Thank you in advance...
ok, do not reply to my post yet...
there was missing menu because I did not change admin folder's name... stupid me...
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
karapus
ok, do not reply to my post yet...
there was missing menu because I did not change admin folder's name... stupid me...
Glad you got it sorted and an easy mistake to make. I may try to stress the fact that the admin folder's name is often changed in the next release as everyone's changing its name these days for Zen Cart's suggested security by obscurity! :)
All the best...
Conor
ceon
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
countrycharm
After looking at the Cherry Zen tpl_product_info_display file I notice it is not the same as the standard zen tpl_product_info_display file. It has bee modified for the Cherry Zen Template by jettrue the maker of the Cherry Zen Template. I compared the 2 file in WinMerge and the only 2 pieces of code I added from the Back In Stock Notifications tpl_product_info_display file to the the one in cherry zen was this here if anybody else has run into this problem.
In the cherry zen tpl_product_info_display file add this code to line 100.
and on line 234 add this code
Your Back In Stock Notifications will work and look like it should.
I thought I would share this with all cherry zen template users who would like to use this Module.
Thanks Coner for this very nice Module.
Thanks so much for this. I have the same problem with Cherry Zen and the description appearing above the notification part.
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
amyleew
Thanks so much for this. I have the same problem with Cherry Zen and the description appearing above the notification part.
Your are very welcome. Glad it worked out for you.
-
Re: Back In Stock Notifications
Hello guys,
I am wondering is it possible to include a "contact number" field when the customers fill up for restock? *The contact number may not be a cumpolsory field, customer can either fill it up or dont*
and then the admin part will also show the contact number of the customer :)
Thanks a lot ya!
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
juneloweelyn
I am wondering is it possible to include a "contact number" field when the customers fill up for restock? *The contact number may not be a cumpolsory field, customer can either fill it up or dont*
and then the admin part will also show the contact number of the customer :)
That should be easy enough to add on to the software. It would be custom coding though, so you'll have to pay someone to add the functionality.
They'll need t add the phone number field to the form, the form handling code, the database recording code, then the admin display code.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
conor
Hi,
That should be easy enough to add on to the software. It would be custom coding though, so you'll have to pay someone to add the functionality.
They'll need t add the phone number field to the form, the form handling code, the database recording code, then the admin display code.
All the best..
Conor
ceon
Hey conor,
I wonder whether u help to do the programming for this? or how much u will charge?
Thanks for ur info :)
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
juneloweelyn
Hey conor,
I wonder whether u help to do the programming for this? or how much u will charge?
Thanks for ur info :)
Conor can not respond to you here on the forum in regard to this. You can contact Conor here for any further information.
-
Re: Back In Stock Notifications
Time once again to thank Conor for this amazing contribution! Folks who look in and are curious to know if it's worth adding: this is the best marketing tool we have and it's free! We have many marketing tools but this one always tops the list. We just had a record sales day yesterday thanks entirely to Conor.
Check your inbox, mate! :cheers: Have a few on Brushwood's tab. Thanks as always for your good work.
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
brushwoodnursery
Time once again to thank Conor for this amazing contribution! Folks who look in and are curious to know if it's worth adding: this is the best marketing tool we have and it's free! We have many marketing tools but this one always tops the list. We just had a record sales day yesterday thanks entirely to Conor.
Check your inbox, mate! :cheers: Have a few on Brushwood's tab. Thanks as always for your good work.
Really glad you had your best ever sales day, well done!
Thanks very much for your encouraging comments.
And thanks even more for the donation.. it's so nice to receive and so greatly appreciated!
We've a slight update to the software which will be released early in January.
In the meantime have a great Christmas break and roll on another record sales day! :)
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Hello,
I was having problem with special chars in title and the display in the bisn form at the bottom of the page. As my shop is in utf8 it shows the ?
Now i recently noticed that replacing htmlentities in tpl_product_info_display.php solves the problem like so:
PHP Code:
$intro_text = sprintf(BACK_IN_STOCK_NOTIFICATION_TEXT_FORM_INTRO,
//htmlentities($products_name));
strip_tags($products_name));
Is it known that htmlentities doesn't cope well with utf8?
Are there drawbacks i should consider changing the code like this?
thanks,
jeroen
-
Re: Back In Stock Notifications
Hi Jeroen,
Quote:
Originally Posted by
nagelkruid
Is it known that htmlentities doesn't cope well with utf8?
htmlentities without any parameters doesn't support UTF8. You need to upgrade toa more recent version of Ceon Back In Stock Notifications, support for UTF8 was added in April 2009!
(2.6.0 is most recent release, a slightly newer version will be out later this month).
For your reference:
PHP Code:
htmlentities($products_name, ENT_COMPAT, CHARSET)
..is how UTF8 is supported in the htmlentities function.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Quote:
(2.6.0 is most recent release, a slightly newer version will be out later this month).
I have stock by attributes will the new version have support to be able to work to show the actual attributes that come back in stock too?
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
conor
Hi Jeroen,
(2.6.0 is most recent release, a slightly newer version will be out later this month).
For your reference:
PHP Code:
htmlentities($products_name, ENT_COMPAT, CHARSET)
..is how UTF8 is supported in the htmlentities function.
Ahh, thats too bad, i just downloaded and used version 2.2.4 which was the latest available in the zen-cart downloads section. Didn't realise there would be a newer version elsewhere, i'll go and find that one.
Thanks for explaining the htmlentities, i still have some minor issues with utf8, it is good to know i can use the function in this way to support the char set.
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
supersnow
I have stock by attributes will the new version have support to be able to work to show the actual attributes that come back in stock too?
No. Stock by attributes will NEVER be supported.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
nagelkruid
Ahh, thats too bad, i just downloaded and used version 2.2.4 which was the latest available in the zen-cart downloads section.
Oh dear, I didn't realise the downloads area was so out of date! That downloads area is such a pain (for developers, obviously it's handy for users)!
I'll upload the new version to it of course.
Quote:
Originally Posted by
nagelkruid
Thanks for explaining the htmlentities, i still have some minor issues with utf8, it is good to know i can use the function in this way to support the char set.
Yes, it's good to know how these things work for future use.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
cancel post , found new version, thanks!
-
Re: Back In Stock Notifications
I installed the mod but whenever I try to access the Catalog=>Back In Stock it takes me to the log in page with out actually ednding my session, just taking me to the page. I haven't yet installed the css and js files in the docs foldere because I don't know where they go. Where do they go?
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
novastar
I installed the mod but whenever I try to access the Catalog=>Back In Stock it takes me to the log in page with out actually ednding my session, just taking me to the page. I haven't yet installed the css and js files in the docs foldere because I don't know where they go. Where do they go?
To be more specific, I can get to the page but whenever I try to run one of the options from the dropdown list, what I described in the above post happens.
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
novastar
To be more specific, I can get to the page but whenever I try to run one of the options from the dropdown list, what I described in the above post happens.
What version of Zen Cart are you using?
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
-
Re: Back In Stock Notifications
This is bad and good, the issue isn't only happening with this module so I can't say that it is this module thats causing it. Don't want to waste your time, any suggestions as to what may be causing this behavior is still appreciated.
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
novastar
This is bad and good, the issue isn't only happening with this module so I can't say that it is this module thats causing it. Don't want to waste your time, any suggestions as to what may be causing this behavior is still appreciated.
This definitely *isn't* a problem with the module.
It sounds like you have a problem with either the sessions on your admin side or have isntalled something which is invalidating your login and bringing you to the login page. Why you don't have to login again is beyond me.
Check your extra_functions folder as well as the settings in your admi configure.php file.
I wish you luck in getting this sorted.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Thanks, but I have two questions. Is there a reverse for the mySQL patch and where are the js and css files in the docs folder supposed to go?
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
novastar
Thanks, but I have two questions. Is there a reverse for the mySQL patch
No, it should be easy enough to come up with your own though if desired. I don't see why you'd bother if you want the software on your site.. it's not the source of your problems.
Quote:
Originally Posted by
novastar
and where are the js and css files in the docs folder supposed to go?
They don't go anywhere, they are part of the docs!
Please read the installation instructions once again to be sure you have carried out the installation steps correctly.
I'll reaffirm though that the problem you are having is nothing to do with the module and therefore inappropriate to be discussed here.
Hope you can get it sorted.
All the best...
Conor
ceon
-
Re: Back In Stock Notifications
Hello Cron,
I've just gone to install v2.2.4 of your module, and all the installation seems to go ok.
I then change the quantity of a product to 0, the text 'To be notified when this product is back in stock please click here.' comes up when I look at the product, but when I click on the link nothing happens.
Any help please?
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
darkmarauder
Hello Cron,
Who's Cron? :)
Quote:
Originally Posted by
darkmarauder
comes up when I look at the product, but when I click on the link nothing happens.
It sounds like the form is missing form your product_info page.
You'll have to follow the installation procedure again but this time be sure you add the form to the right version of your product_info template(s)..
If you have a template override in use (you have a modified version of tpl_product_info_display.php in your includes/templates/YOUR_TEMPLATE/templates folder) then you need to merge the BISN modified template file template with your override file.
By the way, the latest version is 2.6.0.. download and install it instead of that old version.
If that's not the version in the Zen Cart downloads area then obviously I'll need to release a new version there. You can always get the latest version from the ceon website.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Hi Conor,
I had 2.2.4 on my 1.3.8 version of Zen Cart and it worked great. Since I upgraded my store to v1.3.9h and BISN v.2.6.0 it has not worked properly.
Everything looks right, but when I enter the name an email address in the form and click on the "notify me" button, it goes to the shopping cart page. When I check the admin "back in stock notifications" list, it is not there, it wasn't written into the database table.
Any suggestions?
Thanks!
Lisa
-
Re: Back In Stock Notifications
Hi Lisa,
It sounds like you've messed up the installation and that the notification form is *inside* the product's form.. so instead of submitting to the back in stock notification handler page, it's submitting to the shopping cart ("Add to cart") page.
You'll need to install it again, taking greater care when modifying your tpl_ file(s).
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
I apologize if this has been answered previously.
Zencart version: 1.3.9h
Ceon BIS version: 2.6.0
Everything works great except when I click to email the back in stock notifications, I get the following error message:
Email Error: Could not instantiate mail function. Please check Admin->Configuration->Email Options->Email Transport.
Then I receive an email to our admin address with the Subject: Mail failure - no recipient addresses
The email says:
Quote:
A message that you sent contained no recipient addresses, and therefore no
delivery could be attempted.
------ This is a copy of your message, including all the headers. ------
To:
Subject: NY Biker Gear Back In Stock Notification
Date: Fri, 25 Feb 2011 12:19:08 -0500
Return-Path:
[email protected]
From: NY Biker Gear <
[email protected]>
Reply-to: NY Biker Gear <
[email protected]>
Message-ID: <
[email protected]>
X-Priority: 3
X-Mailer: PHPMailer [version 1.73] via Zen Cart
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="iso-8859-1"
Dear xxx xxxxxxx,
We have restocked a product you asked to be notified about.
Please check it out before it goes out of stock again!
--------------------------------------------------
Product Back In Stock
--------------------------------------------------
--------------------------------------------------
This e-mail is sent in accordance with the US CAN-SPAM Law in effect
01/01/2004. Removal requests can be sent to this address and will be honored
and respected.
My Email Transport is set to PHP and all other emails I send work fine.
Have I missed something?
-
Re: Back In Stock Notifications
Hi! my problem was with email_template files because my default language is spanish (code "sp"), so there were some warnings about file locations that only could be solved by duplicating email_template_back_in_stock_* files in both email/ and email/sp/ directories. I found that the solution for full language dependence in email templates was by replacing:
admin/includes/functions/back_in_stock_notification_functions.php
Code:
$text_msg_source = file_get_contents(DIR_FS_EMAIL_TEMPLATES . 'email_template_back_in_stock_notification.txt');
by
Code:
$langfolder = (strtolower($_SESSION['languages_code']) == 'en') ? '' : strtolower($_SESSION['languages_code']) . '/';
$text_msg_source = file_get_contents(DIR_FS_EMAIL_TEMPLATES . $langfolder .
'email_template_back_in_stock_notification.txt');
includes\modules\pages\back_in_stock_notification_subscribe\header_php
Code:
$text_msg_source = file_get_contents(DIR_FS_EMAIL_TEMPLATES . 'email_template_back_in_stock_notification_subscribe.txt');
by
Code:
$langfolder = (strtolower($_SESSION['languages_code']) == 'en') ? '' : strtolower($_SESSION['languages_code']) . '/';
$text_msg_source = file_get_contents(DIR_FS_EMAIL_TEMPLATES . $langfolder . 'email_template_back_in_stock_notification_subscribe.txt');
so you can place the whole email templates into email/your_language_code/ directory
Hope that helps.
-
Re: Back In Stock Notifications
I am trying the new BISN 2.6.0 and installed/upgraded ZC 1.3.9h. The earlier version of BISN was working well on ZC 1.3.8a.
The following is the error that i am getting:
when i run mysql: i get the below message
" 11 statements processed.
ERROR: Cannot create table back_in_stock_notification_subscriptions because it already exists
Note: 1 statements ignored. See "upgrade_exceptions" table for additional details."
i see the BISN on my site if i subscribe a product i als get a mail.
but when i go to catalog->BISN i get the below message:
https://www.xxxxxxxx.com/store/xxxxx...ifications.php. It may be down for maintenance or configured incorrectly.
Please help
-
Re: Back In Stock Notifications
I am trying the new BISN 2.6.0 and installed/upgraded ZC 1.3.8.
THe problem that im having is that nothing is come through when i do a test. It keep saying that There are no notifications to be sent at this time. But i know there is because i do a test notification. I get no emails or nothing, there is also nothing being recorded in the database mysql version is 5.
Can someone tell me what is happending and how to fix this problem.
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
dscott1966
I am trying the new BISN 2.6.0 and installed/upgraded ZC 1.3.8.
THe problem that im having is that nothing is come through when i do a test. It keep saying that There are no notifications to be sent at this time. But i know there is because i do a test notification. I get no emails or nothing, there is also nothing being recorded in the database mysql version is 5.
Can someone tell me what is happending and how to fix this problem.
Does anyone know how to fix this problem???????
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
Boggled
I apologize if this has been answered previously.
Zencart version: 1.3.9h
Ceon BIS version: 2.6.0
Everything works great except when I click to email the back in stock notifications, I get the following error message:
Email Error: Could not instantiate mail function. Please check Admin->Configuration->Email Options->Email Transport.
Then I receive an email to our admin address with the Subject: Mail failure - no recipient addresses
(It is apparently not picking up on the subscriber's email address and inserting it for some unknown reason.)
My Email Transport is set to PHP and all other emails I send work fine, including when someone subscribes to a Back In Stock Notification.
The only thing not working properly is the notification/email process itself.
Have I missed something?
Still trying to get this fixed.
Something else I noticed...when I send a 'test email' it goes thru and I receive it (admin copy), but it doesn't include a link to the product.
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
Boggled
Still trying to get this fixed.
Sorry, I have no idea what you've done wrong.
The software has no known issues, it works for everyone else.
You should try reinstalling it from scratch.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
Boggled
Still trying to get this fixed.
Something else I noticed...when I send a 'test email' it goes thru and I receive it (admin copy), but it doesn't include a link to the product.
I have had occasional errors with this module because the customer managed to get some invalid data or no data in...
If you have weird errors with emails and only related to this module try this:
select Articles-->back in stock notifications in admin
select look at all products sorted by name...etc
now find the products that have stock again and check the user data next to it.
I have seen issues with an empty e-mail address which will not be captured by the send notification action
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
nagelkruid
I have had occasional errors with this module because the customer managed to get some invalid data or no data in...
If you have weird errors with emails and only related to this module try this:
select Articles-->back in stock notifications in admin
select look at all products sorted by name...etc
now find the products that have stock again and check the user data next to it.
I have seen issues with an empty e-mail address which will not be captured by the send notification action
ps: i actually just had this and solved:
if this is the case and you want to delete the product_id from the database you could try this from the patch tool:
delete from back_in_stock_notification_subscriptions where product_id = 1416;
off course this only applies if your product id is indeed 1416 and if there is only one customer subscribed to this product, if you have other (valid) subscribers to the product you would have to make the query more advanced so you will leave those entries in the database.
***and just for the record, i was blaming the customer (off course) but it may have been very possible that the source of the error is actually behind this keyboard:lamo:
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
nagelkruid
I have had occasional errors with this module because the customer managed to get some invalid data or no data in...
That should be impossible with a correctly installed version of the module. It checks the format of the e-mail address so only valid e-mail addresses can be stored.
The only situation in which this could possibly happen is if the customer subscribed to the notification has deleted their account, in which case after the notification is sent out the e-mail to them should fail and the record be deleted.
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
conor
Hi,
The only situation in which this could possibly happen is if the customer subscribed to the notification has deleted their account, in which case after the notification is sent out the e-mail to them should fail and the record be deleted.
All the best..
Conor
ceon
Hi Conor,
I think that's exactly what happened as the name that was left is one that i use for testing a lot and that is about the only account that gets deleted once in a while.
However, the record doesn't get deleted, it results in the error described previously. No problem tough, shouldn't happen in any "normal" situation.
Thanks!
Jeroen
-
Re: Back In Stock Notifications
Hi Conner, I have exactly the same error. All mail functions work fine, except sending the actuall notification that the product is back in stock :( I have a complete new/fresh zencart installation.
I will try a fresh install tonight and let you know.
-
multiple languages
In reference to the above post#475
Quote:
I found that the solution for full language dependence in email templates was by replacing...
What EXACTLY was not working?
I have duplicated the templates into the /es folder below the /email root and in my testing all emails are sent in the same language as that selected at the moment of use, correctly.
(The only changes I have made have been to replace the hard-coded "Dear" and "Link" with defines, otherwise it has worked correctly.)
-
SQL to add Product Notifications to Back In Stock Notifications
Hopefully useful -
We briefly used "Product Notifications" before realizing "Back In Stock Notifications" existed.
After installation we wanted to add the 2,500 customers who signed up for under Product Notifications into the BISN table. Here is the SQL I used- hopefully it is of use to anyone else needing to do the same. (no warrantees, guarantees, etc).
Note that we use zen_ before table names- remove that if you don't. It is assumed that all Product Notification customers have a customer_id (login) since they aren't allowed to signup otherwise...
INSERT into `zen_back_in_stock_notification_subscriptions`
(
`product_id`,
`customer_id`,
`name`,
`email_address`,
`date_subscribed`
)
SELECT `products_id`, pn.`customers_id`, CONCAT(`customers_firstname`,' ',`customers_lastname`), `customers_email_address`, `date_added`
FROM `zen_products_notifications` pn, `zen_customers` c
where pn.customers_id = c.customers_id
If there is anything wrong with my SQL, or doing this was a Bad Thing to have done, do please let me know!
edit: Just realized you don't actually need the email for registered customers- it is null for rows with a customer_id, so you could delete that part...
-
Re: SQL to add Product Notifications to Back In Stock Notifications
Hi,
Quote:
Originally Posted by
jgreene
If there is anything wrong with my SQL, or doing this was a Bad Thing to have done, do please let me know!
No, that's a good idea, and it looks like it (has) will work just fine.
Working on a small update to the module today, hopefully release it soon, so look out for that.
All the best...
Conor
ceon
-
Ceon Back In Stock Notifications v3.0.0 Released!
Hi,
I'm very happy to say that (at long last) the new version of the software has been released.
This thread is officially closed as the issues discussed here have been fixed in the new version.
Please use the new thread for any support queries.
Enjoy the new version! We hope it continues to bring success to your stores!
All the best..
Conor
ceon
-
Re: Back In Stock Notifications
I am running version 1.3.9h so Back In Stock Notification was installed simultaneously.
My question is...Can the subscriber be notified EACH and every time the product becomes Back In Stock?
It is imperative because I happen to have many on the Waiting List and can make available only a few plants each time.
It seems the customers who do not respond immediately are never again notified the next time I offer the plant.
Please advise if there is anything I can do or add on to make this change.
Thanks so much!
Joni
-
Re: Back In Stock Notifications
Quote:
I am running version 1.3.9h so Back In Stock Notification was installed simultaneously.
Eh? BISN is an add-on.
Quote:
Please advise if there is anything I can do or add on to make this change.
..reading post #489 would be your best step.
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
SRQHoyas
I am running version 1.3.9h so Back In Stock Notification was installed simultaneously.
My question is...Can the subscriber be notified EACH and every time the product becomes Back In Stock?
It is imperative because I happen to have many on the Waiting List and can make available only a few plants each time.
It seems the customers who do not respond immediately are never again notified the next time I offer the plant.
Please advise if there is anything I can do or add on to make this change.
Thanks so much!
Joni
Your best bet is ask the question over in the new thread for Ceon Back In Stock Notifications 3.0.0
This is the thread for the old version.
-
Re: Back In Stock Notifications
Hello!
I would like to install this, but it said in the plugin thread that it changes the buy now, with notify when back in stock. On my page people can still buy products that is out of stock, and they will be first in line when the items are back in stock. Is there an option that there is just the box beneath the product description that customers can be mailed when they are back in stock, and other can still buy things that is not in stock?
-Kjetil Hansen
-
Re: Back In Stock Notifications
Hi,
Quote:
Originally Posted by
kjetilhansen
I would like to install this, but it said in the plugin thread that it changes the buy now, with notify when back in stock. On my page people can still buy products that is out of stock, and they will be first in line when the items are back in stock. Is there an option that there is just the box beneath the product description that customers can be mailed when they are back in stock, and other can still buy things that is not in stock?
I'm answering this in the correct thread for the latest version.
All the best...
Conor
ceon
-
Re: Back In Stock Notifications
On the admin side on the list of Products with Subscriptions, is it possible to add a column showing the model number? This would definitely help when I'm reordering products. I am using Zen 1.5. Thanks.
-
Back In Stock notification issues
Hello,
I am trying to send out back in stock notifications and it comes up with an error basically stating it cannot send to customer x.
When I list all subscriptions I can see the products and the one that customer x wants to know about but it appears they didn't enter their email address - so that field is blank.
How can I remove this entry so that the other 100 odd notifications can go out?
Phil
www.colourpatch.com.au
-
Re: Back In Stock Notifications
I regret to inform you that Conor unexpectedly passed away. Please see http://www.zen-cart.com/showthread.php?202939
Of course, do post your message as others may be able to help you with this module.
-
Re: Back In Stock Notifications
Hello,
I am using this module(Ceon back in stock notification) but it doesn't seems to be working.
Firstly is is not showing on front end and also in admin end it is not present in configuration section.
In admin section it is under catalog section where we can send email and pending notifications.
Thanks
Beenu
-
Re: Back In Stock Notifications
Quote:
Originally Posted by
testingclient
Hello,
I am using this module(Ceon back in stock notification) but it doesn't seems to be working.
Firstly is is not showing on front end and also in admin end it is not present in configuration section.
In admin section it is under catalog section where we can send email and pending notifications.
Thanks
Beenu
If you are using zen cart v1.3.9h go back and make sure you installed the module right. Sounds like you didn't install it right. It is very well documented so read the doc again.
Your best bet is ask the question over in the new thread for Ceon Back In Stock Notifications 3.0.0
This is the thread for the old version. If you ask in the other thread it will be the same answer check you insulation again.
-
Re: Back In Stock Notifications
Conor Kerr Ceon passed away from a brain tumor last week. He will be missed in the Zen Cart community, I am sure!