Paginate plugin doesn't show disabled when on first/last row

joomlamate

Member
I am using the paginate plugin to show in details view in front-end, but when I am on the first/last record, the plugin doesn't seem to disable the pagi-links to next/previous row accordingly, so the user can reach to the rowid=0 .
 
Can't replicate, it's greyed-out/inactive on my site.
Maybe an issue with your Joomla template.
 
I worked around this by disabling the links with css like :
CSS:
.fabrikForm ul.pagination-list li.active a {
    color: #bbb;
    pointer-events: none;
}
 
Back
Top