This file contains hidden or 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
<?php | |
/** | |
* Modify the price range format on the product page | |
* @package LetsGodev\MuPlugins | |
* @since 1.0 | |
*/ | |
add_filter( 'woocommerce_get_price_html', 'priceRangeFormat', 10, 2 ); | |
/** |
This file contains hidden or 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
<?php | |
if( !function_exists('letsgo_culqi_force_language') ) { | |
function letsgo_culqi_force_language($language = 'es') { | |
return 'es'; //"es" or "en" | |
} | |
add_filter('fullculqi/global/language', 'letsgo_culqi_force_language', 10, 1); | |
} |
NewerOlder