By Martyna Chojnacka on Sunday, 03 February 2019
Posted in Technical Issues
Replies 3
Likes 0
Views 562
Votes 0
I am experiencing an issue with pagination - my users list is displaying correctly on the first page, when I click on any pagination link it takes me to some unidentyfied feed or a timeline element.

Can I get some help with this please?

Many thanks in advance
Martyna
Hi there,

I tested them and it seems to works fine as you can see here http://take.ms/HcNsL. Can you provide us with that particular link so that we can further check this issues? Or maybe i have replicated them wrongly here? Can you provide us with more steps so that we can further check this issues?

Please advice.
·
Monday, 04 February 2019 11:20
·
0 Likes
·
0 Votes
·
0 Comments
·
Sure - I go to users tab "Uzytkownicy" - clicking on the page 2 from the pagination below the list takes me to this link :

https://stronatestowa897.pl/index.php/component/easysocial/użytkownicy/wszyscy/1/lastlogin?start=20
·
Monday, 04 February 2019 11:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

It seems that you customization at this files .../templates/protostar/html/com_easysocial/toolbar/default.php causing this issues on your end. Applied necessary fixes on your and it should works as it should now.

[gist type="php"]
<div class="o-nav__item">
<a href="/index.php?option=com_easysocial&view=users&filter=all&id=1" class="o-nav__link es-toolbar__link">
<i class="fa fa-users t-sm-visible"></i>
<span>
<span>Użytkownicy</span>
</span>
</a>
</div>

Changed to this codes
<div class="o-nav__item">
<a href="<?php echo ESR::users();?>" class="o-nav__link es-toolbar__link">
<i class="fa fa-users t-sm-visible"></i>
<span>
<span>Użytkownicy</span>
</span>
</a>
</div>
[/gist]
·
Monday, 04 February 2019 11:52
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post