HEX
Server: Apache
System: Linux webd001.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: mciraet (192513)
PHP: 8.2.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/mciraet/www/wp-content/plugins/polylang-wc/src/plugins/germanized.php
<?php
/**
 * @package Polylang-WC
 */

/**
 * Manages the compatibility with:
 *
 * @see https://wordpress.org/plugins/woocommerce-germanized/ WooCommerce Germanized, version tested: 3.10.2.
 *
 * This plugin already includes a compatibility with Polylang, not specifically PLLWC.
 * This class adds a quick fix for emails.
 *
 * @since 1.6.3
 */
class PLLWC_Germanized {

	/**
	 * Constructor.
	 *
	 * @since 1.6.3
	 */
	public function __construct() {
		// Deactivates the translation of emails sent to the shop manager to fix a conflict.
		add_filter( 'pllwc_enable_shop_manager_email_language', '__return_false' );
	}
}