FKB Pro - Social theme

That is great if it’s work :slightly_smiling_face:
I think you got the answer here: Add icon to register button - #2 by Lillinator

You can do it with some CSS.

Hide views.

.topic-list {
  .main-link {
    .link-bottom-line {
      .views {
        display: none;
      }
    }
  }
}

Hide likes and views.

.topic-list {
  .main-link {
    .link-bottom-line {
      .likes,
      .views {
        display: none;
      }
    }
  }
}
3 Likes