Quantcast
Channel: Toolset » All Posts
Viewing all articles
Browse latest Browse all 20145

Reply To: [Assigned] Views Pagination – dots

$
0
0

Dear Morven,

There are no default pagination styles like you want. But you can always remove our pagination CSS and add your own. To remove Views pagination CSS add these lines to functions.php in your theme:

add_action('wp_enqueue_scripts', 'remove_css', 20);
function remove_css() {
wp_dequeue_style('views-pagination-style');
}

If you use this code for pagination, you will see the page numbers in an unordered list that you can style to your needs:

[wpv-filter-start hide="false"]
[wpv-pagination]
[wpv-pager-prev-page]Previous[/wpv-pager-prev-page]
[wpv-pager-current-page style="link"]
[wpv-pager-next-page]Next[/wpv-pager-next-page]
[/wpv-pagination]
[wpv-filter-end]

Finally, to output the pagination on top, change the order of the shortcodes in the Combined Output section:

[wpv-filter-meta-html]
[wpv-layout-meta-html]

Please let me know if you are satisfied with my reply and any other questions you may have.

Regards
Caridad


Viewing all articles
Browse latest Browse all 20145

Trending Articles