Hi @roberthedlund
Removing Pagination
Since you are currently using the Storefront theme, you can remove the pagination at the top of the page by adding the following code to your site, either in a child theme functions.php file, or by using a plugin such as code snippets.
function my_custom_remove_storefront_pagination(){
remove_action( 'woocommerce_before_shop_loop', 'storefront_woocommerce_pagination', 30 );
}
add_action('init', 'my_custom_remove_storefront_pagination', 999 );
This has been tested on the latest version of Storefront. Note the priority – the remove_action
must take place after the Storefront add_action
has already happened.
Centering pagination
There are a number of different strategies you could use here, and Google is probably your best friend for this, but centering the <ul>
element that contains the pagination can be done like this
.woocommerce .storefront-sorting nav{
clear:both;
width:100%;
}
.woocommerce-pagination {
text-align:centre
}
However, as with most CSS, there are almost as many different ways to do this as there are designers writing CSS.
`