Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kittenlane/73081e149f57763183a9 to your computer and use it in GitHub Desktop.
Save kittenlane/73081e149f57763183a9 to your computer and use it in GitHub Desktop.
Replace WooCanvas Default Pagination with WooCommerce Pagination
/**
* Replace WooCanvas Default Pagination with WooCommerce Pagination
**/
add_action('init','alter_woo_hooks');
function alter_woo_hooks() {
remove_action( 'woocommerce_after_main_content', 'canvas_commerce_pagination', 01, 0 );
}
add_action( 'woocommerce_pagination', 'woocommerce_pagination', 1 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment