Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #438902

    Hello

    I try to move or duplicate Woocommerce Pagination at the top of Archives Page instead of bottom of page

    Can You help me, I don’t find the hook to do it

    Thx :)

    #439862

    Hi Veesibility!

    Try adding this to the bottom of your functions.php file.

    add_action( 'woocommerce_before_shop_loop', 'enfold_customization_woo_pagination', 10);
    function enfold_customization_woo_pagination()
    {
    			global $avia_config;
    			if(isset($avia_config['dynamic_template'])) return;
    			if(isset($avia_config['overview'] )) echo avia_pagination('', 'nav');
    }

    Cheers!
    Elliott

    #439943

    Perfect

    Thx :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Move Woocommerce Pagination on Category Page’ is closed to new replies.