Hello, there is a problem in customizing the page-by-page navigation of the views Drupal 7 module, you need to insert the divider "1/34" instead of "1 of 34", who has already done this? enter image description here

enter image description here

    1 answer 1

    Override theme_views_mini_pager in your template. Replace the line:

    'data' => t('@current of @max', array('@current' => $pager_current, '@max' => $pager_max)), 

    on:

     'data' => t('@current/@max', array('@current' => $pager_current, '@max' => $pager_max)), 
    • Hooray, earned!) Thanks a lot) - Mojito