محدوده قیمت
دستهبندی ها
add_action('plugins_loaded', 'fix_cando_profile_meta_crash', 1); function fix_cando_profile_meta_crash() { global $wp_filter; // فقط اگه فیلتر وجود داشت if (isset($wp_filter['woocommerce_customer_meta_fields'])) { foreach ($wp_filter['woocommerce_customer_meta_fields']->callbacks as $priority => $callbacks) { foreach ($callbacks as $id => $callback) { $func = $callback['function']; // بررسی کنیم که فانکشن وجود نداره یا اسمش مشکوکه if ( (is_string($func) && stripos($func, 'cando_add_custom_meta_to_user_profile') !== false) || (is_array($func) && isset($func[1]) && stripos($func[1], 'cando_add_custom_meta_to_user_profile') !== false) ) { unset($wp_filter['woocommerce_customer_meta_fields']->callbacks[$priority][$id]); } } } } }
آیا از حذف مطمئن هستید؟
آیا از حذف مطمئن هستید؟