• Hello,
    I would like to change the pagination in shop to have arrows (first and last) instead of all the page numbers. Is this possible?
    Thank you.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • @binfor
    this should work for you

    add_filter( 'woocommerce_pagination_args', 	'rocket_woo_pagination' );
    function rocket_woo_pagination( $args ) {
    
    	$args['prev_text'] = '<i class="fa fa-angle-left"></i>';
    	$args['next_text'] = '<i class="fa fa-angle-right"></i>';
    
    	return $args;
    }
    Thread Starter binfor

    (@binfor)

    Sorry, which page (php) should I add that to?
    Thank you for responding so quickly.

    just add it to your childthemes functions.php

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change pagination design’ is closed to new replies.