vitnet

not_allow_list

Apr 18th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. 1.0 Открыть файл engine/modules/profile.php
  2.  
  3. найти
  4.  
  5.         $root_category = array();
  6.  
  7. добавить ниже
  8.  
  9.         $not_allow_list = explode( ',', '4,5' ); // ID категории исключенных из списка
  10.  
  11. далее найти
  12.  
  13.                 foreach ( $root_category as $id ) {
  14.  
  15. добавить ниже
  16.  
  17.                     if( in_array( $id, $not_allow_list ) ) continue;
Advertisement
Add Comment
Please, Sign In to add comment