Hi everybody, I have seen in one post that the company auscity was selling a module to allow users marking their ad as Sold! I can't find it anywhere. Is this still available? Des anyone know how I can get it, please? Thank you
Not sure if it is not on classifiedmods - otherwise you can simply do a test on price == 0 or 9999 and where ever that value is displayed, display the word sold instead. The user then just makes his price = 0 and the word sold is displayed. Obviously you put some text in the template to say put price = 0 if your item is sold. I thought you had templatecodes and if you do it is even easier as you can change just one line in the english.php file.
what I do is create an extra field (tick box) with the value SOLD OUT. Seller can tick this box if the item is sold out. You can display this field in viewlisting & showlistings ,.... format in bold,redcolor,bigger font for maximum effect.
Here is a way that will work but isnt very neat. {if $extrafields.0.title == sold && $extrafields.0.value == True} Show sold image {else} {$price} {/if} That will work with a check box or drop down menu, with the title sold and options True and False, you just need to make sure the weight of the extra field is 1. Nick