VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: biltong on October 12, 2016, 12:20:12 PM

Title: Frontend Order Administration View pagination display
Post by: biltong on October 12, 2016, 12:20:12 PM
The pagination display at the bottom of the page is not right.

This fixes it....

Change

<tfoot>
<tr>
<td colspan="12">
<div class="pagination-container">
</td>
</tr>
</tfoot>


to this (the matching code from the backend order list view)

<tfoot>
<tr>
<td colspan="12">
<div class="pagination pagination-toolbar">
</td>
</tr>
</tfoot>


I can't work out where to find this code though to change it. Any ideas please?

Here's what it looks like before the fix.

http://awesomescreenshot.com/09065m6013 (http://awesomescreenshot.com/09065m6013)

This is VM 3.0.18
Title: Re: Frontend Order Administration View pagination display
Post by: Milbo on October 12, 2016, 13:59:55 PM
in which file is this?
Title: Re: Frontend Order Administration View pagination display
Post by: biltong on October 12, 2016, 15:09:57 PM
I just did the change in Firebug because I can't find what file the code is in.

I noticed that the pagination looks fine with frontend Protostar template but not VP Merchant which I'm using.

So I guess it could be fixed in the template CSS but the code should use the same CSS tags to avoid this.