Pagination
Posted: Tue Apr 09, 2024 4:06 pm
This may or may not be a problem with this current version as I think it may have been happening before on 1.0.8.20. Hopefully someone can confirm and that this is posted in the correct place, if not please move it.
On my current test site I am having problems with the pagination links on a page that contains lots of new products on a mobile device. There are more than 5 pages worth of new products. I have attached a screenshot to show what I mean. Its difficult to test on the demo store as there are not enough products to show all the number links. (if that makes sense)
On a large device, computer or laptop it shows correctly. This only looks wrong on a mobile device when looking in portrait. When you turn the device into landscape view it looks fine. Whilst I appreciate that you can use the right arrow to move across from the off screen page one to page two, it may cause some people confusion.
If I go into includes/system/versioned/1.0.8.4/split_page_results.php and change line 85 from
to
Taking out the pagination-lg it obviously shows fine on the mobile page but it is a bit small on a larger computer screen.
Is there another alternative to showing the large sizes pagination on the page without reducing any padding or margins or making the text smaller.
On my current test site I am having problems with the pagination links on a page that contains lots of new products on a mobile device. There are more than 5 pages worth of new products. I have attached a screenshot to show what I mean. Its difficult to test on the demo store as there are not enough products to show all the number links. (if that makes sense)
On a large device, computer or laptop it shows correctly. This only looks wrong on a mobile device when looking in portrait. When you turn the device into landscape view it looks fine. Whilst I appreciate that you can use the right arrow to move across from the off screen page one to page two, it may cause some people confusion.
If I go into includes/system/versioned/1.0.8.4/split_page_results.php and change line 85 from
Code: Select all
$display_links_string .= '<ul class="pagination pagination-lg justify-content-end">';Code: Select all
$display_links_string .= '<ul class="pagination justify-content-end">';Is there another alternative to showing the large sizes pagination on the page without reducing any padding or margins or making the text smaller.