From 09e9cd3f991d252708179ea01ede2616f8b63ae9 Mon Sep 17 00:00:00 2001 From: RaduCristianPopescu <119046336+RaduCristianPopescu@users.noreply.github.com> Date: Thu, 7 Aug 2025 16:53:07 +0300 Subject: [PATCH 1/3] feat: added helper notice for headers and proxy --- css/settings.css | 14 ++++++++++++++ includes/layouts/settings.php | 35 ++++++++++++++++++++++++++++++++--- 2 files changed, 46 insertions(+), 3 deletions(-) diff --git a/css/settings.css b/css/settings.css index 58b9fe33..b1767d42 100644 --- a/css/settings.css +++ b/css/settings.css @@ -2612,3 +2612,17 @@ li.draggable-item .components-panel__body-toggle.components-button{ color: #ffffff; background: linear-gradient(135deg, #4268CF 0%, #3458BC 100%); } + +.feedzy_helper_notice { + margin: 15px 0; + padding: 16px; + background: #e8f4fd; + border-left: 4px solid #2271b1; +} + +.feedzy_helper_notice_title { + color: #0073aa; + font-weight: 600; + font-size: 16px; + margin-bottom: 8px; +} diff --git a/includes/layouts/settings.php b/includes/layouts/settings.php index 9c2c1f69..4bbb3dc5 100644 --- a/includes/layouts/settings.php +++ b/includes/layouts/settings.php @@ -261,6 +261,22 @@ class="btn btn-outline-primary" case 'headers': ?>
+ +
++ + + + +
++ +
++ + + + +
+- +
From 33535e55c39482e984a8538cbeedc031409a7ba9 Mon Sep 17 00:00:00 2001 From: Soare Robert-Daniel