barbarza Posted February 14, 2015 Share Posted February 14, 2015 Hi I want to hide the Domain Pricing section on the domainchecker page. How would I go about doing this? 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted February 14, 2015 Share Posted February 14, 2015 edit /templates/yourtemplate/domainchecker.tpl remove the following HTML Table: <table class="table table-striped table-framed"> <thead> <tr> <th class="textcenter">{$LANG.domaintld}</th> <th class="textcenter">{$LANG.domainminyears}</th> <th class="textcenter">{$LANG.domainsregister}</th> <th class="textcenter">{$LANG.domainstransfer}</th> <th class="textcenter">{$LANG.domainsrenew}</th> </tr> </thead> <tbody> {foreach from=$tldpricelist item=tldpricelist} <tr> <td>{$tldpricelist.tld}</td> <td class="textcenter">{$tldpricelist.period}</td> <td class="textcenter">{if $tldpricelist.register}{$tldpricelist.register}{else}{$LANG.domainregnotavailable}{/if}</td> <td class="textcenter">{if $tldpricelist.transfer}{$tldpricelist.transfer}{else}{$LANG.domainregnotavailable}{/if}</td> <td class="textcenter">{if $tldpricelist.renew}{$tldpricelist.renew}{else}{$LANG.domainregnotavailable}{/if}</td> </tr> {/foreach} </tbody> </table> or simply warp it with comment tag {*<table..... </table>*} 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.