Jump to content

Убрать рекламу из конкретной темы


servissoc
 Share

Recommended Posts

Подскажите, возможно ли как то реализовать такое - Убрать рекламу из конкретной темы. Например в каждой теме есть реклама под шапкой и внутри тем, но в какой то одной теме этой рекламы быть не должно. Если это сделать можно то скажите пожалуйста как.

Link to comment
Share on other sites

Открыть \applications\core\sources\Advertisement\Advertisement.php

 

Найти

		/* If we know there are no ads, we don't need to bother */

 

Выше добавить

		if (\IPS\Request::i()->app == 'forums' and \IPS\Request::i()->module == 'forums' and \IPS\Request::i()->controller == 'topic' and \IPS\Request::i()->id == X)
	{
		return null;
	}

X заменить на ID темы

  • Upvote 1
Link to comment
Share on other sites

  • 1 year later...

        if (\IPS\Request::i()->app == 'forums' and \IPS\Request::i()->module == 'forums' and \IPS\Request::i()->controller == 'forums' and \IPS\Request::i()->id == X)
       {
           return null;
       }

X заменить на ID форума

  • Upvote 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...