Cosmetics Store

Great things are on the horizon

Something big is brewing! Our store is in the works and will be launching soon!

Shopping Cart
/** * Redirect WooCommerce to a custom page after checkout */ add_action( 'woocommerce_thankyou', 'reialesa_redirect_woo_checkout'); function reialesa_redirect_woo_checkout( $order_id ){ $order = wc_get_order( $order_id ); $url = 'https://store.marblues.in/thankyou-sir-mam/'; if ( ! $order->has_status( 'failed' ) ) { wp_safe_redirect( $url ); exit; } }