Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- * Add your own functions here. You can also copy some of the theme functions into this file.
- * Wordpress will use those functions instead of the original functions then.
- */
- // Enables Enfold debug mode.
- add_action('avia_builder_mode', "builder_set_debug");
- function builder_set_debug()
- {
- return "debug";
- }
- /*
- * Removes products count after categories name
- */
- add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );
- function woo_remove_category_products_count() {
- return;
- }
Advertisement
Add Comment
Please, Sign In to add comment