Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-multilingual
/
compatibility
/
WpFastestCache
:
MulticurrencyHooks.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WCML\Compatibility\WpFastestCache; class MulticurrencyHooks implements \IWPML_Action { public function add_hooks() { add_filter( 'wcml_is_cache_enabled_for_switching_currency', [ $this, 'is_cache_enabled_for_switching_currency', ] ); } /** * @param bool $cache_enabled * * @return bool */ public function is_cache_enabled_for_switching_currency( $cache_enabled ) { $wp_fastest_cache_options = json_decode( get_option( 'WpFastestCache' ) ); if ( isset( $wp_fastest_cache_options->wpFastestCacheStatus ) && 'on' === $wp_fastest_cache_options->wpFastestCacheStatus ) { $cache_enabled = true; } return $cache_enabled; } }