From c22ee2ee352b8bcd8a1a63475a53e3333eacb814 Mon Sep 17 00:00:00 2001 From: prakash-a7x Date: Tue, 16 May 2023 12:01:51 +0600 Subject: [PATCH 1/5] fixed sign in menu bar menu items click issue --- templates/shaper_helixultimate/scss/theme.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/templates/shaper_helixultimate/scss/theme.scss b/templates/shaper_helixultimate/scss/theme.scss index 2295137e..e58480b7 100755 --- a/templates/shaper_helixultimate/scss/theme.scss +++ b/templates/shaper_helixultimate/scss/theme.scss @@ -801,7 +801,7 @@ body.modal-menu-active { background: #fff; border: 1px solid #e4e4e4; border-radius: 3px; - padding: 10px 15px !important; + padding: 10px 5px !important; list-style: none !important; font-size: 14px; position: absolute; @@ -809,6 +809,13 @@ body.modal-menu-active { right: 0; top: 100%; display: none !important; + li { + a { + display: block; + width: 100%; + padding: 0 15px; + } + } > li:not(:last-child) { border-bottom: 1px solid #e4e4e4; padding-bottom: 5px; From de89282a72203c7edc6660ce3a564a4c1c9658b7 Mon Sep 17 00:00:00 2001 From: prakash-a7x Date: Tue, 16 May 2023 16:28:18 +0600 Subject: [PATCH 2/5] Google analytics 4 placeholder fix --- .../helixultimate/overrides/com_finder/search/default.php | 2 +- templates/shaper_helixultimate/options.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/system/helixultimate/overrides/com_finder/search/default.php b/plugins/system/helixultimate/overrides/com_finder/search/default.php index 8b8e910b..aa77f970 100644 --- a/plugins/system/helixultimate/overrides/com_finder/search/default.php +++ b/plugins/system/helixultimate/overrides/com_finder/search/default.php @@ -34,7 +34,7 @@
params->get('show_page_heading')) : ?>

- escape($this->params->get('page_heading'))) : ?> + escape($this->params->get('page_heading'))) : ?> escape($this->params->get('page_heading')); ?> escape($this->params->get('page_title')); ?> diff --git a/templates/shaper_helixultimate/options.xml b/templates/shaper_helixultimate/options.xml index 64819e2e..f2cf73b0 100644 --- a/templates/shaper_helixultimate/options.xml +++ b/templates/shaper_helixultimate/options.xml @@ -1871,7 +1871,7 @@ type="text" label="HELIX_ULTIMATE_GOOGLE_ANALYTICS_CODE" description="HELIX_ULTIMATE_GOOGLE_ANALYTICS_CODE_DESC" - hint="UA-xxxxxxxxx-x" /> + hint="G-XXXXXXXXXX" /> Date: Tue, 16 May 2023 17:30:17 +0600 Subject: [PATCH 3/5] custom offcanvas default values set if no value are given --- plugins/system/helixultimate/src/Core/HelixUltimate.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/system/helixultimate/src/Core/HelixUltimate.php b/plugins/system/helixultimate/src/Core/HelixUltimate.php index fcbcf851..e5f6d8d2 100644 --- a/plugins/system/helixultimate/src/Core/HelixUltimate.php +++ b/plugins/system/helixultimate/src/Core/HelixUltimate.php @@ -1897,10 +1897,10 @@ public function getSCSSVariables() : array 'footer_link_hover_color' => $this->params->get('footer_link_hover_color'), 'topbar_bg_color' => $this->params->get('topbar_bg_color'), 'topbar_text_color' => $this->params->get('topbar_text_color'), - 'offcanvas_menu_icon_color' => $this->params->get('offcanvas_menu_icon_color'), - 'offcanvas_menu_bg_color' => $this->params->get('offcanvas_menu_bg_color'), - 'offcanvas_menu_items_and_items_color' => $this->params->get('offcanvas_menu_items_and_items_color'), - 'offcanvas_menu_active_menu_item_color' => $this->params->get('offcanvas_menu_active_menu_item_color') + 'offcanvas_menu_icon_color' => $this->params->get('offcanvas_menu_icon_color') ?? '#000000', + 'offcanvas_menu_bg_color' => $this->params->get('offcanvas_menu_bg_color') ?? $this->params->get('menu_dropdown_bg_color'), + 'offcanvas_menu_items_and_items_color' => $this->params->get('offcanvas_menu_items_and_items_color') ?? $this->params->get('menu_dropdown_text_color'), + 'offcanvas_menu_active_menu_item_color' => $this->params->get('offcanvas_menu_active_menu_item_color') ?? $scssVars['menu_text_active_color'] ); } else From 2851e8394d76d0276b7cdb4ce9cffbd2619c0d14 Mon Sep 17 00:00:00 2001 From: prakash-a7x Date: Thu, 18 May 2023 15:35:26 +0600 Subject: [PATCH 4/5] visually hidden class added --- templates/shaper_helixultimate/scss/theme.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/templates/shaper_helixultimate/scss/theme.scss b/templates/shaper_helixultimate/scss/theme.scss index 2295137e..23767c47 100755 --- a/templates/shaper_helixultimate/scss/theme.scss +++ b/templates/shaper_helixultimate/scss/theme.scss @@ -2593,4 +2593,16 @@ body.contentpane.com-contact.view-contacts.layout-modal { img { width: 100%; } +} + +.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0,0,0,0) !important; + white-space: nowrap !important; + border: 0 !important; } \ No newline at end of file From 7c923a620b531497b3737336e929f2a19e7a8c90 Mon Sep 17 00:00:00 2001 From: prakash-a7x Date: Thu, 18 May 2023 16:15:30 +0600 Subject: [PATCH 5/5] read more with title text issue fix --- .../overrides/layouts/joomla/content/readmore.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/system/helixultimate/overrides/layouts/joomla/content/readmore.php b/plugins/system/helixultimate/overrides/layouts/joomla/content/readmore.php index 3ebdf94c..7c6e175c 100644 --- a/plugins/system/helixultimate/overrides/layouts/joomla/content/readmore.php +++ b/plugins/system/helixultimate/overrides/layouts/joomla/content/readmore.php @@ -36,8 +36,7 @@