Prices are not adjusted when using AJAX
-
The woocommerce_get_price_html hook in includes/menu/class-wholesalex-dynamic-rules.php has an is_admin() check on line 6383 in it which means that price calculating won’t work with any sort of AJAX functionality.
With that in mind, they need to have is_admin() && ! ( defined( ‘DOING_AJAX’ ) && DOING_AJAX ) here instead, as has been done elsewhere in this class.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.