@@ -44,22 +44,22 @@
{% else %}
- Yikes! There is no featured content at the moment. Be sure to check back here later.
+ Coming Soon!
{% endif %}
{% else %}
- Yikes! There is no featured content at the moment. Be sure to check back here later.
+ Coming Soon!
{% endif %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_homepage_inprogress_courses.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_homepage_inprogress_courses.html.liquid
new file mode 100644
index 00000000..24c22f40
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_homepage_inprogress_courses.html.liquid
@@ -0,0 +1,189 @@
+
+
+
+ Ongoing Training
+
+
+
+ {% if items.size > 0 %}
+ {% assign ongoing_courses_count = 0 %}
+
+
+ {% for course in items %}
+ {% if course.progress > 0 and course.progress < 100 %}
+ {% assign ongoing_courses_count = ongoing_courses_count | plus: 1 %}
+
+ {% include "cards_course_ongoing" with course %}
+
+ {% endif %}
+ {% endfor %}
+
+
+
+ {% if ongoing_courses_count > 0 %}
+
+ {% else %}
+
+
+
+ Yikes! You don't have any ongoing training at this moment.
+
+
![Yikes! You don't have any ongoing training at this moment.]()
+
+
+ {% endif %}
+ {% else %}
+
+
+ Yikes! You don't have any ongoing training at this moment.
+
+
![Yikes! You don't have any ongoing training at this moment.]()
+
+
+ {% endif %}
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_homepage_ongoing_training.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_homepage_ongoing_training.html.liquid
index 2e57bd3d..59e6dcec 100644
--- a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_homepage_ongoing_training.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_homepage_ongoing_training.html.liquid
@@ -1,7 +1,7 @@
- Ongoing Training
+ Courses
{% if items.size > 0 %}
- {% assign ongoing_courses_count = 0 %}
+ {% assign new_courses_count = 0 %}
+ {% for course in courses.enrolled %}
+ {% if course.properties.is_article_course == false %}
+ {% if course.started? == false %}
+ {% assign new_courses_count = new_courses_count | plus: 1 %}
+
+ {% include "cards_article" with course %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
+
+
+ {% if new_courses_count > 0 %}
+
+ {% else %}
+
+
+
+ You don't have any new training at this moment.
+
+
![Coming Soon!]()
+
+ {% endif %}
+ {% else %}
+
+
+ Coming Soon!
+
+
![Coming Soon!]()
+
+ {% endif %}
+
+
+
+
+
+ Ongoing Training
+
+
+
+ {% if items.size > 0 %}
+ {% assign ongoing_courses_count = 0 %}
+
+
{% for course in items %}
{% if course.properties.is_article_course == false %}
{% if course.progress > 0 and course.progress < 100 %}
@@ -26,84 +80,39 @@
{% if ongoing_courses_count > 0 %}
-
{% else %}
- Yikes! You don't have any ongoing training at this moment.
+ You don't have any ongoing training at this moment.
![Yikes! You don't have any ongoing training at this moment.]()
-
{% endif %}
{% else %}
- Yikes! You don't have any ongoing training at this moment.
-
-
![Yikes! You don't have any ongoing training at this moment.]()
-
+
{% endif %}
+
-
-
-
\ No newline at end of file
+
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_completed_banner.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_completed_banner.html.liquid
index 1c508163..31f72e2c 100644
--- a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_completed_banner.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_completed_banner.html.liquid
@@ -10,7 +10,7 @@
Congratulations, you're Scintilla Replenishment Certified. Click the button below to add your accomplishment to LinkedIn!
@@ -29,7 +29,7 @@
Congratulations, you're Scintilla Sales Analysis Certified. Click the button below to add your accomplishment to LinkedIn!
@@ -46,7 +46,7 @@
Congratulations, you're Scintilla Customer Insights Certified. Click the button below to add your accomplishment to LinkedIn!
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_desktop_view.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_desktop_view.html.liquid
new file mode 100644
index 00000000..08cb6406
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_desktop_view.html.liquid
@@ -0,0 +1,22 @@
+{% include "learning_path_desktop_header", learning_path: product %}
+
+
+
+

+
+ {% include "learning_path_description", learning_path: product %}
+ {% include "learning_path_instructors", learning_path: product %}
+
+
+
+
+
+ {% include "product_price_and_cta"%}
+
+ {% include "learning_path_product_outline" %}
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_mobile_view.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_mobile_view.html.liquid
new file mode 100644
index 00000000..c42b6612
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_mobile_view.html.liquid
@@ -0,0 +1,34 @@
+
+
+ {% t shared.learning_path.title %}
+
+
+
+
+
+
+ {{ product.name }}
+
+

+
+ {% include "product_price_and_cta" %}
+
+
+
+
+ {% include "learning_path_description", learning_path: product %}
+
+
+
+ {% include "learning_path_product_outline" %}
+
+
+{% if product.instructors.any? %}
+
+ {% include "learning_path_instructors", learning_path: product %}
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_outline.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_outline.html.liquid
new file mode 100644
index 00000000..bf077377
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_learning_path_product_outline.html.liquid
@@ -0,0 +1,10 @@
+
+
{% t .title %}
+ {% for item in product.learning_path_items %}
+ {% if item.course? %}
+ {% include "product_outline_course", id: forloop.index %}
+ {% elsif item.training_event? %}
+ {% include "product_outline_event", id: forloop.index %}
+ {% endif %}
+ {% endfor %}
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_lps_in_progress.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_lps_in_progress.html.liquid
new file mode 100644
index 00000000..ac24e095
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_lps_in_progress.html.liquid
@@ -0,0 +1,36 @@
+
+
+
+
+
+ {% assign lps_in_progress_count = 0 %}
+ {% assign enrolled_learning_paths = learning_paths.available | sort: "progress" | reverse %}
+ {% for learning_path in enrolled_learning_paths %}
+ {% if learning_path.progress > 0 %}
+ {% assign lps_in_progress_count = lps_in_progress_count | plus: 1 %}
+ {% if lps_in_progress_count < 4 %}
+
+ {% include "cards_learning_path_progress" %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+ {% if lps_in_progress_count > 0 %}
+
+ {% endif %}
+ {% if lps_in_progress_count == 0 %}
+
+
+
+ You don't have any learning Paths in progress.
+
+
![]()
+
+
+ {% endif %}
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_nonbasic_group_users_homepage.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_nonbasic_group_users_homepage.html.liquid
new file mode 100644
index 00000000..54ba5da6
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_nonbasic_group_users_homepage.html.liquid
@@ -0,0 +1,27 @@
+{% assign catalog_courses = courses.in_catalog %}
+
+
+
+ {% include "homepage_featured", items: catalog_courses %}
+ {% include "homepage_ongoing_training", items: catalog_courses %}
+
+
+
+
+
+
+ Get Certified
+
+ {% include "content_by_certificates" %}
+
+
+
+
+
+
+
+
+
+{% comment %} This endif is for the "if basic_3p_group" {% endcomment %}
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_expiration_date.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_expiration_date.html.liquid
new file mode 100644
index 00000000..2d4b898b
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_expiration_date.html.liquid
@@ -0,0 +1,7 @@
+{% if date %}
+ {% capture date_format %}{% t date.formats.short_humanized %}{% endcapture %}
+ {% capture formatted_date %}{{ date | date: date_format }}{% endcapture %}
+
+{% endif %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline.html.liquid
new file mode 100644
index 00000000..4255455a
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline.html.liquid
@@ -0,0 +1,25 @@
+
+
+ {% t .header.course %}
+
+
+
+ {% for section in course.sections %}
+ -
+
+ {{ section.name }}
+
+
+ {% for activity in section.activities %}
+ -
+
+ {% include "course_activity_locked" %}
+
+
+ {% endfor %}
+
+
+ {% endfor %}
+
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_course.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_course.html.liquid
new file mode 100644
index 00000000..594cc2de
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_course.html.liquid
@@ -0,0 +1,82 @@
+
+
+

+
+
+ {{ item.name }}
+
+
+
+ {% if item.instructors.any? %}
+ {{ item.instructor_names }}
+ {% endif %}
+
+
+
+
+
+
{% t shared.product_types.course %}
+
+
+
+
+
+
+
+
{% t .about %}
+
{{ item.full_description }}
+
+ {% if item.categories.any? %}
+
+
+ {% t .categories %}
+
+
+ {% for category in item.categories %}
+
+ {{ category.name }}
+
+ {% endfor %}
+
+
+ {% endif %}
+ {% if item.instructors.any? %}
+
+
+ {% t shared.instructors %}
+
+
+ {% for instructor in item.instructors %}
+
+

+
+
+ {{ instructor.name }}
+
+
+ {{ instructor.title }}
+
+
+
+ {% endfor %}
+
+
+ {% endif %}
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_event.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_event.html.liquid
new file mode 100644
index 00000000..aaa38f41
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_event.html.liquid
@@ -0,0 +1,49 @@
+
+
+ {% if item.available? %}
+ {% if item.location %}
+
{{ item.location }} |
+ {% endif %}
+
{{ item.time }} {{ item.time_zone }}, {{ item.date }}
+
{{ item.name }}
+ {% else %}
+
{{ item.name }}
+ {% endif %}
+
{{ item.caption }}
+
+
+
+
{{ item.formatted_type }}
+
+
+
+
+
+
{% t .about %}
+
{{ item.description }}
+
+ {% if item.instructors %}
+
+
+ {% t shared.instructors %}
+
+
+
+
+ {{ item.instructors }}
+
+
+
+
+ {% endif %}
+
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_lp.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_lp.html.liquid
new file mode 100644
index 00000000..87106e09
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_outline_lp.html.liquid
@@ -0,0 +1,65 @@
+
+
+

+
+
+ {{ item.name }}
+
+
+
+ {% if item.instructor_names %}
+ {{ item.instructor_names }}
+ {% endif %}
+
+
+
+
+
+
{% t shared.product_types.learning_path %}
+
+
+
+
+
+
+
+
{% t .about %}
+ {{ item.description }}
+
+
{% t .content %}
+ {% for learning_path_item in item.learning_path_items %}
+
+
+ {% if learning_path_item.course? %}
+
{{learning_path_item.name}}
+
{{learning_path_item.instructor_names}}
+ {% elsif learning_path_item.training_event? %}
+ {% if learning_path_item.available? %}
+
{{learning_path_item.name}}
+
{{ learning_path_item.time }} {{ learning_path_item.time_zone }}, {{ learning_path_item.date }}
+ {% else %}
+
{{learning_path_item.name}}
+
{{ learning_path_item.caption }}
+ {% endif %}
+ {% endif %}
+
+
+
+
{{ learning_path_item.formatted_type }}
+
+
+ {% endfor %}
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_price_and_cta.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_price_and_cta.html.liquid
new file mode 100644
index 00000000..c0221597
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_product_price_and_cta.html.liquid
@@ -0,0 +1,12 @@
+
+
+ {{ product.formatted_price }}
+
+ {{ product.formatted_access_period}}
+
+
+
+
+ {% commerce_add_to_cart product %}
+ {% commerce_buy_more_access product %}
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_sub_navigation.html.liquid
index 1abf2c0e..17e93188 100644
--- a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_sub_navigation.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_sub_navigation.html.liquid
@@ -3,7 +3,12 @@
{% for link in navigations.sub_navigation %}
-
+ {% if link.label == "Catalog" %}
+
+
+ {% else %}
+
+ {% endif %}
{{ link.label }}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_desktop_view.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_desktop_view.html.liquid
new file mode 100644
index 00000000..76ac434a
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_desktop_view.html.liquid
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+
+
+ {% include "training_session_details" %}
+
+
+
+
+ {% include "training_session_description" %}
+
+
+
+
+
+
+ {% t shared.more_sessions %}
+
+ {% if training_event.sessions.size > 1 %}
+ {% include "training_session_more_sessions" %}
+ {% else %}
+
+
![{% t .empty %}]()
+
+ {% t .empty %}
+
+
+ {% endif %}
+
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_mobile_view.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_mobile_view.html.liquid
new file mode 100644
index 00000000..f6a7b959
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_mobile_view.html.liquid
@@ -0,0 +1,23 @@
+
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+ {% include "training_session_details" %}
+ {% include "training_session_description" %}
+
+
+ {% if training_event.sessions.size > 1 %}
+
+
+
+ {% t shared.more_sessions %}
+
+ {% include "training_session_more_sessions" %}
+
+
+ {% endif %}
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_desktop_view.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_desktop_view.html.liquid
new file mode 100644
index 00000000..be9b996a
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_desktop_view.html.liquid
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+
+
+ {% include "training_session_details" %}
+
+
+
+
+ {% include "training_session_description" %}
+
+
+
+
+
+
+ {% t shared.more_sessions %}
+
+ {% if training_event.sessions.size > 0 %}
+ {% include "training_event_preview_more_sessions" %}
+ {% else %}
+
+
![{% t themes.default._training_event_desktop_view.empty %}]()
+
+ {% t themes.default._training_event_desktop_view.empty %}
+
+
+ {% endif %}
+
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_mobile_view.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_mobile_view.html.liquid
new file mode 100644
index 00000000..84323a09
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_mobile_view.html.liquid
@@ -0,0 +1,23 @@
+
+
+
+
+ {% include "training_session_status" %}
+ {% include "training_session_date" %}
+ {% include "training_session_details" %}
+ {% include "training_session_description" %}
+
+
+ {% if training_event.sessions.size > 0 %}
+
+
+
+ {% t shared.more_sessions %}
+
+ {% include "training_event_preview_more_sessions" %}
+
+
+ {% endif %}
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_more_sessions.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_more_sessions.html.liquid
new file mode 100644
index 00000000..a81c888a
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_more_sessions.html.liquid
@@ -0,0 +1,3 @@
+{% for session in training_event.sessions %}
+ {% include "training_event_preview_session_tile", current_session: training_session %}
+{% endfor %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_session_tile.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_session_tile.html.liquid
new file mode 100644
index 00000000..7a09cc33
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_event_preview_session_tile.html.liquid
@@ -0,0 +1,18 @@
+
+
+
+
+
+ {{ session.month }} {{ session.day }}, {{ session.year }}
+
+
+ {{ session.time_period }} {{ session.time_zone }}
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_session_status.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_session_status.html.liquid
new file mode 100644
index 00000000..75116282
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/_training_session_status.html.liquid
@@ -0,0 +1,6 @@
+
+ {% if training_session.approved? %}
+
+ {% endif %}
+ {{ training_session.status.label }}
+
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/bundle_product.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/bundle_product.html.liquid
new file mode 100644
index 00000000..734327e5
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/bundle_product.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "bundle_product_desktop_view" %}
+
+
+ {% include "bundle_product_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_cart.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_cart.html.liquid
new file mode 100644
index 00000000..1aee9f30
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_cart.html.liquid
@@ -0,0 +1,11 @@
+{% include "header" %}
+
+
+ {% commerce_cart %}
+
+
+{% include "footer" %}
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_catalog.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_catalog.html.liquid
new file mode 100644
index 00000000..94d32dfa
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_catalog.html.liquid
@@ -0,0 +1,28 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.in_catalog %}
+{% include "sub_navigation" %}
+
+
+ {% if catalog.any? %}
+
+ {% for item in catalog.items %}
+
+ {% include "cards_catalog_item" with item %}
+
+ {% endfor %}
+
+ {% else %}
+ {% capture message %}
+ {% t shared.zero_state.courses.catalog,
+ key: current_school.course_vocabulary
+ %}
+ {% endcapture %}
+ {% include "courses_zero_state", message: message %}
+ {% endif %}
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_checkout.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_checkout.html.liquid
new file mode 100644
index 00000000..96d540b6
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_checkout.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_checkout %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_order_details.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_order_details.html.liquid
new file mode 100644
index 00000000..a12b7245
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_order_details.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_order_details %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_order_history.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_order_history.html.liquid
new file mode 100644
index 00000000..031f5eac
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_order_history.html.liquid
@@ -0,0 +1,8 @@
+{% include "header" %}
+{% include "account_tabs" %}
+
+
+ {% commerce_order_history %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_redeem.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_redeem.html.liquid
new file mode 100644
index 00000000..58260bac
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_redeem.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_redeem %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_return.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_return.html.liquid
new file mode 100644
index 00000000..e8ea847b
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/commerce_return.html.liquid
@@ -0,0 +1,7 @@
+{% include "header" %}
+
+
+ {% commerce_return %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/course_product.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/course_product.html.liquid
new file mode 100644
index 00000000..05e06883
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/course_product.html.liquid
@@ -0,0 +1,10 @@
+{% include "header" %}
+
+
+ {% include "course_product_desktop_view" %}
+
+
+ {% include "course_product_mobile_view" %}
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Walmart Scintilla Prod/homepage.html.liquid b/Custom_Templates/customer_templates/Walmart Scintilla Prod/homepage.html.liquid
index 65517eab..34780786 100644
--- a/Custom_Templates/customer_templates/Walmart Scintilla Prod/homepage.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Scintilla Prod/homepage.html.liquid
@@ -107,103 +107,18 @@
{% assign enrolled_courses = courses.enrolled %}
{% include "basic_group_homepage", items: enrolled_courses %}
+ {% include "lps_in_progress" %}
{% else %}
+
{% include "sub_navigation" %}
+ {% include "nonbasic_group_users_homepage" %}
+ {% include "lps_in_progress" %}
+ {% include "homepage_topics" %}
+
+
+ {% endif %}
- {% include "homepage_featured", items: catalog_courses %}
-
-
-
-
-
-
-
- {% assign lps_in_progress = 0 %}
- {% assign enrolled_learning_paths = learning_paths.enrolled | sort: "progress" | reverse %}
- {% for learning_path in enrolled_learning_paths %}
- {% if learning_path.progress > 0 %}
- {% assign lps_in_progress = lps_in_progress | plus: 1 %}
-
- {% if lps_in_progress < 4 %}
-
- {% include "cards_learning_path_progress" %}
-
-
- {% endif %}
- {% endif %}
- {% endfor %}
-
- {% if lps_in_progress > 0 %}
-
- {% endif %}
- {% if lps_in_progress == 0 %}
-
-
-
- Yikes! You don't have any learning Paths in progress.
-
-
![]()
-
-
-
- {% endif %}
-
-
-
-
- {% comment %} {% if features.training_events? %}
-
-
-
-
- {% if training_events.available.any? %}
- {% for training_event in training_events.available limit:1 %}
- {% include "cards_training_event" with training_event %}
- {% endfor %}
-
- {% else %}
- {% include "training_events_zero_state" %}
- {% endif %}
-
-
-
- {% endif %} {% endcomment %}
-
-
-
- {% include "homepage_ongoing_training", items: catalog_courses %}
-
- {% include "homepage_topics" %}
- {%- comment -%}
-
-
-
-
- {%- endcomment -%}
- {% comment %} This endif is for the "if basic_3p_group" {% endcomment %}
-{% endif %}
{% include "footer" %}
-