From 7e1158fe2d7b3f03659eb634d342528777e6dcb0 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Mon, 11 Dec 2017 11:32:07 -0500 Subject: [PATCH] swapping the include header view file with apply filters to include cart data merging cart data into the header section to get rid of widget for now --- views/front/registrations/cart.html | 2 +- views/front/registrations/checkout.html | 2 +- views/front/registrations/list.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/views/front/registrations/cart.html b/views/front/registrations/cart.html index 36b29dd..9f68b7e 100644 --- a/views/front/registrations/cart.html +++ b/views/front/registrations/cart.html @@ -1,4 +1,4 @@ -{include file='front/registrations/header.html'} +{apply_filters('glm_members_registrations_header', 'accountHeader')} {if $cartPageText}
diff --git a/views/front/registrations/checkout.html b/views/front/registrations/checkout.html index 5901fb9..fcda91a 100644 --- a/views/front/registrations/checkout.html +++ b/views/front/registrations/checkout.html @@ -1,4 +1,4 @@ -{include file='front/registrations/header.html'} +{apply_filters('glm_members_registrations_header', 'accountHeader')} {if $checkoutPageText}
diff --git a/views/front/registrations/list.html b/views/front/registrations/list.html index c8a75a5..35da1c4 100644 --- a/views/front/registrations/list.html +++ b/views/front/registrations/list.html @@ -1,4 +1,4 @@ -{include file='front/registrations/header.html'} +{apply_filters('glm_members_registrations_header', 'accountHeader')} {if $reg_bulletin}
-- 2.17.1