// Redirigir a WhatsApp después de crear el pedido
add_filter( 'woocommerce_get_checkout_order_received_url', function( $url, $order ){

	if ( ! $order ) {
		return $url;
	}

	$mensaje  = "Hola, quiero confirmar mi pedido.%0A%0A";
	$mensaje .= "Pedido: #" . $order->get_order_number() . "%0A";
	$mensaje .= "Nombre: " . $order->get_billing_first_name() . " " . $order->get_billing_last_name() . "%0A";
	$mensaje .= "Teléfono: " . $order->get_billing_phone() . "%0A";
	$mensaje .= "Dirección: " . $order->get_billing_address_1() . "%0A";
	$mensaje .= "Ciudad: " . $order->get_billing_city() . "%0A%0A";

	$mensaje .= "Productos:%0A";

	foreach ( $order->get_items() as $item ) {
		$mensaje .= "- " . $item->get_name() . " x" . $item->get_quantity() . "%0A";
	}

	$mensaje .= "%0ATotal: " . wp_strip_all_tags( $order->get_formatted_order_total() );

	return "https://wa.me/573012007531?text=" . $mensaje;

}, 10, 2 );<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://betanovarismarket.americanvibes.com.co/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://betanovarismarket.americanvibes.com.co/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://betanovarismarket.americanvibes.com.co/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://betanovarismarket.americanvibes.com.co/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://betanovarismarket.americanvibes.com.co/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://betanovarismarket.americanvibes.com.co/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://betanovarismarket.americanvibes.com.co/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
