Created
November 26, 2022 09:46
-
-
Save AshlinRejo/f9a3e9b5a454a7fd19fdf19ab7ab68d8 to your computer and use it in GitHub Desktop.
Discount rules: Enable onsale events which disable by theme Goya
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('wp_loaded', function() { | |
add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); | |
add_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 10 ); | |
}, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment