For the Product page image, "ImageURL", I want to display
some text if there is not image available (NULL in the database).
ShowProduct.htm
If [[ConLib:ProductImage ShowImage="Image"]]
then <font> some text . . . .
Can this be done? thanks
Displaying text if Product Image is not available.
Re: Displaying text if Product Image is not available.
Hopefully it will help you
Code: Select all
#if($Product.ImageUrl.Length==0)
//Your Custom Text
#else
[[ConLib:ProductImage ShowImage="Image"]]<br />
#end
Re: Displaying text if Product Image is not available.
That worked. Thanks Mazhar.