- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
66 lines
1.5 KiB
PHP
Executable File
66 lines
1.5 KiB
PHP
Executable File
<?php
|
|
if ( ! class_exists( 'BWF_Compatibility_With_WPML_MultiCurrency' ) ) {
|
|
#[AllowDynamicProperties]
|
|
class BWF_Compatibility_With_WPML_MultiCurrency {
|
|
|
|
public function __construct() {
|
|
|
|
|
|
}
|
|
|
|
public function is_enable() {
|
|
global $woocommerce_wpml;
|
|
|
|
if ( class_exists( 'woocommerce_wpml' ) && $woocommerce_wpml instanceof woocommerce_wpml ) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
* Modifies the amount for the fixed discount given by the admin in the currency selected.
|
|
*
|
|
* @param integer|float $price
|
|
*
|
|
* @return float
|
|
*/
|
|
public function alter_fixed_amount( $price, $currency = null ) {
|
|
if ( ! class_exists( 'SitePress' ) ) {
|
|
return $price;
|
|
}
|
|
|
|
global $woocommerce_wpml;
|
|
if ( WCML_MULTI_CURRENCIES_INDEPENDENT !== $woocommerce_wpml->settings['enable_multi_currency'] ) {
|
|
return $price;
|
|
}
|
|
|
|
return $woocommerce_wpml->get_multi_currency()->prices->convert_price_amount( $price );
|
|
}
|
|
|
|
function get_fixed_currency_price_reverse( $price, $from = null, $base = null ) {
|
|
if ( ! class_exists( 'SitePress' ) ) {
|
|
return $price;
|
|
}
|
|
|
|
|
|
global $woocommerce_wpml;
|
|
if ( WCML_MULTI_CURRENCIES_INDEPENDENT !== $woocommerce_wpml->settings['enable_multi_currency'] ) {
|
|
return $price;
|
|
}
|
|
$price = $woocommerce_wpml->get_multi_currency()->prices->unconvert_price_amount( $price, $from );
|
|
|
|
return $price;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
BWF_Plugin_Compatibilities::register( new BWF_Compatibility_With_WPML_MultiCurrency(), 'woowpmlmulticurrency' );
|
|
|
|
|
|
}
|