Out of stock contact us
Out of stock contact us
Id like a "contact us" field. that will display on out of stock items. User enters there email and clicks send. It will send an email too an address of my choice with there email and the products SKU and name.
Similar requests at this post viewtopic.php?f=45&t=7268
Similar requests at this post viewtopic.php?f=45&t=7268
Re: Out of stock contact us
A number of contact us samples are available in this thread
viewtopic.php?f=47&t=7954
All you need is to download and place a suitable one in your product page and wrap it within a NVelocity if that depends upon InStock value like
viewtopic.php?f=47&t=7954
All you need is to download and place a suitable one in your product page and wrap it within a NVelocity if that depends upon InStock value like
Code: Select all
#if($Product.InStock = 0)
[[ConLib:Custom\ContactUs]]
#end
Re: Out of stock contact us
This NVelocity is not working on Showproduct 1 any idea why?mazhar wrote:A number of contact us samples are available in this thread
viewtopic.php?f=47&t=7954
All you need is to download and place a suitable one in your product page and wrap it within a NVelocity if that depends upon InStock value likeCode: Select all
#if($Product.InStock = 0) [[ConLib:Custom\ContactUs]] #end
Re: Out of stock contact us
What information is being showed by product page where you used the script. For example any error details or something like that are available or not.
Re: Out of stock contact us
No error, It just wont show, I tested changing the if statement to #if($Product) then it shows all the time of course. Its like its not getting the instock quantity?
Re: Out of stock contact us
Well may be your product has some value greater then 0 for in-stock value. Make sure that product in question has in-stock value equal to zero.
Re: Out of stock contact us
Code: Select all
#if($Product.InStock == 0)
[[ConLib:Custom\ContactUs]]
#end
Re: Out of stock contact us
That's great 
