Jump to content
Дизайн и модификация IPS Community IPBSkinsBETA
Search In
  • More options...
Find results that contain...
Find results in...
aLEX49566

Запрет на копирование (мобильная версия)

Recommended Posts

Доброго. Кто подскажет, что нужно добавить, что бы запретить копирование в мобильной версии сайта конкретным группам?

body { 
        -ms-user-select: none; 
        -moz-user-select: none; 
        -webkit-user-select: none; 
        user-select: none; 
    }

Share this post


Link to post

Заранее спасибо 🙂

Edited by aLEX49566

Share this post


Link to post

Приветствую

{{if (\IPS\Member::loggedIn()->inGroup( [1, 2, 3, 4] ) )}}
    <style type='text/css'>
      @media (max-width: 979px) {
          body {
              -ms-user-select: none;
              -moz-user-select: none;
              -khtml-user-select: none;
              -webkit-user-select: none;
              user-select: none
          }
      }
    </style>
{{endif}}

Где 1, 2, 3, 4 - id конкректных групп,

979px - максимальное разрешение экрана.

  • Upvote 1

Share this post


Link to post
2 часа назад, Lesovsky сказал:

Приветствую


{{if (\IPS\Member::loggedIn()->inGroup( [1, 2, 3, 4] ) )}}
    <style type='text/css'>
      @media (max-width: 979px) {
          body {
              -ms-user-select: none;
              -moz-user-select: none;
              -khtml-user-select: none;
              -webkit-user-select: none;
              user-select: none
          }
      }
    </style>
{{endif}}

Где 1, 2, 3, 4 - id конкректных групп,

979px - максимальное разрешение экрана.

Это для Custom?

Share this post


Link to post
29 минут назад, aLEX49566 сказал:

Это для Custom?

В смысле?

Share this post


Link to post
3 часа назад, Lesovsky сказал:

В смысле?

Через custom получается никак не решить этот вопрос? Нужно только в глобал?!

Share this post


Link to post
43 минуты назад, aLEX49566 сказал:

Через custom получается никак не решить этот вопрос? Нужно только в глобал?!

Да можете в любой шаблон страницы вставить, если нужно точечно, либо в глобальный, но тогда нужно указывать класс контейнера для запрета на копирования, например контейнер поста .ipsComment_content

  • Like 1

Share this post


Link to post

По итогу сделал так:

 

{{if (\IPS\Member::loggedIn()->inGroup( [2] ) )}}
      <style type='text/css'>
	  @media (max-width: 979px) {
.noselect_mobile {
              -ms-user-select: none;
              -moz-user-select: none;
              -khtml-user-select: none;
              -webkit-user-select: none;
              user-select: none
}
 }
        </style>
{{endif}}

noselect_mobile ставим в класс, контент которого нужно скрыть, в моем случае это body

Edited by aLEX49566

Share this post


Link to post

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

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...