From 4743efa3d7c7fef9ba0bec25d0fc236bfd40406a Mon Sep 17 00:00:00 2001 From: isaacclad Date: Tue, 7 Jul 2026 18:15:38 +0000 Subject: [PATCH] Fix logged-out redirect bouncing to invoice marketing page. The SSO login_required fallback used the invoice app's default marketing URL (leftover from the fork), sending logged-out Woo users to /products/invoice. Point it at /products/woo instead. Co-authored-by: Cursor --- config/ladill.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/ladill.php b/config/ladill.php index a744d3d..5e86cc9 100644 --- a/config/ladill.php +++ b/config/ladill.php @@ -2,5 +2,5 @@ return [ 'product_slug' => 'woo-manager', - 'marketing_url' => env('LADILL_MARKETING_URL', 'https://ladill.com/products/invoice'), + 'marketing_url' => env('LADILL_MARKETING_URL', 'https://ladill.com/products/woo'), ];