- {% unless course.image_url contains "/assets/defaults/learning_experience/course-" %}
-

- {% endunless %}
-
{{ course.name }}
-
-
- {% if course.properties.course_length != 'NULL' %}
-
{{ course.properties.course_length }}
- {% endif %}
+
+
+

+
+
{{ course.name }}
+
{{ course.full_description }}
+
+ {% if course.properties.course_length != 'NULL' %}
+
{{ course.properties.course_length }}
+ {% endif %}
+
-
-
-
-
About the Resource
-
{{ course.full_description }}
{% include "course_outline" %}
-
+
{% endif %}
-
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid
index 321ca2f3..c9ab298e 100644
--- a/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid
@@ -1,48 +1,108 @@
{% assign available_school_categories = '' | split: '' %}
{% assign enrolled_courses = courses.enrolled %}
-{% for course in enrolled_courses %}
+{% for course in enrolled_courses %}
{% for cat in course.categories %}
{% assign cat_name = cat.name | split: '!@#$%^&*()' %}
{% assign available_school_categories = available_school_categories | concat: cat_name %}
{% endfor %}
{% endfor %}
+{% assign enrolled_learning_paths = learning_paths.enrolled %}
+{% for learning_path in enrolled_learning_paths %}
+ {% for lp_cat in learning_path.categories %}
+ {% assign lp_cat_name = lp_cat.name | split: '!@#$%^&*()' %}
+ {% assign available_school_categories = available_school_categories | concat: lp_cat_name %}
+ {% endfor %}
+{% endfor %}
{% assign unique_school_categories = available_school_categories | uniq | sort %}
-{% capture icon %} fa-arrow-left{% endcapture %}
+
+{% assign resource_bundles_to_display = "" %}
+{% if features.learning_paths? %}
+ {% if enrolled_learning_paths.any? %}
+ {% if current_person.properties.access_level == "EXPERIENCED" %}
+ {% assign resource_bundles_to_display = current_school.properties.featured_resource_bundles_experienced | downcase %}
+ {% elsif current_person.properties.access_level == "BEGINNER" %}
+ {% assign resource_bundles_to_display = current_school.properties.featured_resource_bundles_beginner | downcase %}
+ {% endif %}
+ {% endif %}
+{% endif %}
+{% assign resource_bundles_to_display_array = resource_bundles_to_display | split: "," %}
+
+{% capture icon %}
+ fa-arrow-left{% endcapture %}
{% include "mobile_header", title: "Resource Center", back_icon: icon, back_link: "javascript:sendMessage();" %}
{% include "sub_navigation" %}
-{% if current_person.signed_in? %}
-
-
-{% endif %}
-{% if current_person.properties.show_welcome_message %}
- Explore these videos and text-based resources to get the most out of the Spark Driver™ App.
-{% endif %}
-{% if courses.enrolled.any? %}
-
-
Featured
-
-
- {% for course in courses.enrolled %}
- {% if course.properties.is_recommended_course == true %}
- {% if course.properties.access_level == current_person.properties.access_level %}
-
- {% include "cards_course" with course %}
-
+ {% if current_person.signed_in? %}
+
+
+
+ {% endif %}
+ {% if current_person.properties.show_welcome_message %}
+
Questions? We can help! Check out these optional resources to get the most out of the Spark Driver™ app.
+ {% endif %}
+ {% if courses.enrolled.any? %}
+
+
Featured
+
+
+ {% if features.learning_paths? %}
+ {% if enrolled_learning_paths.any? %}
+ {% for bundle in resource_bundles_to_display_array %}
+ {% assign bundle_name = bundle | strip | escape_once %}
+ {% for learning_path in enrolled_learning_paths %}
+ {% assign lp_title_downcase = learning_path.name | downcase | strip | escape_once %}
+ {% if lp_title_downcase contains bundle_name %}
+
+ {% include "cards_learning_path" with learning_path, enrolled_courses: enrolled_courses %}
+
+ {% break %}
+ {% endif %}
+ {% endfor %}
+ {% endfor %}
+ {% endif %}
{% endif %}
- {% endif %}
- {% endfor %}
+ {% for course in enrolled_courses %}
+ {% if course.properties.is_recommended_course == true %}
+ {% if course.properties.access_level == current_person.properties.access_level %}
+
+ {% include "cards_course" with course %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
+
+
+ {% endif %}
+
+
All Categories
+
+ {% include "category_cards", school_categories: unique_school_categories %}
-
-{% endif %}
-
-
All Categories
-
{% include "category_cards", school_categories: unique_school_categories %}
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/learning_path.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/learning_path.html.liquid
index 40410b5d..711abdc0 100644
--- a/Custom_Templates/customer_templates/Walmart Spark Prod/learning_path.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Spark Prod/learning_path.html.liquid
@@ -1,10 +1,120 @@
-{% capture icon %}
- fa-arrow-left
-{% endcapture %}
-{% include "mobile_header", title: learning_path.name, back_icon: icon, back_link: "/app/courses" %}
+
+ {% learning_path_next_step_button learning_path, class: "lp-button np-top-button np-button-font-color np-button np-button-big" %}
+
+{% include "sub_navigation" %}
+
+{% capture icon %}fa-arrow-left{% endcapture %}
+{% include "mobile_header", title: learning_path.name, back_icon: icon, back_link: "/app/courses#resource-bundles" %}
+
+{% assign courses = courses.enrolled %}
- {% include "learning_path_mobile_view" %}
+
+
+

+
+
{{ learning_path.name }}
+
{{ learning_path.description | strip_html }}
+
+
{{ learning_path.items.count }} resources
+
·
+
+
+
+
+
+
+
+
Contents
+ {% assign courses_index = 1 %}
+ {% for item in learning_path.items %}
+ {% assign course_desc = "" %}
+ {% assign course_length = "" %}
+ {% assign course_is_new = false %}
+ {% for course in courses %}
+ {% if course.id == item.id %}
+ {% assign course_desc = course.short_description %}
+ {% assign course_length = course.properties.course_length %}
+ {% assign created_at_date_seconds = current_person.created_at | date: "%s" %}
+ {% assign course_published_date_seconds = course.properties.initial_publish_date | date: "%s" %}
+ {% if course_published_date_seconds > created_at_date_seconds %}{% assign course_is_new = true %}{% endif %}
+ {% endif %}
+ {% endfor %}
+ {% if item.course? %}
+ {% if learning_path.enrolled? and item.unlocked? %}
+
+ {% else %}
+
+
+
{{courses_index}}
+
+
+
{{ item.name }}
+
{{course_desc}}
+
+
+
+
+ {% endif %}
+ {% endif %}
+ {% assign courses_index = courses_index | plus: 1 %}
+ {% endfor %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/learning_path_summary.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/learning_path_summary.html.liquid
new file mode 100644
index 00000000..b9029bda
--- /dev/null
+++ b/Custom_Templates/customer_templates/Walmart Spark Prod/learning_path_summary.html.liquid
@@ -0,0 +1,113 @@
+
+ {% learning_path_next_step_button learning_path, class: "lp-button np-top-button np-button-font-color np-button np-button-big" %}
+
+{% include "sub_navigation" %}
+
+
+{% capture icon %}fa-arrow-left{% endcapture %}
+{% include "mobile_header", title: learning_path.name, back_icon: icon, back_link: "/app/courses#resource-bundles" %}
+
+{% assign courses = courses.enrolled %}
+
+
+
+
+

+
+
{{ learning_path.name }}
+
{{ learning_path.description | strip_html }}
+
+
{{ learning_path.items.count }} resources
+
·
+
+
+
+
+
+
+
+
Contents
+ {% assign courses_index = 1 %}
+ {% for item in learning_path.items %}
+ {% assign course_desc = "" %}
+ {% assign course_length = "" %}
+ {% for course in courses %}
+ {% if course.id == item.id %}
+ {% assign course_desc = course.short_description %}
+ {% assign course_length = course.properties.course_length %}
+ {% endif %}
+ {% endfor %}
+ {% if item.course? %}
+ {% if learning_path.enrolled? and item.unlocked? %}
+
+ {% else %}
+
+
+
{{courses_index}}
+
+
+
{{ item.name }}
+
{{course_desc}}
+
+
+
+
+ {% endif %}
+ {% endif %}
+ {% assign courses_index = courses_index | plus: 1 %}
+ {% endfor %}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CustomerNotes/Walmart/RC-search-tags.html b/CustomerNotes/Walmart/RC-search-tags.html
new file mode 100644
index 00000000..18478af7
--- /dev/null
+++ b/CustomerNotes/Walmart/RC-search-tags.html
@@ -0,0 +1,51 @@
+About Your Earnings
+
+Pay, Paid, Payment, Earn, Money, Income
+
+
+Checking the status of your driver referrals
+
+Referral status, Referred, Friend, Family
+
+
+Claiming your Branch Wallet
+
+Pay, Paid, Payment, Wallet, Earnings, Claim
+
+
+Earnings FAQ
+
+Paid, Payment, Pay, Money, Deposit, Bonus, Earn, Branch, ONE, Income
+
+
+
+How to apply for ONE for existing drivers
+--NO TAGS--
+
+How to apply for ONE for new drivers
+
+Sign-up, Create account, Instant pay, Same day pay, Payment, Paid, Pay, Money, Earnings, How to apply
+
+
+How to switch earnings accounts
+
+Switch payment, Switch account, Switch earnings, New pay account, Pay account, Bank
+
+
+Information on when driver referrals are updated
+
+Referral error, Report missing referral, Incorrect referral,
+
+
+Referral incentives
+
+Referrals, Incentives, Earn Money, Earn Extra Money, Refer friend, Refer family
+
+
+Rewards Program
+--NO TAGS--
+
+Viewing your earnings
+
+Paid, Pay, Payment, View pay, Find payment, Income, Money, Earn
+