News:

Version 3.5 has been released. Visit https://custom.simplemachines.org/mods/index.php?mod=255 to get the most up to date version.

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - jgwise

#1
General Support / Re: Ad Placement Between Categories
August 08, 2017, 11:54:53 AM
I am not that great at PHP and customizing the forum board page template...but if the SMF Ads Mod won't place the ad between the category, is there a way to insert the link in the board page (ie http://domain.com/banners) so that is appears between the categories? Sorry new to the whole forum thing.
#2
General Support / Re: Ad Placement Between Categories
August 08, 2017, 10:38:25 AM
Is there a theme I should use that this works with? I thought the Core theme was a standard theme...which is why I was using it. Because it was a simple and clean look. Not using any other mods than the SMF Ads. Any thoughts?
#3
General Support / Re: Ad Placement Between Categories
August 03, 2017, 11:45:10 PM
If I put "1,2" it puts one at end of each category (in grey box at bottom of category)...but not in between the categories...

#4
General Support / Re: Ad Placement Between Categories
August 03, 2017, 11:44:15 PM
I am using the standard Core theme...not mod...
#5
General Support / Re: Ad Placement Between Categories
August 03, 2017, 10:28:15 PM
Still shows at end of Category #1 and not between them...
#6
General Support / Re: Ad Placement Between Categories
August 03, 2017, 05:06:38 PM
Not trying to be a pest...but at closer look the add is not between the categories...it is at the end of the first category in like a grey box...is the a way to actually have it between the categories so the top and bottom categories look like they are in their own tables and the ad is in between with just the page background behind it?
#7
General Support / Re: Ad Placement Between Categories
August 02, 2017, 04:00:56 PM
This is a screenshot
#8
General Support / Re: Ad Placement Between Categories
August 02, 2017, 03:58:21 PM
The last part of the two files were missing...so I copied the tail end from where your code off from the orig files...and the banner is working...but I am missing something from the footer section.
#9
General Support / Re: Ad Placement Between Categories
August 02, 2017, 03:51:13 PM
I figured it out...well part of it...the end code was missing on the files.

Thank you the banner is now showing between the categories...awesome.

The bottom footer still has the SMFADS link over the top of the Simple Machine copyright. Is that a quick fix?
#10
General Support / Re: Ad Placement Between Categories
August 02, 2017, 03:40:21 PM
I uploaded and got this error when I tried to open forum:

Template Parse Error!
There was a problem loading the /Themes/core/BoardIndex.template.php template or language file. Please check the syntax and try again - remember, single quotes (') often have to be escaped with a slash (\). To see more specific error information from PHP, try accessing the file directly.

You may want to try to refresh this page or use the default theme.


Parse error: syntax error, unexpected end of file in .../Themes/core/BoardIndex.template.php on line 420


411:          <div class="infocenter_section">
412:             <h4 class="titlebg">', $txt['online_users'], '</h4>
413:             <div class="windowbg">
414:                <p class="section">
415:                   ', $context['show_who'] ? '<a href="' . $scripturl . '?action=who' . '">' : '', '<img src="', $settings['images_url'], '/icons/online.gif', '" alt="', $txt['online_users'], '" />', $context['show_who'] ? '</a>' : '', '
416:                </p>
417:                <div class="windowbg2 sectionbody">
418:                   ', $context['show_who'] ? '<a href="' . $scripturl . '?action=who">' : '', comma_format($context['num_guests']), ' ', $context['num_guests'] == 1 ? $txt['guest'] : $txt['guests'], ', ' . comma_format($context['num_users_online']), ' ', $context['num_users_online'] == 1 ? $txt['user'] : $txt['users'];
419:
420:    // H
#11
General Support / Re: Ad Placement Between Categories
August 02, 2017, 03:13:40 PM
Any insight on my issue?
#12
General Support / Re: Ad Placement Between Categories
August 01, 2017, 11:58:14 PM
So I did a fresh install of SMF 2.0.14 on my test server and modified the files according to the Parser.

The ad that I wanted between the Categories is showing up on top of the Categories. But I still could not find the <tbody class="divider"> section to add the code under.

I also need to have the QueryString.php edited to fix the overlap on the bottom since I have done the fresh install.

Sorry...not trying to be a pain...just trying to get the ad setup so I can move this out to live server. Thank you for your help. Once I get this live will make donation for all the trouble.   :)
#13
General Support / Re: Ad Placement Between Categories
August 01, 2017, 11:57:51 PM
When I run the PARSER...it says in the file $themedir/BoardIndex.template.php to edit two codes...

I found the first one and added it...but the second one, I can't find the line of code that I am supposed to paste after (the DIVIDER CLASS). It says...

FIND:

<tbody class="divider">
            <tr>
               <td colspan="4"></td>
            </tr>
         </tbody>';

THEN PASTE AFTER:

   echo '<tbody><tr><td colspan="4">';
   //Display ads Between cats
   if (function_exists("show_category"))
   {
      $ads = show_category($category['id']);
      if(!empty($ads))
         if($ads['type']==0)
            echo $ads['content'];
         else
            eval($ads['content']);
      unset($ads);
   }
   echo '         </td></tr></tbody>';
#14
General Support / Re: Ad Placement Between Categories
August 01, 2017, 05:45:56 PM
What file am I uploading to the parser? Sorry new to this...
#15
General Support / Re: Ad Placement Between Categories
August 01, 2017, 12:39:30 PM
Here is screenshot