Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4255
Latest: andreios
New This Month: 3
New This Week: 1
New Today: 0
Stats
Total Posts: 43260
Total Topics: 7518
Most Online Today: 297
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 1
Guests: 277
Total: 278

Author Topic: Multiple ads in a tower on a side.  (Read 5941 times)

0 Members and 1 Guest are viewing this topic.

Offline mrnuke7175

  • Member
  • *
  • Posts: 24
    • View Profile
Multiple ads in a tower on a side.
« on: January 26, 2014, 01:54:18 pm »
Another issue has come up for me, trying to monetize my site.

When I try to have multiple ads on the right side of the site, the 2nd set of ads does not start until the bottom of the page.

I'll attach a pic to show it.

I went into Ad locations and added a new right side location. Then I added the code it gave me below the existing right side ad code as shown here :
-------------------------------------------
// Begin Ad Seller Pro Location - Right Side of the Forum
if (ShowAdLocation(9,0,true) || ShowAdLocation(10,0,true))
{
   echo '</td>';
   global $sourcedir;
   include_once $sourcedir . "/adseller2.php";

   $adSellerAdData =  ShowAdLocation(10);
   if ($adSellerAdData != false)
   {
      echo '<td valign="top">';

      echo $adSellerAdData;

      echo '</td>';
   }
   echo '</tr></table>';
}
// End Ad Seller Pro Location - Right Side of the Forum
      
   
// Begin Ad Seller Pro Location - Right Side of Forum 2

global $sourcedir;
include_once $sourcedir . "/adseller2.php";

$adSellerAdData =  ShowAdLocation(1000);

// Check if any ads where found
if ($adSellerAdData != false)
{
   // Dispaly the advertising code
   echo $adSellerAdData;
}

// End Ad Seller Pro Location - Right Side of Forum 2
------------------------------------------------

It doesn't put it neatly under eachother as I'd want it to.

Any ideas?

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: Multiple ads in a tower on a side.
« Reply #1 on: January 26, 2014, 02:03:27 pm »
There is another way to do it as well with just one ad location.
Requires modification to the call ShowAdLocation()
Change to
Code: [Select]
   $adSellerAdData =  ShowAdLocation(10);
To
Code: [Select]
ShowAdLocation(10, 0,  false, 5,true);

I believe that will do it. What it does will show a max of 5 ads vertically.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline mrnuke7175

  • Member
  • *
  • Posts: 24
    • View Profile
Re: Multiple ads in a tower on a side.
« Reply #2 on: January 26, 2014, 02:07:12 pm »
There is another way to do it as well with just one ad location.
Requires modification to the call ShowAdLocation()
Change to
Code: [Select]
   $adSellerAdData =  ShowAdLocation(10);
To
Code: [Select]
ShowAdLocation(10, 0,  false, 5,true);

I believe that will do it. What it does will show a max of 5 ads vertically.

When I change the code to what you posted, all my right aide ads are gone. Nothing is being displayed.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: Multiple ads in a tower on a side.
« Reply #3 on: January 26, 2014, 02:08:56 pm »
OOps forgot this part should be
Code: [Select]
   $adSellerAdData =  ShowAdLocation(10, 0,  false, 5,true);
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline mrnuke7175

  • Member
  • *
  • Posts: 24
    • View Profile
Re: Multiple ads in a tower on a side.
« Reply #4 on: January 26, 2014, 02:14:04 pm »
Yup, that did it. thank you, again.  :D

Offline mrnuke7175

  • Member
  • *
  • Posts: 24
    • View Profile
Re: Multiple ads in a tower on a side.
« Reply #5 on: January 26, 2014, 02:18:35 pm »
One drawback though, all these banner ads (up to 5) have to use the same location though, right?

My intent was to have some ads displayed for guests and some to members, etc..

So I wanted location 1 (ad1) for guests only, and a new location (right side 2 for example) for Ad2 that only members see.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: Multiple ads in a tower on a side.
« Reply #6 on: January 26, 2014, 02:22:44 pm »
Yeah they would need to use the same location

You coudl try  with this code untested

Change
Code: [Select]
$adSellerAdData =  ShowAdLocation(10);
   if ($adSellerAdData != false)
   {
      echo '<td valign="top">';

      echo $adSellerAdData;

      echo '</td>';
   }
   echo '</tr></table>';
To


Code: [Select]
$adSellerAdData =  ShowAdLocation(10);
   if ($adSellerAdData != false)
   {
      echo '<td valign="top">';

      echo $adSellerAdData;

$adSellerAdData =  ShowAdLocation(1000);

echo $adSellerAdData;
      echo '</td>';
   }
   echo '</tr></table>';
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline mrnuke7175

  • Member
  • *
  • Posts: 24
    • View Profile
Re: Multiple ads in a tower on a side.
« Reply #7 on: January 26, 2014, 02:33:03 pm »
Ahh, yes that's the sort of integration I was looking for. Thank you. I think that did it.

 

Related Topics

  Subject / Started by Replies Last post
2 Replies
7448 Views
Last post July 08, 2009, 11:21:05 pm
by armorbeast
2 Replies
4552 Views
Last post September 16, 2010, 05:28:34 pm
by endomorph
1 Replies
3381 Views
Last post October 10, 2011, 11:29:00 am
by SMFHacks
11 Replies
10332 Views
Last post August 06, 2014, 10:39:59 pm
by SMFHacks
18 Replies
8710 Views
Last post January 27, 2016, 10:13:05 pm
by northview

+- Recent Topics

No thumbnails on new uploads by Tonyvic
Today at 06:26:18 am

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

Powered by EzPortal