@icaleb
Thank you, I can confirm my themes are working fine with WC3.3.1 now (the theme updates are still not released, possibly later today or tomorrow).
To explain, I don’t override WooCommerce templates in my themes, but as I was loading the loop/pagination.php
file using wc_get_template( 'loop/pagination.php' );
.
It seemed to me that woocommerce_pagination()
function was just a wrapper for that code, so I’ve used that one directly. However, this has changed in WooCommerce 3.3 as some additional code was added to the woocoommerce_pagination()
function and it was throwing PHP error of undefined $total
variable in the loop/pagination.php
file.
I fixed this in my themes easily by calling woocommerce_pagination()
function instead of the template file directly and I can see you guys have improved this in WooCommerce 3.3.1 too. So there will be no issues for me with WC3.3.1 and I’m ready for it ??