Hello, How can I put description in submission page for each type of submission? like, I want to put description for reciprocal option "Reviewed within 24 hour" after pricing. How can I do that in phpld 3.2.0?
Edit submit.tpl file and look for the reciprocal field/option (use find) and play with that, you can have it all setup and going.
I was trying for last two hours and failed every time.. Can anyone please help me out? Here is my Submit.tpl
sure thing DON.. I just edited the code like this.. {if $price.featured} <tr><td><input type="radio" name="LINK_TYPE" value="featured" {if $LINK_TYPE eq 'featured'}checked="true"{/if}>{l}Featured links{/l}</td><td>{$smarty.const.HTML_CURRENCY_CODE}{$price.featured}</td><td>{l}Review within 24 Hours.{/l}</td></tr> {/if} {if $price.normal gt 0} <tr><td><input type="radio" name="LINK_TYPE" value="normal" {if $LINK_TYPE eq 'normal'}checked="true"{/if}>{l}Regular links{/l}</td><td>{$smarty.const.HTML_CURRENCY_CODE}{$price.normal}</td><td>{l}Review may take time. Only submission of homepage accepted.{/l}</tr> {elseif $price.normal eq 0} <tr><td><input type="radio" name="LINK_TYPE" value="normal" {if $LINK_TYPE eq 'normal'}checked="true"{/if}>{l}Regular links{/l}</td><td>{l}free{/l}</td><td>{l}Review may take time. Only submission of homepage accepted.{/l}</tr> {/if} {if $price.reciprocal gt 0} <tr><td><input type="radio" name="LINK_TYPE" value="reciprocal" {if $LINK_TYPE eq 'reciprocal'}checked="true"{/if}>{l}Regular links with reciprocal{/l}</td><td>{$smarty.const.HTML_CURRENCY_CODE}{$price.reciprocal}</td><td>{l}Review within 24 Hours.{/l}</td></tr> {elseif $price.reciprocal eq 0} <tr><td><input type="radio" name="LINK_TYPE" value="reciprocal" {if $LINK_TYPE eq 'reciprocal'}checked="true"{/if}>{l}Regular links with reciprocal{/l}</td><td>{l}free{/l}</td><td>{l}Review within 24 Hours.{/l}</td></tr> {/if} {if isset($price.free)} <tr><td><input type="radio" name="LINK_TYPE" value="free" {if $LINK_TYPE eq 'free'}checked="true"{/if}>{l}Links with nofollow attribute{/l}</td><td>free</td></tr> {/if} PHP: You can see it working on http://www.thewallhut.com/submit.php Abhik