V4.1.x Module for Sold Items

Discussion in 'Modules / Plugins / Modifications' started by magicosta, Jul 5, 2010.

  1. magicosta Customer

    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
  2. seymourjames All Hands On Deck

    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.
  3. magicosta Customer

    Ok, thank you for your reply. I will try that way.
  4. business Customer

    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.
  5. seymourjames All Hands On Deck

    But thsi will not overwrite the PRICE in show listings nor in any of the templates.
  6. bowers01 Genius At Work

    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

Share This Page