VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: Wedal on September 20, 2023, 14:13:29 PM

Title: [bug][VM4] VMAdmin template does not show pagination in shipment methods
Post by: Wedal on September 20, 2023, 14:13:29 PM
Actually the topic. The new template did not add pagination output code to the delivery methods layout. Thus, if there are more than 400 delivery methods (the maximum possible number per page), then it is impossible to see those of them that go to the second and subsequent pagination pages (this is probably a rare problem, since few stores have more than 400 delivery options).

How to solve this:

At the end of the file:
/administrator/components/com_virtuemart/views/shipmentmethod/tmpl/default.php
/administrator/templates/vmadmin/html/com_virtuemart/shipmentmethod/default.php

Before the closing tag of table:

</table>
add the following code:

   
<tfoot>
    <tr>
        <td colspan="10">
            <?php echo $this->pagination->getListFooter(); ?>
        </td>
    </tr>
</tfoot>

Hopefully this will be fixed in future updates.
Title: Re: [bug][VM4] VMAdmin template does not show pagination in shipment methods
Post by: Wedal on August 10, 2024, 09:31:20 AM
The bug is still here.

@Milbo, please, fix it.
Title: Re: [bug][VM4] VMAdmin template does not show pagination in shipment methods
Post by: sirius on November 15, 2024, 16:10:26 PM
Hi
Bug still here on VirtueMart 4.4.0 11095 with templates/vmadmin
and also for the payment list page
Title: Re: [bug][VM4] VMAdmin template does not show pagination in shipment methods
Post by: sirius on January 06, 2025, 12:17:35 PM
Hi
Bug still here on VirtueMart 4.4.4 11100 with templates/vmadmin
and also for the payment list page