Sometimes you need to hide a module for some currencies. You only need the currency ID and change the _construct controller in the module php file. FOr example, for the ps_bankwire module you need to add this code in the function __construct i nthe file ps_bankwire.php file

public function __construct()
{
        $current_context = Context::getContext();
        if($current_context->controller->controller_type == 'front' &&  $this->context->currency->id == 2){
            exit;
        }
}
in this example, we hide the module for currency ID 2, and only in front office  with this line:
$current_context->controller->controller_type == 'front' 
Product added to wishlist
Product added to compare.

We use a selection of our own and third-party cookies on the pages of this website: Essential cookies, which are required in order to use the website; functional cookies, which provide better easy of use when using the website; performance cookies, which we use to generate aggregated data on website use and statistics; and marketing cookies, which are used to display relevant content and advertising. If you choose "ACCEPT ALL", you consent to the use of all cookies. You can accept and reject individual cookie types and revoke your consent for the future at any time under "Settings".