Filter the method title.
$this->method_title, $this
Sortie :
@param string $title Method title. @param WC_Payment_Gateway $this Payment gateway instance. @return string
// Modifier la valeur avec le filtre 'woocommerce_gateway_method_title'
add_filter('woocommerce_gateway_method_title', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($this->method_title) {
// Modifier la valeur
return $this->method_title;
}
Chargement des actualités...