servissoc Posted January 16, 2018 Share Posted January 16, 2018 Подскажите, возможно ли как то реализовать такое - Убрать рекламу из конкретной темы. Например в каждой теме есть реклама под шапкой и внутри тем, но в какой то одной теме этой рекламы быть не должно. Если это сделать можно то скажите пожалуйста как. Link to comment Share on other sites More sharing options...
newbie Posted January 17, 2018 Share Posted January 17, 2018 Открыть \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 темы 1 Link to comment Share on other sites More sharing options...
servissoc Posted January 17, 2018 Author Share Posted January 17, 2018 Спасибо большое, получилось! Link to comment Share on other sites More sharing options...
Helios Posted January 24, 2019 Share Posted January 24, 2019 @newbie, А как убрать из раздела, подскажите? Link to comment Share on other sites More sharing options...
newbie Posted January 25, 2019 Share Posted January 25, 2019 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 форума 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now