I am using KNPPanginator Bundle, and pretty satisfied with it.
But i cannot find out, how to replace my sorters at the top, with icons instead of text. Here is my Twig code:
{% block pagination_head %}
<thead>
<tr>
<th>{{ pagination.sortable('likes', 'u.likePoints')|raw }}</th>
<th>{{ pagination.sortable('title', 'u.title')|raw }}</th>
<th>{{ pagination.sortable('date', 'u.created')|raw }}</th>
</tr>
</thead>
{% endblock %}
So what do i need to do, to get a thumps up icon, instead of the word "like"?
i tried pasing an <img src...>
in there, but did not help.