[BS] Forum view count [Deleted]

Why is "Views:" / "Aufrufe:" in the forum statistics after installation 0?
 

Attachments

  • Auswahl_001.webp
    Auswahl_001.webp
    4.8 KB · Views: 27
Do you have any idea where I can adjust this?
"Aufrufe" is above. "Beiträge" below.
But only in one style (IO dark).
In other styles, everything is above.
I know, is a style issue. But maybe you have an idea ^^

2nd issue:
0 views are displayed in forums with sub-forums. (See Auswahl_001.png)
 

Attachments

  • Auswahl_003.webp
    Auswahl_003.webp
    3.9 KB · Views: 36
  • Auswahl_004.webp
    Auswahl_004.webp
    4.4 KB · Views: 36
  • Auswahl_001.webp
    Auswahl_001.webp
    10 KB · Views: 236
Last edited:
Hi, I have an issue with the 0 views with sub-forums.
Can you give solution to this.
See the attachment, Thanks.
 

Attachments

  • views issue.webp
    views issue.webp
    2.1 KB · Views: 32
Thank you. But I have still the same problem :(
auswahl_001-png.219873
 
I solved this with:

Code:
Template: node_list.less
in foldendem Inhalt die 60% (default 100%) anpassen, damit "Aufrufe" nicht überschrieben wird.

.node-body {
    display: flex;

    .node-icon,
    .node-main {display: inline-block;}

    .node-main {
        flex-grow: 1;
        width: calc(~"60% - {{ property('uix_nodeIconWidth') + property('uix_nodePadding') }}px");      <<<< hier die % anpassen
    }

    @media (max-width: @xf-responsiveMedium) {
        flex-wrap: wrap;
        .node-extra {
            width: 100%;
            padding-left: {{ property('uix_nodeIconWidth') + property('uix_nodePadding') }}px;
        }
    }
}
 
Top Bottom