Slowhand
(Slowhand)
31 Julio, 2024 20:37
1
¿Es posible desactivar la información del tema en la parte inferior de los hilos? Definitivamente no es útil en nuestro foro en particular. He realizado una encuesta a nuestros moderadores y usuarios frecuentes y a nadie le importa.
Tenerlo en la parte superior de cada hilo está bien, nadie lo usa realmente.
1 me gusta
Don
31 Julio, 2024 21:14
2
Hola
Es posible con CSS.
Común / CSS
.topic-map.--bottom {
display: none !important;
}
El código anterior ocultará el mapa de temas en ambos (Temas y Mensajes Privados). Si deseas mantenerlo en los Mensajes Privados, puedes apuntar por separado solo a los Temas.
body:not(.archetype-private_message) {
.topic-map.--bottom {
display: none;
}
}
2 Me gusta
Slowhand
(Slowhand)
31 Julio, 2024 21:15
3
Gracias, se lo haré llegar a un administrador.
1 me gusta
Don
3 Agosto, 2024 09:31
4
Según veo, hay una PR que la hará disponible con una configuración del sitio después de que se fusione.
main ← jancernik:topic-map-minor-fixes
opened 10:02PM - 02 Aug 24 UTC
- Removes the left padding for the bottom topic map to be better aligned with th… e rest of the UI, especially noticeable when having topic timers or other small-action posts.
- Centers the button to show more links
- Fixes padding consistency in the top replies menu
- Fixes view count text wrapping when it's a lone stat
- Adds two site settings to fine-tune the visibility of the topic map: `show_bottom_topic_map` and `show_topic_map_in_topics_without_replies`
<div align=center>
<h4>Before</h4>

<h4>After</h4>

<h4>Before / After</h4>

<h4>Before / After</h4>

<h4>Before / After</h4>

</div>
3 Me gusta
jancernik
(Jan Cernik)
13 Agosto, 2024 12:40
5
Esta PR ya está fusionada.
Puedes usar la configuración del sitio show_bottom_topic_map para activar/desactivar su visibilidad.
4 Me gusta
jancernik
(Jan Cernik)
Cerrado
17 Agosto, 2024 13:41
6
Este tema se cerró automáticamente después de 4 días. Ya no se permiten nuevas respuestas.