SMF Ads Support Forum

Themes/Language => Theme Support => Topic started by: bigguy on July 04, 2006, 10:55:33 AM

Title: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on July 04, 2006, 10:55:33 AM
First edit should be made to the file ModSettings.php in the sources directory:
NOTE: This edit should only be done if totally installing this modification manually

Find:

Quote* A check box.  Either one or zero. (boolean)

and replace with:

Quote* A textarea. For multilineal textual values.
   ie. array('textarea', 'nameInModSettingsAndSQL', array('OptionalHeightInRows',
         'OptionalWidthInCols'), &$txt['OptionalDescriptionOfTheOption'],
         'OptionalReferenceToHelpAdmin'),

   * A check box.  Either one or zero. (boolean)

In the same file find:

Quote<td class="windowbg2"><label for="' . $config_var[1] . '">' . (isset($config_var[3]) ? $config_var[3] : $txt[$config_id]) . '</label></td>
                     <td class="windowbg2" width="50%">';

And replace with:

Quote<![CDATA[<td class="windowbg2" valign="top"><label for="' . $config_var[1] . '">' . (isset($config_var[3]) ? $config_var[3] : $txt[$config_id]) . '</label></td>
                     <td class="windowbg2" valign="top" width="50%">';

In same file find:

Quote// If it's a password...

Add before:

Quote<![CDATA[// If it's a textarea.
      elseif ($config_type == 'textarea')
         $context['raw_data'] .= '<textarea id="' . $config_id . '" name="' . $config_id . '"' . (isset($config_var[2][0]) ? ' rows="' . $config_var[2][0] . '"' : '') . (isset($config_var[2][1]) ? ' cols="' . $config_var[2][1] . '"' : '') . ' style="font-family: monospace;">' . htmlspecialchars($modSettings[$config_id]) . '</textarea>';

In same file find:

Quote// Text and passwords!

Before that add:

Quote// Textarea.
      elseif ($var[0] == 'textarea')
         $setArray[$var[1]] = $_POST[$var[1]];

In same file find:

Quote);

   return $config_vars;

After that add:

Quotearray('heading', &$txt['js_ads_title']),
         // Display the ads??
         array('check', 'js_text_displayads_index'),
         array('check', 'js_text_displayads_botindex'),
         array('check', 'js_text_displayads_board_index'),
         array('check', 'js_text_displayads_display'),
         array('check', 'js_text_displayads_message_index'),
         array('check', 'js_text_displayads_firstpost'),
         array('textarea', 'js_text_content',array('10','50'), &$txt['js_text_disc'],'js_text_help'),
      ]]

These are edits for 1 file in  ad_mod_1-0-7_v1-0-2b for smf 1.0.7
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7(Modifications.english.php edits)
Post by: bigguy on July 04, 2006, 11:00:42 AM
NEXT EDIT: In the langauge directory of the theme you are trying to modify find and open "Modifications.english.php"

Find:

Quote?>

After that add:

Quote// Js - Strings

$txt['js_ads_title'] = 'Ad Management';
$txt['js_text_displayads_index'] = 'Display ads on every page (ontop)';
$txt['js_text_displayads_botindex'] = 'Display ads on every page (onbottom)';
$txt['js_text_displayads_board_index'] = 'Display ads on Board Index';
$txt['js_text_displayads_display'] = 'Display ads on Thread';
$txt['js_text_displayads_message_index'] = 'Display ads on Thread Index';
$txt['js_text_displayads_firstpost'] = 'Display ads after first post';
$txt['js_text_disc'] = 'Write your code here';
$txt['js_text_help'] = 'Make sure that your code is compatible with HTML';
$txt['permissiongroup_ad_manage'] = 'Ad Management';
$txt['permissionname_ad_manageperm'] = 'Enable ads';
$txt['permissionhelp_ad_manageperm'] = 'To enable ads to appear for this membergroup, this must be checked';

Close, save and upload. (Only if you have a backup of the original file you are modifying)
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7 (Index.template.php edits)
Post by: bigguy on July 04, 2006, 11:13:30 AM
NEXT EDIT: In your themes directory of the theme you want to modify find the "Index.template.php" file open it.

Find this:

Quote<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr>

And replace with this:

Quote<table width="100%" cellpadding="0" cellspacing="0" border="0">';
if ($modSettings['js_text_displayads_index'] && allowedTo('ad_manageperm'))
{
   echo '   <tr><td id="bodyarea">
         <br />
            <div align="center">',$modSettings['js_text_content'],'</div></td></tr>';
}
echo '<tr>

In same file find:

Quoteecho '

and replace with:

Quoteglobal $modSettings;
   echo '</td></tr>';
if ($modSettings['js_text_displayads_botindex'] && allowedTo('ad_manageperm'))
{
   echo '   <tr><td id="bodyarea">
            <div align="center">',$modSettings['js_text_content'],'</div><br /></td></tr>';
}

   echo '</table>';

Save, close and upload....after backing up the original "Index.template.php"
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7 (BoardIndex.template.php edits)
Post by: bigguy on July 04, 2006, 11:21:29 AM
NEXT EDIT: In the theme directory of the theme you are trying to modify find the "BoardIndex.template.php" file open it and

Find this:

Quoteecho '
<table width="100%" cellpadding="3" cellspacing="0">

And replace with this:

Quoteif ($modSettings['js_text_displayads_board_index'] && allowedTo('ad_manageperm'))
   echo '<div align="center">',$modSettings['js_text_content'],'</div>';
echo '
<table width="100%" cellpadding="3" cellspacing="0">

Save, close and upload...Only after making a backup.

Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7 (Display.template.php edits)
Post by: bigguy on July 04, 2006, 11:30:33 AM
NEXT EDIT: In the theme directory of the theme you are trying to modify find "Display.template.php" open it and

Find:

Quote// Show the linktree as well as the "Who's Viewing" information.

And replace with:

Quoteif ($modSettings['js_text_displayads_display'] && allowedTo('ad_manageperm'))
   echo '<div align="center">',$modSettings['js_text_content'],'</div>';

   // Show the linktree as well as the "Who's Viewing" information.

In the same file find:

Quote</td></tr>';
   }

And replace with:

Quote</td></tr>';
if ($message['id'] == $context['first_message'] && allowedTo('ad_manageperm'))
   if ($modSettings['js_text_displayads_firstpost'])
   {
      echo '

   <tr><td style="padding: 1px 1px 0 1px;">
      <table width="100%" cellpadding="3" cellspacing="0" border="0">
         <tr><td class="windowbg2">
            <table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
               <tr>
                  <td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
                     <b>', $context['forum_name'], '</b>
                     <div class="smalltext">
                     </div>
                  </td>
                  <td valign="top" width="85%" height="100%">
                     <table width="100%" border="0"><tr>
                        <td valign="middle"><img src="', $settings['images_url'], '/post/' . $message['icon'] . '.gif" alt="" border="0" /></td>
                        <td valign="middle">
                           <div style="font-weight: bold;" id="subject_', $message['id'], '">
                              <a href="', $message['href'], '">', $message['subject'], '</a>
                           </div>
                           <div class="smalltext">? <b>', !empty($message['counter']) ? $txt[146] . ' #' . $message['counter'] : '', ' ', $txt[30], ':</b> ', $message['time'], ' ?</div></td>
                        <td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" height="20" style="font-size: smaller;">';

      // Can they reply?  Have they turned on quick reply?
      if ($context['can_reply'] && !empty($options['display_quick_reply']))
         echo '
            ', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/quote.gif" alt="' . $txt[145] . '" border="0" />' : $txt[145]) ,'';
      // So... quick reply is off, but they *can* reply?
      elseif ($context['can_reply'])
         echo '
            ', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/quote.gif" alt="' . $txt[145] . '" border="0" />' : $txt[145]) ,'';

      // Can the user modify the contents of this post?
      if ($message['can_modify'])
         echo '
            ', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/modify.gif" alt="' . $txt[66] . '" border="0" />' : $txt[17]) ,'';

      // How about... even... remove it entirely?!
      if ($message['can_remove'])
         echo '
            ', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/delete.gif" alt="' . $txt[121] . '" border="0" />' : $txt[31]) ,'';

      // What about splitting it off the rest of the topic?
      if ($context['can_split'])
         echo '
            ', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/split.gif" alt="' . $txt['smf251'] . '" border="0" />' : $txt['smf251']) ,'';

echo '
                        </td>
                     </tr></table>
                     <hr width="100%" size="1" class="hrcolor" />
                     <div class="post">', $modSettings['js_text_content'] , '</div>
                  </td>
               </tr>
               <tr>
                  <td valign="bottom" class="smalltext" width="85%">
                     <table width="100%" border="0" style="table-layout: fixed;"><tr>
                        <td colspan="2" class="smalltext" width="100%">
                     </tr><tr>
                        <td valign="bottom" class="smalltext" id="modified_', $message['id'], '">
                        </td>
                        <td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" class="smalltext">
                           <img src="', $settings['images_url'], '/ip.gif" alt="" border="0" />&nbsp;', $txt[511], '
                        </td>
                     </tr></table>
               </tr>
            </table>
         </td></tr>
      </table>
   </td></tr>';
   }

   }

Save, close and upload....Only after making a backup
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7 (MessageIndex.template.php edits
Post by: bigguy on July 04, 2006, 11:33:59 AM
NEXT EDIT: In the theme directory of the theme you are trying to modify find the MessageIndex.template.php open it and

Find:

Quoteecho '
      <table width="100%" cellpadding="3" cellspacing="0">

And replace with:

Quoteif ($modSettings['js_text_displayads_message_index'] && allowedTo('ad_manageperm'))
   echo '<div align="center">',$modSettings['js_text_content'],'</div>';

   echo '
      <table width="100%" cellpadding="3" cellspacing="0">

Save, close and upload....Only after making a backup.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7(ManagePermissions.php edits)
Post by: bigguy on July 04, 2006, 11:37:34 AM
NEXT EDIT: In the Sources Directory of your forum find the "ManagePermissions.php" open it and

Find:

Quote'pm' => array(

And replace with:

Quote'ad_manage' => array(
            'ad_manageperm' => false,
         ),
         'pm' => array(
NOTE: This edit should only be done if totally install the mod manually.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 21, 2006, 04:39:24 AM
I found them...

Hey bigguy, sorry, but I was linked to 1.1 edits from TP and I posted asking for direction's here.

I have a question?  I notice that some edits are to be used only if installing the entire mod manually...Well,

I have smf1.0.7 with tiny portal, and techhead theme.  I attempted to install ad manager mod thru package manager and all files installed successfully except
index.template.php
 
I got failure on that file alone...so, can I just use the index.template.php edits you have here and be done with it, or do I have to edit other files?

thanks, hygron
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on August 21, 2006, 11:01:24 AM
Yes just use the edits for the Index.template.php file and you`ll be good to go.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 21, 2006, 03:23:08 PM
OK, bigguy...I did the 1st edit, but the 2nd edit
   echo'

well "echo'" is 4-5 location's!  I figured safer to ask you which echo' to edit, or do you replace all?  Thanks H
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 21, 2006, 03:54:26 PM
Ok...I did the edit and received this message...
Parse error: parse error, unexpected '<' in /home/hygron/domains/hygronomics.com/public_html/forums/Themes/techead/index.template.php on line 401

so, go find  '<' and delete?  I assume line 401 means 401lines from top of page???

Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on August 21, 2006, 04:09:50 PM
You want to look for the first "echo" after the code you just installed:

Quote<table width="100%" cellpadding="0" cellspacing="0" border="0">';
if ($modSettings['js_text_displayads_index'] && allowedTo('ad_manageperm'))
{
   echo '   <tr><td id="bodyarea">
         <br />
            <div align="center">',$modSettings['js_text_content'],'</div></td></tr>';
}
echo '<tr>

What type of editor are you using ??? I suggest using "Php Designer 2006" You can find it on google.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 21, 2006, 05:01:01 PM
I found the info on which echo'?  1st echo after... downthread from here and edited...

Now I get this message:

Parse error: parse error, unexpected '<' in /home/hygron/domains/hygronomics.com/public_html/forums/Themes/techead/index.template.php on line 408

I am editing in my direct admin file manager.  forums/themes/techead/index.template.php.

Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 22, 2006, 12:52:52 AM
Ok...I cut out edits I made...forums back online ;D

then I went and was real careful...made a nice folder in notepad and triple checked the code...  I read the other thread below, and re-edit the  themes/index.template.php/techead file on server...

Now I got this error message:

Parse error: parse error, unexpected T_STRING, expecting ',' or ';' in /home/hygron/domains/hygronomics.com/public_html/forums/Themes/techead/index.template.php on line 366

thanks


what do you think?   I am leaving it alone...but, I have figured out how to put it
back. 8)  thanks, H
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on August 22, 2006, 01:00:25 AM
If you have a copy of the file without edits in it post it here and I'll see if I have any luck with it.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 22, 2006, 02:50:03 AM
Here you go.  I cut out the edits...and this is the same file I have been working on...If you need more of it;  Let me know. I just included area you had posted...peace, Hygron

__________________________________________________________
        // The main content should go here.  A table is used because IE 6 just can't handle a div.
        echo '


<table width="100%" cellpadding="0" cellspacing="0" border="0">';


                           
// TinyPortal integrated bars
          if($context['TPortal']['leftbar'])
          {
              echo '<td width="' ,$context['TPortal']['leftbar_width'], '" style="padding: ' , isset($context['TPortal']['padding']) ? $context['TPortal']['padding'] : '4' , 'px;  padding-top: 4px;" valign="top">
                 <div id="leftbarHeader"', empty($options['collapse_leftbar']) ? '' : ' style="display: none;"', ' style="padding-top: 5px; width: ' ,$context['TPortal']['leftbar_width'], 'px;">';
                 TPortal_sidebar('left');
              echo '</div></td>';

          }

        echo '<td width="100%" align="left" valign="top" style="padding-top: 10px; padding-bottom: 10px;" id="bodyarea">';
        if($context['TPortal']['centerbar'])
                     echo '<div>' , TPortal_sidebar('center') , '</div>';
}

function template_main_below()
{
        global $context, $settings, $options, $scripturl, $txt;

        echo '</td>';
         // TinyPortal integrated bars
          if($context['TPortal']['rightbar']){
              echo '<td style="padding: ' , isset($context['TPortal']['padding']) ? $context['TPortal']['padding'] : '4' , 'px;  padding-top: 4px;" valign="top" align="right">
                 <div id="rightbarHeader"', empty($options['collapse_rightbar']) ? '' : ' style="display: none;"', ' style="width: ' ,$context['TPortal']['rightbar_width'], 'px; text-align: left; padding-top: 5px;">';
              TPortal_sidebar('right');
              echo '</div></td>';
          }

        echo '</tr></table>';

        // Show the "Powered by" and "Valid" logos, as well as the copyright.  Remember, the copyright must be somewhere!

       
   echo '

        <div id="footerarea" style="text-align: center; padding-bottom: 1ex;', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? ' width: 100%;' : '', '">
                <script language="JavaScript" type="text/javascript"><!--
                        function smfFooterHighlight(element, value)
                        {
                                element.src = smf_images_url + "/" + (value ? "h_" : "") + element.id + ".gif";
                        }
                // --></script>
                <table cellspacing="0" cellpadding="3" border="0" align="center" width="100%">
                        <tr>
                                <td width="28%" valign="middle" align="right">
                                        <a href="http://www.mysql.com/" target="_blank"><img id="powered-mysql" src="', $settings['images_url'], '/powered-mysql.gif" alt="', $txt['powered_by_mysql'], '" style="margin: 5px 16px;" border="0"  /></a>
                                        <a href="http://www.php.net/" target="_blank"><img id="powered-php" src="', $settings['images_url'], '/powered-php.gif" alt="', $txt['powered_by_php'], '" style="margin: 5px 16px;" border="0"  /></a>
                                </td>
                                <td valign="middle" align="center" style="white-space: nowrap;" class="smalltextwhite">
                                        ', theme_copyright(), ' <br /><b>TechHead</b> / ',  tportal_version()  , '
                                        Bloc</a>
                                </td>
                                <td width="28%" valign="middle" align="left">
                                        <a href="http://validator.w3.org/check/referer" target="_blank"><img id="valid-xhtml10" src="', $settings['images_url'], '/valid-xhtml10.gif" alt="', $txt['valid_xhtml'], '" style="margin: 5px 16px;" border="0" /></a>
                                        <a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank"><img id="valid-css" src="', $settings['images_url'], '/valid-css.gif" alt="', $txt['valid_css'], '"  style="margin: 5px 16px;" border="0"  /></a>
                                </td>
                        </tr>
                </table>';

        // Show the load time?
        if ($context['show_load_time'])
                echo '
                <span class="smalltextwhite">', $txt['smf301'], $context['load_time'], $txt['smf302'], $context['load_queries'], $txt['smf302b'], '</span>';

          echo '
                </div></div>';

        // This is an interesting bug in Internet Explorer AND Safari.  Rather annoying, it makes overflows just not tall enough.
       
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on August 22, 2006, 11:17:33 AM
Well, I'll try to work with that but uploading the file would have been better.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 22, 2006, 12:10:18 PM
Sorry, I'm new at all this...about 1 month...You have to spell it out for me.  This is the themes/techead/index.template.php         Is this what you asked for?
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on August 22, 2006, 02:06:03 PM
Yes, I'll see if I can modify it for you.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on August 22, 2006, 02:15:17 PM
Ok, I didn't know you had Tp installed (Tp=TinyPortal) So I doubt this will work but give it a shot. Remember BACKUP the file you are working with before you edit anything.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 22, 2006, 09:07:48 PM
that's funny bigguy...I put that info TP in my 1st post in this thread...

Ok...I am going to try the file you edited...thanks
I thought you knew I had TP...What to do if, this doesn't work?

Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 22, 2006, 09:18:09 PM
his is the message I got with your file.

Parse error: parse error, unexpected '<' in /home/hygron/domains/hygronomics.com/public_html/forums/Themes/techead/index.template.php on line 346
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on August 23, 2006, 11:43:20 AM
TO many things going on right now lol. I`ll try your file again.

Quote from: hygron on August 22, 2006, 09:07:48 PM
that's funny bigguy...I put that info TP in my 1st post in this thread...

Ok...I am going to try the file you edited...thanks
I thought you knew I had TP...What to do if, this doesn't work?


Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 23, 2006, 01:55:43 PM
good man, thanks...I really want to get a handle on this...there is so many different aspects about php,mysql, themes, style...bbbbbbbbbbb(while shaking head).  check ya later
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 23, 2006, 06:36:28 PM
I got another Q for you bigguy.  If I upgrade to 1.0.8 with ad manager

how much work will it be to reinstall TP, and techhead
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 23, 2006, 09:56:04 PM
I just went to edit server settings in tpadmin...this message was waiting at the top.  Maybe this is the problem, eh?

Failed to make backup of Settings.php - make sure Settings_bak.php exists and is writable
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on August 24, 2006, 11:22:51 AM
Make sure settings_bak.php is chmodded to 777 I`m still working on your file. Maybe the people at Tiny Portal would have ideas on how to get the ad mod working. I'm still playing but having a hard time with TP.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: hygron on August 26, 2006, 11:24:43 PM
funny you mention that bigguy.  TP has a new version coming this week with ad man, included.   so, I will be upgrading to smf1.0.8/TP.095

that pretty much is going to solve the Ad Man, issue.  but, Now I have to Modify the whole site...On the upside.  this time I will do everything in the correct order.  Thanks.  check ya' later
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: DoA on October 05, 2006, 10:12:57 AM
Hi bigguy,
I noticed in another thread that you'd sorted a tutorial on how to edit the helios_multi theme for smf only.

I'm currently having great difficulty sorting this theme, so if you could send me the link or help me edit the theme i'd be very greatful!

DoA

p.s. I clicked an ad - I know how hard it it to get forum clicks!
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on October 06, 2006, 07:06:07 AM
If you want to send the 1.0.7 version of the theme I will see what I can do.
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: DoA on October 07, 2006, 11:01:05 AM
Ok, its too big for attachment so i've hosted it elsewhere

Here's a link!

http://www.lazyrecords.co.uk/helios_multi11_rc2.zip


many thanks for looking at this for me!

Where's the donate button :D
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on October 07, 2006, 08:17:34 PM
I will try to get to this when I get a bit more time. I just got home from work. Maybe tomorrow. :)
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: DoA on October 08, 2006, 12:18:13 PM
many thanks mate - much apprechiated.

Have you had any time to take a peek yet?
Title: Re: Edits for ad mod_1-0-7_v1-0-2b on Smf 1.0.7
Post by: bigguy on October 09, 2006, 02:26:13 PM
I have done the edits for this theme do they not work. You can find them on the "edited Theme files" board.