При просмотре определенного форума, если нажать на "Загрузить следующие темы", то зачастую следующие темы будут дублироваться с той страницы, на которой вы находитесь. Данная статья поможет вам исправить это.
Заходим в:
Админцентр > Внешний вид > Ваш стиль > Список тем форума > forumIndexTemplate
Находим:
<script type='text/javascript'> ipb.forums.fetchMore = { 'f': parseInt("{$this->request['showforum']}") , 'st': parseInt("{$this->request['st']}"), 'sort_by': "{$this->request['sort_by']}", 'sort_key': "{$this->request['sort_key']}", 'topicfilter': "{$this->request['topicfilter']}", 'prune_day': "{$this->request['prune_day']}" }; </script>
Заменяем на:
<script type='text/javascript'> ipb.forums.fetchMore = { 'f': parseInt("{$this->request['showforum']}") , 'st': parseInt("{$this->request['st']}"), 'sort_by': "{$this->request['sort_by']}", 'sort_key': "{$this->request['sort_key']}", 'topicfilter': "{$this->request['topicfilter']}", 'prune_day': "{$this->request['prune_day']}", 'max_topics': "{$this->settings['display_max_topics']}" }; </script>
Готово. Отображаются новые темы
Автор статьи: Doogle (IPBMafia.ru)
Recommended Comments
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.