ieltd

Topic: Content on jobberbase homepage

Is there a way to put content on jobberbase homepage?

I want relative content for adsense,infolinks etc. ads.

hobo

Re: Content on jobberbase homepage

To display ads or content on homepage only, open one of your template files (header.tpl, home.tpl, sidebar.tpl or footer.tpl) and insert your codes like so:

for javascripts (google ads included):

Code:

{if $CURRENT_PAGE = ''}
{literal}
adsense-javascripts code goes here
{/literal}
{/if}

For other content you do not need {literal}{/literal} tags.

You can use any html code like so:

Code:

{if $CURRENT_PAGE = ''}
<p>html code goes here and will display on homepage only</p>
{/if}