woocommerce_get_checkout_order_received_url

FILTER woocommerce\includes\class-wc-order.php (ligne 1892) github
Generates a URL for the thanks page (order received).

Paramètres

Entrée :
$order_received_url, $this
Sortie :
@return string

Utilisation

// Modifier la valeur avec le filtre 'woocommerce_get_checkout_order_received_url'
add_filter('woocommerce_get_checkout_order_received_url', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre($order_received_url) {
    // Modifier la valeur
    return $order_received_url;
}

Actualités

Chargement des actualités...