How do I remove the side search bar to where it shows all the threads in that forum instead of clicking one of the things to take me to a category that shows them?
Haven't tried, but probably remove the following from the
trdf_forumdisplay_threadlist template.
HTML Code
style="{$filters_set['__all']['visiblecss']}"
|
You may wish to remove {$rules} tool.
hmm guys, how to add images to buy/sell,state and condition ?
Based on the codes in the trdf_forumdisplay_thread template:
HTML Code
<img src="{$theme['imgdir']}/{$GLOBALS['threadfields']['trdftnt']}.png" alt="Need To {$GLOBALS['threadfields']['trdftnt']}" title="Need To {$GLOBALS['threadfields']['trdftnt']}" />
<img src="{$theme['imgdir']}/{$GLOBALS['threadfields']['trdfstatus']}.png" alt="{$GLOBALS['threadfields']['trdfstatus']}" title="{$GLOBALS['threadfields']['trdfstatus']}" />
<img src="{$theme['imgdir']}/{$GLOBALS['threadfields']['trdfcond']}.png" alt="{$GLOBALS['threadfields']['trdfcond']}" title="{$GLOBALS['threadfields']['trdfcond']}" />
|
you need to upload Buy.png and Sell.png (for buy/sell), New.png and Used.png (for Condition), Open.png and Closed.png (for status) to your themes' images folder.
Basically, the image name is the same as the value lists contents.
(11-27-2011 03:25 AM)RateU Wrote: [ -> ]Based on the codes in the trdf_forumdisplay_thread template:
HTML Code
<img src="{$theme['imgdir']}/{$GLOBALS['threadfields']['trdftnt']}.png" alt="Need To {$GLOBALS['threadfields']['trdftnt']}" title="Need To {$GLOBALS['threadfields']['trdftnt']}" />
<img src="{$theme['imgdir']}/{$GLOBALS['threadfields']['trdfstatus']}.png" alt="{$GLOBALS['threadfields']['trdfstatus']}" title="{$GLOBALS['threadfields']['trdfstatus']}" />
<img src="{$theme['imgdir']}/{$GLOBALS['threadfields']['trdfcond']}.png" alt="{$GLOBALS['threadfields']['trdfcond']}" title="{$GLOBALS['threadfields']['trdfcond']}" />
|
you need to upload Buy.png and Sell.png (for buy/sell), New.png and Used.png (for Condition), Open.png and Closed.png (for status) to your themes' images folder.
Basically, the image name is the same as the value lists contents.
Thank you that worked well
Any ideas to remove the sidebar only from trading forum ? It shows in in index of trading forum and other than that its not showing anywhere. So how to remove the sidebar from the index ?
Remove the relevant HTML code in the trdf_forumdisplay_threadlist template.
Copy pasta HTML into different templates.