Tagged: pagination, woocommerce
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 :)
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
Perfect
Thx :)