News:

Welcome to SMF Ads Support Forum

Main Menu
Coinbase

Edit SMF PSP theme

Started by onlinebisnes, March 19, 2007, 09:37:11 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

onlinebisnes

Hi,
I'm using SMF 1.1.2 with smfads 2.3.
Can someone help me to edit this PSP SMF theme?
Below are the theme files
Thanks in advance.

kwastie

me to i want this one alsow

bigguy

I will try to get to this tomorrow if I have time.

kwastie


onlinebisnes

Quote from: bigguy on March 20, 2007, 02:15:09 AM
I will try to get to this tomorrow if I have time.

Hi bigguy,
hope that you have a time to look back at my request.
thanks

kwastie

:( still waiting, could you have it tommorrow? please

bigguy

Ok, try these. Back them up before trying.

The General

Quote from: bigguy on March 28, 2007, 01:03:44 PM
Ok, try these. Back them up before trying.
They don't seem to want to work. Messes up the images. I've managed to get the mod to make some of the changes, but it doesn't show on all the pages it should do.

onlinebisnes

it works for me.got ads show up in my forum again.
thanks biguy

jimbo

Hi, thanks for the great work on this theme, it's almost working, but the image at the top of the page does not display (I managed to fix this by copying some php code from the original) and also the right hand side bar and bottom bars are not displaying correctly..

The following code is where i can find the problem, but I don't know what it means (when i remove line 372: echo $ads['content']; it doesn't work anymore).

Any help would be appreciated!

Quoteif (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);
   }