diff --git a/Custom_Templates/customer_templates/Walmart Supplier Prod/.DS_Store b/Custom_Templates/customer_templates/Walmart Supplier Prod/.DS_Store
new file mode 100644
index 00000000..5008ddfc
Binary files /dev/null and b/Custom_Templates/customer_templates/Walmart Supplier Prod/.DS_Store differ
diff --git a/Custom_Templates/customer_templates/Walmart Supplier Prod/_welcome_section.html.liquid b/Custom_Templates/customer_templates/Walmart Supplier Prod/_welcome_section.html.liquid
index ef57f8c1..e518f7c8 100644
--- a/Custom_Templates/customer_templates/Walmart Supplier Prod/_welcome_section.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Supplier Prod/_welcome_section.html.liquid
@@ -106,7 +106,6 @@
font-size: 25px;
font-weight: 600;
text-align: center;
- white-space: nowrap;
}
.heading {
color: #fff;
diff --git a/Custom_Templates/customer_templates/Walmart Supplier Prod/_welcome_to_walmart_courses.html.liquid b/Custom_Templates/customer_templates/Walmart Supplier Prod/_welcome_to_walmart_courses.html.liquid
index 7e0ed12f..77824a79 100644
--- a/Custom_Templates/customer_templates/Walmart Supplier Prod/_welcome_to_walmart_courses.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Supplier Prod/_welcome_to_walmart_courses.html.liquid
@@ -1,5 +1,6 @@
{% assign available_categories = 'Introduction to Walmart,Onboarding,Merchandising,Supply Chain,Getting Paid' %}
{% assign uniq_courses = '' %}
+{% assign sorted_learning_paths = learning_paths.available | sort: "name" %}
@@ -12,7 +13,7 @@
- {% for learning_path in learning_paths.available %}
+ {% for learning_path in sorted_learning_paths %}
{% for category in learning_path.categories %}
{% if category.name == 'Introduction to Walmart'%}
{% unless uniq_courses contains learning_path.name %}
@@ -34,12 +35,13 @@
- {% for learning_path in learning_paths.available %}
+ {% assign uniq_courses = "" %}
+ {% for learning_path in sorted_learning_paths %}
{% for category in learning_path.categories %}
- {% if category.name == 'Onboarding'%}
+ {% if category.name == 'Onboarding' %}
{% unless uniq_courses contains learning_path.name %}
{% include 'cards_learning_paths_square' %}
- {% assign uniq_courses = uniq_courses | append: learning_path.name %}
+ {% assign uniq_courses = uniq_courses | append: learning_path.name | append: "," %}
{% endunless %}
{% endif %}
{% endfor %}
@@ -56,7 +58,7 @@
- {% for learning_path in learning_paths.available %}
+ {% for learning_path in sorted_learning_paths %}
{% for category in learning_path.categories %}
{% if category.name == 'Merchandising'%}
{% unless uniq_courses contains learning_path.name %}
@@ -78,7 +80,7 @@
- {% for learning_path in learning_paths.available %}
+ {% for learning_path in sorted_learning_paths %}
{% for category in learning_path.categories %}
{% if category.name == 'Supply Chain'%}
{% unless uniq_courses contains learning_path.name %}
@@ -100,7 +102,7 @@
- {% for learning_path in learning_paths.available %}
+ {% for learning_path in sorted_learning_paths %}
{% for category in learning_path.categories %}
{% if category.name == 'Getting Paid'%}
{% unless uniq_courses contains learning_path.name %}
diff --git a/Custom_Templates/customer_templates/Walmart Supplier Prod/_widget_course_progress.html.liquid b/Custom_Templates/customer_templates/Walmart Supplier Prod/_widget_course_progress.html.liquid
index 4e83d29f..ea578c11 100644
--- a/Custom_Templates/customer_templates/Walmart Supplier Prod/_widget_course_progress.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Supplier Prod/_widget_course_progress.html.liquid
@@ -114,7 +114,7 @@
font-size: 0.875rem;
margin-top: 1rem;
}
-
+
@media (min-width:768px) {
.progress-ring-wrapper {
padding: 1.5rem 0.4rem 1rem 0.4rem;
diff --git a/Custom_Templates/customer_templates/Walmart Supplier Prod/homepage.html.liquid b/Custom_Templates/customer_templates/Walmart Supplier Prod/homepage.html.liquid
index aff26f9d..0c25b55a 100644
--- a/Custom_Templates/customer_templates/Walmart Supplier Prod/homepage.html.liquid
+++ b/Custom_Templates/customer_templates/Walmart Supplier Prod/homepage.html.liquid
@@ -5,11 +5,9 @@
{% endif %}
{% endfor %}
-{% if current_person.properties.modal %}
{% if current_person.properties.first_login %}
{% include 'modal' %}
{% endif %}
-{% endif %}
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.featured %}