Hi,
You'll need to do some custom coding of the following page:
includes\modules\pages\back_in_stock_notification_subscribe\header_php.php
You should remove any reference to the name and confirmation form fields ('name'/'cofnospam').
You could then remove these form fields from the template file:
includes\templates\template_default\templates\inc.html.back_in_stock_notificatio ns.html (Copy the template file to your template directory first of course).
Because of the way the Ceon template class works (which is rather nifty if I don't say so myself), these are the only two files that should need changed for the actual website.. the final file(s) would be the email templates, to remove the customer's name for example. Pretty standard stuff!
It's up to you of course!
All the best...
Conor
ceon
Hi conor
i have searched every post without fortune.
I have installed the mod just like the instructions say!!
After all when i go to my account all disappear except the left side sideboxes and the header.
When i upload the old tpl_account _default all come normal!!!
Plus,i use tpl_product_free_shipping_info_display instead tpl_product_info_display,in that page nothing different.
Can you help me?
TY
www.egame74.com console accessories
Hi,
That means that the template file is failing, probably with a PHP error or because the file wasn't uploaded fully. Try uploading it again.
If it is still failing then you've got something wrong in the code somewhere.. please search this forum for "blank page" and follow the instructions in the wiki about enabling the display of PHP errors.. you will more than likely then see an error message which will explain what is wrong with your site.
I'm afraid you'll have to use software like winmerge to add the necessary code to that file. It isn't currently supported, only the standard "product" type is supported, not music product types or free shipping product types etc.
Hope that all helps!
All the best...
Conor
ceon
www.egame74.com console accessories
Hi,
It definitely sounds like your FTP software isn't uploading the file correctly (for one thing the file is only 116 lines long so I'd guess your FTP software is so bad that it's adding extra newlines/carriage returns). Try using FireFTP for Firefox and reupload the file (it's a free download/extension).
If that's not it then you'll need to get a developer to manually debug this for you, the file should work fine when uploaded correctly.
It doesn't have support for the product type you mentioned but if you have any knowledge of PHP/HTML it should be easy to copy the necessary code across from the normal "product" template file (tpl_product_info_display.php) to the "product_free_shipping" template file (tpl_product_free_shipping_info_display.php).. all of the additions the module makes to the standard Zen Cart template files are clearly marked in the source.
You'll also need to edit the file
includes/classes/class.back_in_stock_notificationsProductInfo.php
and add in a notifier attachment for your product type (Add it below 'NOTIFY_MAIN_TEMPLATE_VARS_EXTRA_PRODUCT_INFO', separating the lines with a comma).
E.g. change the lines to:
Again, if you aren't comfortable with PHP/HTML you should get your developer to do this for you!PHP Code:$zco_notifier->attach($this,
array(
'NOTIFY_MAIN_TEMPLATE_VARS_EXTRA_PRODUCT_INFO',
'NOTIFY_MAIN_TEMPLATE_VARS_EXTRA_PRODUCT_FREE_SHIPPING_INFO'
)
);
All the best..
Conor
ceon
Last edited by conor; 19 Oct 2009 at 10:15 PM.
www.egame74.com console accessories