2016-12-01, 01:26:09
Is there an easy way to change the HTML coding of the pagination on search result pages? Currently it outputs:
div class="search-results-paging
span class="first"
span class="previous"
span (1)
span (2)
...
span class="next"
span class="next" (I think this is a bug and should be "last". It is definitely the one with the double greater than symbols)
/div
And what I've like it to output is the Bootstrap HTML for pagination:
ul class="pagination"
li class="first"
li class="previous"
li (1)
...
li class="next"
li class="last"
/ul
div class="search-results-paging
span class="first"
span class="previous"
span (1)
span (2)
...
span class="next"
span class="next" (I think this is a bug and should be "last". It is definitely the one with the double greater than symbols)
/div
And what I've like it to output is the Bootstrap HTML for pagination:
ul class="pagination"
li class="first"
li class="previous"
li (1)
...
li class="next"
li class="last"
/ul