SMF Ads Support Forum

Themes/Language => Theme Support => Topic started by: Soulgirl on November 20, 2008, 01:04:11 PM

Title: Galaxy Theme
Post by: Soulgirl on November 20, 2008, 01:04:11 PM
Hi there :o)

I've installed your mod successfully except for the index.template.php file.

Can someone help with the positioning of the required code?  I've attached my file :)

Thank you so much :)

Karen x
Title: Re: Galaxy Theme
Post by: Soulgirl on November 20, 2008, 05:29:41 PM
I've tried to follow the instructions in the sticky but sadly I'm not able to add the code without getting parse errors all the time :(

I can get all the code in except for the bit after template_menu(); as I don't have that and no matter what I try or where I place the code, it just doesn't work :(

Can someone help me?
Title: Re: Galaxy Theme
Post by: ccbtimewiz on November 22, 2008, 12:13:26 AM
Post the code you're having trouble with.
Title: Re: Galaxy Theme
Post by: Soulgirl on November 22, 2008, 05:10:00 AM
Thanks for replying, much appreciated.  I can't see where to put this bit of code:

//Below the menu ads
if (function_exists("show_indexAds") && function_exists("show_towerleftAds") && function_exists("show_towerrightAds"))
{
$ads = show_indexAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);

//Tower left Ads
$ads = show_towerleftAds();
if(!empty($ads))
echo '<table><tr><td valign="top">', $ads['type']==0 ? $ads['content'] : eval($ads['content']) ,'</td><td width="100%" valign="top">';

unset($ads);
//Tower Right Ads
$ads = show_towerrightAds();
if(!empty($ads))
echo '<table><tr><td width="100%" valign="top">';
unset($ads);
}


When finding template_menu();  in my index.template.php file (which is attached to my first post) I can't insert the code after it without breaking it.

I'm also not sure if I got the bit of code after the </td> in the right place either so I've attached my file with the bits of code I've popped in already that haven't broken the code although I am ending up with a misplaced column advert at the bottom of the page that shouldn't be there.... they should be at the side.
Title: Re: Galaxy Theme
Post by: ccbtimewiz on November 22, 2008, 10:36:25 AM
Find:
  <div id="toolbar">

',template_menu(),'

  </div>


Replace with:

  <div id="toolbar">';

template_menu();

// the ad code

echo '

  </div>
Title: Re: Galaxy Theme
Post by: Soulgirl on November 27, 2008, 11:13:14 AM
YOU are a GOD!  Thank you so very much... really appreciate that!  Do you have anyone you would like me to make a donation to?
Title: Re: Galaxy Theme
Post by: ccbtimewiz on November 29, 2008, 09:21:13 AM
There's a donate button at the top for the ad project.
Title: Re: Galaxy Theme
Post by: Soulgirl on November 29, 2008, 11:17:55 AM
I ran into problems... probably with the placement of the other bits of code... my members complained that the font was so small it was unreadable... I give up LOL
Title: Re: Galaxy Theme
Post by: ccbtimewiz on November 29, 2008, 11:19:23 AM
Link to site?
Title: Re: Galaxy Theme
Post by: Soulgirl on November 30, 2008, 04:41:34 AM
It's www.southernsoul.info/smf but I've replaced the index.template.php file for the original one now.