Hi. I have osclass 3.4.3 . Payment plugin 2.0.0
I had the same problem in the plugin on "Listings payment status" with pagination and the url links. I tryied to solve and now, works for me. --->
I changed some variables names and i deleted '-page' after 'payment-user-menu'. I did that on user/menu.php:
<div class="paginate">
<?php for($i = 0 ; $i < $total_pages ; $i++) {
if($i == $page) {
printf('<a class="searchPaginationSelected" href="%s">%d</a>', osc_route_url('payment-user-menu', array('iPage' => $i)), ($i + 1));
} else {
printf('<a class="searchPaginationNonSelected" href="%s">%d</a>', osc_route_url('payment-user-menu', array('iPage' => $i)), ($i + 1));
}
} ?>
</div>
I hope works for you.;-)