- Para XenForo...
-
- 2.0.x
- Autor
- jazz_aaf
- Imagen del autor
- URL de XenForo
- https://xenforo.com/community/resources/highlighting-threads-user-participated-in.6377/
Básicamente, resalta con diferente color cada tema en el que ha publicado el usuario actual que los diferencia de los temas en que nunca ha participado.
Para obtener este objetivo, es necesario realizar cambios en dos lugares:
1) Agregar a la plantilla extra.less:
2) Buscar lo siguiente en la plantilla thread_list_macros:
Y reemplazarlo por completo con lo que sigue:
Eso es todo.
Salud2
Para obtener este objetivo, es necesario realizar cambios en dos lugares:
1) Agregar a la plantilla extra.less:
CSS:
.memberParticipatedThread {
background-color: #C4E599 !important;
}
PHP:
<div class="structItem structItem--thread{{ $thread.prefix_id ? ' is-prefix' . $thread.prefix_id : '' }}{{ $thread.isIgnored() ? ' is-ignored' : '' }}{{ ($thread.isUnread() AND !$forceRead) ? ' is-unread' : '' }}{{ $thread.discussion_state == 'moderated' ? ' is-moderated' : '' }}{{ $thread.discussion_state == 'deleted' ? ' is-deleted' : '' }} js-inlineModContainer js-threadListItem-{$thread.thread_id}" data-author="{{ $thread.User.username ?: $thread.username }}">
PHP:
<div class="structItem structItem--thread{{ $thread.prefix_id ? ' is-prefix' . $thread.prefix_id : '' }}{{ $thread.isIgnored() ? ' is-ignored' : '' }}{{ ($thread.isUnread() AND !$forceRead) ? ' is-unread' : '' }}{{ $thread.discussion_state == 'moderated' ? ' is-moderated' : '' }}{{ $thread.discussion_state == 'deleted' ? ' is-deleted' : '' }}{{ $thread.getUserPostCount() ? ' memberParticipatedThread' : '' }} js-inlineModContainer js-threadListItem-{$thread.thread_id}" data-author="{{ $thread.User.username ?: $thread.username }}">
Eso es todo.
Salud2