From bcd6e2591fc25b07b60dccd2c775da3a821a11b8 Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Thu, 12 Oct 2023 17:35:48 -0400 Subject: [PATCH] Zenjob templates updates. Notes for a few companies. --- .../_NEW_TEMPLATES/search.html.liquid | 2 + .../_cards_course.html.liquid | 1 + .../_cards_course_condensed.html.liquid | 42 +++ .../_category_cards.html.liquid | 38 +++ .../_course_activity_unlocked.html.liquid | 1 + .../_course_outline.html.liquid | 1 + .../_filtered_courses_tray.html.liquid | 1 + .../Walmart Spark Prod/_head.html.liquid | 29 +++ .../_mobile_header.html.liquid | 4 + .../_search_result.html.liquid | 17 ++ .../_sub_navigation.html.liquid | 21 ++ .../Walmart Spark Prod/course.html.liquid | 72 ++++++ .../Walmart Spark Prod/courses.html.liquid | 48 ++++ .../Walmart Spark Prod/dashboard.html.liquid | 3 + .../Walmart Spark Prod/homepage.html.liquid | 4 + .../learning_path.html.liquid | 10 + .../Walmart Spark Prod/progress.html.liquid | 60 +++++ .../Walmart Spark Prod/search.html.liquid | 54 ++++ .../Walmart/_cards_course.html.liquid | 37 --- .../Walmart/_cards_video.html.liquid | 45 ---- .../Walmart/_course_content_info.html.liquid | 18 -- .../Walmart/_courses_carousel.html.liquid | 13 - .../Walmart/_courses_catalog.html.liquid | 20 -- .../Walmart/_dropdown_courses.html.liquid | 61 ----- .../Walmart/_faq.html.liquid | 217 ---------------- .../Walmart/_footer.html.liquid | 117 --------- .../Walmart/_head.html.liquid | 11 - .../Walmart/_header.html.liquid | 189 -------------- .../Walmart/_resources.html.liquid | 62 ----- .../Walmart/catalog.html.liquid | 23 -- .../Walmart/dashboard.html.liquid | 28 -- .../Walmart/homepage.html.liquid | 138 ---------- .../Walmart/learning_paths.html.liquid | 14 - .../Walmart/media.html.liquid | 30 --- .../Walmart/news.html.liquid | 187 -------------- .../Walmart/styles.css.liquid | 241 ------------------ .../Walmart/training_events.html.liquid | 19 -- .../Zenjob/_courses_catalog.html.liquid | 32 ++- .../Zenjob/_search_result.html.liquid | 21 ++ CustomerNotes/AchieveCE/achievece.md | 21 ++ CustomerNotes/Skuid/Skuid.md | 18 ++ CustomerNotes/Walmart/Walmart.md | 14 + 42 files changed, 508 insertions(+), 1476 deletions(-) create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course_condensed.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_category_cards.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_course_activity_unlocked.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_course_outline.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_filtered_courses_tray.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_head.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_mobile_header.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_search_result.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/_sub_navigation.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/course.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/dashboard.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/homepage.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/learning_path.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/progress.html.liquid create mode 100644 Custom_Templates/customer_templates/Walmart Spark Prod/search.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_cards_course.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_cards_video.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_course_content_info.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_courses_carousel.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_courses_catalog.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_dropdown_courses.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_faq.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_footer.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_head.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_header.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/_resources.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/catalog.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/dashboard.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/homepage.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/learning_paths.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/media.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/news.html.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/styles.css.liquid delete mode 100644 Custom_Templates/customer_templates/Walmart/training_events.html.liquid create mode 100644 Custom_Templates/customer_templates/Zenjob/_search_result.html.liquid diff --git a/Custom_Templates/_NEW_TEMPLATES/search.html.liquid b/Custom_Templates/_NEW_TEMPLATES/search.html.liquid index 01684399..c96b5915 100644 --- a/Custom_Templates/_NEW_TEMPLATES/search.html.liquid +++ b/Custom_Templates/_NEW_TEMPLATES/search.html.liquid @@ -19,9 +19,11 @@ %} {% if results.items.any? %} + {% if results.course %} {% render "search_result" for results.items as result %} {% else %} {% include "search_zero_state" %} + {% endif %} {% endif %} {% include "footer" %} diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course.html.liquid new file mode 100644 index 00000000..bb5fb3e0 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course.html.liquid @@ -0,0 +1 @@ +{% capture course_path %}{% route course, id: course.id %}{% endcapture %}{% capture course_label %}{% endcapture %}{% capture course_data_label %}none{% endcapture %} {% assign course_is_new = false %} {% 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 %}{% if course_is_new %}{% if course.progress == 0 %}{% capture course_label %}
New
{% endcapture %}{% capture course_data_label %}new{% endcapture %} {% endif %} {% endif %} {% if course.progress > 0 and course.progress < 100 %}{% capture course_label %}
In progress
{% endcapture %}{% capture course_data_label %}in-progress{% endcapture %} {% elsif course.completed? %} {% capture course_label %}
Viewed
{% endcapture %}{% capture course_data_label %}viewed{% endcapture %}{% endif %}
{% if course.ribbon %}
{{ course.ribbon }}
{% endif %}{{ course.name }}

{{ course.name }}

{% if course.instructors.size > 0 %}
{{ course.instructor_names }}
{% endif %}
{% if course.properties.course_length != 'NULL' %}
{{ course.properties.course_length }}
{% endif %}{{course_label}}
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course_condensed.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course_condensed.html.liquid new file mode 100644 index 00000000..1ef4bdd6 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_cards_course_condensed.html.liquid @@ -0,0 +1,42 @@ +{% capture course_path %}{% route course, id: course.id %}{% endcapture %} +{% capture course_label %}{% endcapture %}{% capture course_data_label %}none{% endcapture %} + +{% assign is_new = false %} +{% 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 is_new = true %} +{% endif %} + +{% if is_new %} + {% if course.progress == 0 %} + {% capture course_label %}
New
{% endcapture %} + {% capture course_data_label %}new{% endcapture %} + {% endif %} +{% endif %} + +{% if course.progress > 0 and course.progress < 100 %} + {% capture course_label %}
In progress
{% endcapture %} + {% capture course_data_label %}in-progress{% endcapture %} +{% elsif course.completed? %} + {% capture course_label %}
Viewed
{% endcapture %} + {% capture course_data_label %}viewed{% endcapture %} +{% endif %} + + +
+
+
{{ course.name }}
+
+ {{ course.full_description | strip_html }} +
+
+ {% if course.properties.course_length != 'NULL' %} +
{{ course.properties.course_length }}
+ {% endif %} +
{{course_label}}
+
+
+
+
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_category_cards.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_category_cards.html.liquid new file mode 100644 index 00000000..4fb37dfb --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_category_cards.html.liquid @@ -0,0 +1,38 @@ +{% if courses.enrolled.any? %}{% comment %} GETTING STARTED {% endcomment %}{% for school_category in school_categories %} {% if school_category == "Getting Started" %}
Getting Started Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} EARNINGS {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Earnings" %}
Earnings Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} SHOPPING & DELIVERY {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Shopping & Delivery" %}
Shopping & Delivery Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} DELIVERY {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Delivery" %}
Delivery Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} USING THE APP {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Using the App" %}
Using the App Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %}{% comment %} CONTACTING CUSTOMERS {% endcomment %}{% for school_category in school_categories %}{% if school_category == "Contacting Customers" %}
Contacting Customers Category Icon
New
{{school_category}}
{% include "filtered_courses_tray", category_name: school_category %}{% endif %}{% endfor %} + + {% comment %} NON SPECIFIED {% endcomment %} + {% for school_category in school_categories %} + {% unless school_category == "Getting Started" or school_category == "Earnings" or school_category == "Shopping & Delivery" or school_category == "Delivery" or school_category == "Using the App" or school_category == "Contacting Customers" %} +
+
+
+ {% if school_category == "Arrival & Pick Up" %} + Category Icon + {% elsif school_category == "Drop Off & Returns" %} + Category Icon + {% elsif school_category == "Troubleshooting" %} + Category Icon + {% elsif school_category == "Trust & Safety" %} + Category Icon + {% elsif school_category == "Offer Acceptance" %} + Category Icon + {% elsif school_category == "Returns" %} + Category Icon + {% else %} + Category Icon + {% endif %} +
+
+
+
New
+
+
{{school_category}}
+
+
+ +
+ {% include "filtered_courses_tray", category_name: school_category %} + {% endunless %} + {% endfor %} + +{% endif %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_course_activity_unlocked.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_course_activity_unlocked.html.liquid new file mode 100644 index 00000000..92db0be0 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_course_activity_unlocked.html.liquid @@ -0,0 +1 @@ +{{ activity.title }} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_course_outline.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_course_outline.html.liquid new file mode 100644 index 00000000..144da4a7 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_course_outline.html.liquid @@ -0,0 +1 @@ +
Contents
    {% assign activity_count = 0 %}{% assign num_of_sections = course.sections | size %}{% assign num_of_activities_in_first_section = course.sections.first.activities | size %}{% for section in course.sections %}
  1. {% if num_of_activities_in_first_section > 1 or num_of_sections > 1 %}
    {{ section.name }}
    {% endif %}
      {% for activity in section.activities %}{% assign activity_count = activity_count | plus: 1 %}
    1. {% if activity.completed? %}{% if activity.locked? %}{{ activity.title }}{% else %}{% include "course_activity_unlocked", class: "np-course-outline-content-activity-link-completed" %}{% endif %}
      {% else %}
      {{ activity_count }}
      {% if activity.locked? %} {{ activity.title }}{% else %}{% include "course_activity_unlocked", class: "np-course-outline-content-activity-link" %}{% endif %}
      {% endif %}
    2. {% endfor %}
  2. {% endfor %}
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_filtered_courses_tray.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_filtered_courses_tray.html.liquid new file mode 100644 index 00000000..d541d032 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_filtered_courses_tray.html.liquid @@ -0,0 +1 @@ +
{{category_name}}
{% if current_person.signed_in? %}{% endif %}
{% assign enrolled_courses_by_progress = enrolled_courses | sort: "name" %}{% for course in enrolled_courses_by_progress %}{% for course_category in course.categories %}{% if school_category == course_category.name %}{% include "cards_course_condensed" with course %}{% endif %}{% endfor %}{% endfor %}
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_head.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_head.html.liquid new file mode 100644 index 00000000..4cec26ab --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_head.html.liquid @@ -0,0 +1,29 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + +{% assign staging_school_id = "1ddd31d3-cabe-4809-b5d3-8abfbdd33458" %} +{% assign production_sandbox_school_id = "a21f483c-cfa4-46f7-b30b-8753ec1e7f60" %} +{% assign live_school_id = "3c8229bf-a77c-4c88-8c65-75a03b0b1212" %} + +{% if current_school.id == staging_school_id %} + {% comment %} {% endcomment %} +{% elsif current_school.id == production_sandbox_school_id %} + {% comment %} {% endcomment %} +{% elsif current_school.id == live_school_id %} + +{% endif %} + + + + + +{% if current_school.id == staging_school_id %} + {% comment %} {% endcomment %} + {% include "js_scripts" %} +{% elsif current_school.id == production_sandbox_school_id %} + {% comment %} {% endcomment %} + {% include "js_scripts" %} +{% elsif current_school.id == live_school_id %} + +{% endif %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_mobile_header.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_mobile_header.html.liquid new file mode 100644 index 00000000..0d60cc9c --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_mobile_header.html.liquid @@ -0,0 +1,4 @@ +
+ +
{{title}}
+
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_search_result.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_search_result.html.liquid new file mode 100644 index 00000000..2c80e695 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_search_result.html.liquid @@ -0,0 +1,17 @@ +{% if result.type == "course" %} +
+ +
+{% endif %} + diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/_sub_navigation.html.liquid new file mode 100644 index 00000000..84069320 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/_sub_navigation.html.liquid @@ -0,0 +1,21 @@ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/course.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/course.html.liquid new file mode 100644 index 00000000..c3fb2d0d --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/course.html.liquid @@ -0,0 +1,72 @@ +{% if course.properties.skip_course_outline_page %} + +{% else %} + {% assign back_button_url = "/app/courses" %} + {% for category in course.categories %} + {% assign cat_name = category.name | replace: " ", "-" | downcase %} + {% assign back_button_url = '/app/courses#' | append: cat_name %} + {% endfor %} + +
+ +
{{course.name}}
+
+ +
+
+
+ {% unless course.image_url contains "/assets/defaults/learning_experience/course-" %} + {{ course.name }} + {% endunless %} +
{{ course.name }}
+
+
+ {% if course.properties.course_length != 'NULL' %} +
{{ course.properties.course_length }}
+ {% endif %} +
+
+
+
+
+

About the Resource

+
{{ course.full_description }}
+
+
+ {% include "course_outline" %} +
+
+ {% if course.learner_can_retake? %} +
+ {% form_authenticity_token %} + +
+ {% else %} + + {% if course.progress > 0 and course.progress < 100 %} + Resume + {% elsif course.completed? %} + Review + {% else %} + Start + {% endif %} + + {% endif %} +
+
+
+{% endif %} + + diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid new file mode 100644 index 00000000..321ca2f3 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/courses.html.liquid @@ -0,0 +1,48 @@ +{% assign available_school_categories = '' | split: '' %} +{% assign enrolled_courses = courses.enrolled %} +{% 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 unique_school_categories = available_school_categories | uniq | sort %} +{% 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? %} + +{% endif %} +
+ +
{% include "category_cards", school_categories: unique_school_categories %}
+
+
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/dashboard.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/dashboard.html.liquid new file mode 100644 index 00000000..9f5bfecd --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/dashboard.html.liquid @@ -0,0 +1,3 @@ + diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/homepage.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/homepage.html.liquid new file mode 100644 index 00000000..5192dc75 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/homepage.html.liquid @@ -0,0 +1,4 @@ + + 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 new file mode 100644 index 00000000..40410b5d --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/learning_path.html.liquid @@ -0,0 +1,10 @@ +{% capture icon %} + fa-arrow-left +{% endcapture %} +{% include "mobile_header", title: learning_path.name, back_icon: icon, back_link: "/app/courses" %} + +
+
+ {% include "learning_path_mobile_view" %} +
+
diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/progress.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/progress.html.liquid new file mode 100644 index 00000000..2a938e16 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/progress.html.liquid @@ -0,0 +1,60 @@ +{% capture icon %} + fa-arrow-left +{% endcapture %} +{% include "mobile_header", title: "Resource Center", back_icon: icon, back_link: "javascript:sendMessage();" %} + +{% include "sub_navigation" %} + +
+
+
+ {% if courses.enrolled.any? %} + {% assign courses_in_progress = 0 %} + {% assign enrolled_courses = courses.enrolled %} + {% assign courses_ordered_by_progress = enrolled_courses | sort: "progress" %} + {% for course in courses_ordered_by_progress %} + + {% if course.progress > 0 %} + {% assign courses_in_progress = courses_in_progress | plus: 1 %} + {% capture course_path %}{% route course, id: course.id %}{% endcapture %} + +
+
+ +
{{ course.name }}
+
+ {% if course.properties.course_length != 'NULL' %} +
+ {{ course.properties.course_length }} +
+ {% endif %} +
+ {% if course.progress > 0 and course.progress < 100 %} +
+ In progress +
+ {% elsif course.completed? %} +
+ Viewed +
+ {% endif %} +
+
+
+
+
+ {% endif %} + {% endfor %} + + {% if courses_in_progress == 0 %} +
+
+
+

You haven't viewed any resources yet.
Visit All Resources to see what's available.

+
+
+ {% endif %} + {% endif %} +
+
+
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart Spark Prod/search.html.liquid b/Custom_Templates/customer_templates/Walmart Spark Prod/search.html.liquid new file mode 100644 index 00000000..a69ad012 --- /dev/null +++ b/Custom_Templates/customer_templates/Walmart Spark Prod/search.html.liquid @@ -0,0 +1,54 @@ +{% include "mobile_header", title: "Search", back_icon: "fa-arrow-left", back_link: "javascript: goBack()" %} +{% include "sub_navigation" %} + +
+ +
+
+ {{ results.count }} + {% t .results_for %} + "{{ results.term }}" +
+
+ + {% if results.items.any? %} +
+ {% render "search_result" for results.items as result %} +
+ {% else %} +
+
+
+
+
+
No results found
+
Please try another search item.
+
+
+
+
+ {% endif %} +
+ + diff --git a/Custom_Templates/customer_templates/Walmart/_cards_course.html.liquid b/Custom_Templates/customer_templates/Walmart/_cards_course.html.liquid deleted file mode 100644 index fb4033bb..00000000 --- a/Custom_Templates/customer_templates/Walmart/_cards_course.html.liquid +++ /dev/null @@ -1,37 +0,0 @@ - diff --git a/Custom_Templates/customer_templates/Walmart/_cards_video.html.liquid b/Custom_Templates/customer_templates/Walmart/_cards_video.html.liquid deleted file mode 100644 index 67ecc29e..00000000 --- a/Custom_Templates/customer_templates/Walmart/_cards_video.html.liquid +++ /dev/null @@ -1,45 +0,0 @@ - - - diff --git a/Custom_Templates/customer_templates/Walmart/_course_content_info.html.liquid b/Custom_Templates/customer_templates/Walmart/_course_content_info.html.liquid deleted file mode 100644 index d083d636..00000000 --- a/Custom_Templates/customer_templates/Walmart/_course_content_info.html.liquid +++ /dev/null @@ -1,18 +0,0 @@ -
-
-
Total Sections
-
{{info | size }}
-
-
-
Total Activities
- {% assign activityCount = 0 %} - {% for sections in info %} - {% for activities in sections.activities %} - {% assign activityCount = activityCount | plus: 1 %} - {% endfor %} - {% endfor %} - -
{{ activityCount }}
-
- -
diff --git a/Custom_Templates/customer_templates/Walmart/_courses_carousel.html.liquid b/Custom_Templates/customer_templates/Walmart/_courses_carousel.html.liquid deleted file mode 100644 index 532dbd66..00000000 --- a/Custom_Templates/customer_templates/Walmart/_courses_carousel.html.liquid +++ /dev/null @@ -1,13 +0,0 @@ - -{% assign category_name_split = category | split: " " %} -{% assign category_name_joined = category_name_split | join: "-" | downcase %} - - diff --git a/Custom_Templates/customer_templates/Walmart/_courses_catalog.html.liquid b/Custom_Templates/customer_templates/Walmart/_courses_catalog.html.liquid deleted file mode 100644 index 66bebbf0..00000000 --- a/Custom_Templates/customer_templates/Walmart/_courses_catalog.html.liquid +++ /dev/null @@ -1,20 +0,0 @@ -{% if courses.in_catalog.any? %} -
- {% for course in courses.in_catalog %} - {% for category in course.categories %} - {% if category.name != "Videos" %} -
- {% include "cards_course" with course %} -
- {% endif %} - {% endfor %} - {% endfor %} -
-{% else %} - {% capture message %} - {% t shared.zero_state.courses.catalog, - key: current_school.course_vocabulary - %} - {% endcapture %} - {% include "courses_zero_state", message: message %} -{% endif %} diff --git a/Custom_Templates/customer_templates/Walmart/_dropdown_courses.html.liquid b/Custom_Templates/customer_templates/Walmart/_dropdown_courses.html.liquid deleted file mode 100644 index 78377e70..00000000 --- a/Custom_Templates/customer_templates/Walmart/_dropdown_courses.html.liquid +++ /dev/null @@ -1,61 +0,0 @@ - - {{ title }} - - - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart/_faq.html.liquid b/Custom_Templates/customer_templates/Walmart/_faq.html.liquid deleted file mode 100644 index 1c7e32ea..00000000 --- a/Custom_Templates/customer_templates/Walmart/_faq.html.liquid +++ /dev/null @@ -1,217 +0,0 @@ -
-
-

Frequently asked questions

- -
- -
-
- How do I sign up with Spark Driver? - -

Visit the Join Spark Driver tab on the Spark Driver website to view the service area map, select your preferred area, and complete the enrollment form. Once your information has been submitted for review, you will receive a confirmation email from our third-party administrator, Delivery Drivers, Inc. (DDI), which will provide details on how to complete the enrollment and create your Spark Driver account.

- - How long will it take to get approval after submitting my enrollment form? - -

Background check results are typically available within 2-7 business days, depending on state and county processes. You can expect to receive updates from DDI via email throughout the process, and you will be notified of any significant delays. Once the background check results are completed, you will receive a confirmation email with details on next steps.

- - What is the relationship between DDI and Spark Driver? - -

As the third-party administrator for driver management, DDI is responsible for the driver sourcing and onboarding of new drivers, which includes such processes as screenings, background checks, payments, and accounting. Given this involvement, you can expect to receive periodic emails and text messages from DDI once you’ve started delivering on Spark Driver.

- - How old do I need to be? - -

You must be 18 years of age or older to complete deliveries with Spark Driver.

- - Do I need to use a certain type of vehicle? - -

You can use any car that is able to transport orders safely and reliably to customers. Motorcycles, motorized bicycles, and motorized scooters do not provide adequate space to complete deliveries with Spark Driver.

- - What kind of auto insurance do I need? - -

As part of your enrollment with Spark Driver, DDI will specify and collect proof of valid insurance.

-
-
-
- -
- -
-
-
- Can I create more than one Spark Driver account? - -

No, only one Spark Driver account per individual is allowed, and sharing accounts with multiple drivers is prohibited.

- - I'm getting an error when attempting to sign-in to the Spark Driver App. What should I do? - -

First try logging out of your App and logging back in. If this doesn't work, follow the additional troubleshooting steps below. Verify that your phone has the latest version of its operating system. Double-check that your Spark Driver App has been updated to the latest version. Try turning off the phone completely and restarting. Once restarted, if you still receive an error when logging into the Spark Driver App, email driver support at Spark Driversupport@custhelp.com.

- - Why do I see the notification "Retrieving location to match you with nearby offers"? - -

This notification is intended to inform you that Spark Driver is accessing your location as a way to help ensure you are matched with the most convenient and appropriate offers based on your specific location. Keep in mind that this feature is only enabled when you have 'Spark Now' turned on, meaning that your location is not being tracked when you’re not delivering for Spark Driver, as as outlined in the Spark Driver App Services Privacy Statement.

-
-
-
-
- -
- -
-
-
- How do I update my driver's license or vehicle information? - -

For changes to driver’s license or vehicle information, please contact DDI at 877-947-0877 or Spark Driver@ddiwork.com.

- - How can I see what zones are available in my area? - -

Visit the “Join Spark Driver” page of the Spark Driver website to access the map of all available zones. From there, you can click into your region to see the specific zones and stores available in your area.

- - Will my zone be changed immediately after I submit it in the App? - -

Yes. After affirming the confirmation prompt and receiving the notification of completion, your zone will be updated and you will begin receiving offers for the surrounding stores as available.

-
-
-
-
- -
- -
-
-
- How will I receive offers for deliveries? - -

Once you turn on "Spark Now" in the Spark Driver App, you will start receiving offers as they become available in your specified delivery zone. Each offer will provide details on the type of order(s) included, the pick-up and delivery timeframe, and the estimated minimum payment amount. Remember, the decision of whether to accept an order is entirely up to you!

- - What is 'Spark Now'? - -

The ‘Spark Now’ feature will give you access to real-time offers, indicating that you’re ready to deliver and helping ensure you receive offers at the most effective and opportune times based on your schedule.

- - How do I turn on 'Spark Now'? - -

Click the ‘Spark Now’ icon in the top right corner of your Spark Driver App to set your timeframe and turn on.

-
-
-
-
- -
- -
-
- How big are the orders I'll be delivering? - -

The size of each order will vary depending on the specific items it includes. Order size is determined by weight and classified on a scale of “Small” to “Extra-Large”, as shown in the table below:

- - Where do I go to pick-up an order at the store? - -

When picking-up a regular Curbside order, follow the directional signs throughout the parking lot, park your vehicle in any reserved space, and a Walmart associate will load the order into your vehicle. Dotcom and Express deliveries will be dispensed from inside the store, and the Spark Driver App will provide you with information on where to pick-up the order.

- - Do I need to put orders in a specific place in my vehicle? - -

When picking up a Curbside delivery order, including batched orders, a Walmart store associate will bring the order contents directly to your vehicle and will place them inside. Fragile items may be placed separately in your front seat to ensure nothing gets broken or damaged in transit.

- -

When picking up orders that are dispensed from inside the store, place the items in a clean space to avoid contamination, and consider separating batched orders in separate locations within your vehicle. For example, place one order in the trunk and the other in the back seat, as shown in the image below.

-
-
-
- -
- -
-
-
- Is there any equipment I need to bring with me while delivering? - -

No equipment is necessary to complete a delivery with Spark Driver, however, some drivers find it helpful to keep an insulated storage bag in their trunk for orders containing cold-chain items, or a cart for heavy objects.

- - Can I bring my child or another passenger along on deliveries? - -

Children who should not be left alone in vehicles are prohibited from riding along on deliveries, as are rideshare passengers. Keep in mind that passengers are not authorized drivers on the Spark Driver platform and therefore cannot participate in the performance of the work.

- - Is there a certain dress code I need to follow? - -

No, you may choose your preferred attire while delivering with Spark Driver. (Some drivers prefer to purchase apparel and accessories from the Spark Shop to help identify themselves to customers!) Remember that customers appreciate a clean appearance and clothing that does not contain offensive slogans or imagery. - -

- -
-
-
-
- -
- -
-
- How much will I earn delivering with Spark Driver? - -

As a driver, you will be paid for each delivery you complete. Each offer will list the minimum amount you will receive for completing the delivery. Additionally, you can also expect to receive opportunities for incentive earnings as part of Spark Driver Bonus Programs!

- - Will I be able to see the tip amount for all types of orders? - -

Yes, pre-tip visibility will be available for all eligible order types. Keep in mind that dotcom orders are currently not eligible to receive tips.

- - Am I able to accept tips from customers? - -

Yes! Walmart customers can add a pre-delivery tip to their Online Grocery* order during check-out, which you will see reflected in the “Earnings” tab of your Spark Driver App 48-hours after delivery. Keep in mind that customers can make edits to their pre-delivery tip up to 48-hours after the delivery is completed, so you will not see the tip reflected in your Earnings tab right away. (This makes providing top-notch service even more important!)

-
-
-
- -
-
- - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart/_footer.html.liquid b/Custom_Templates/customer_templates/Walmart/_footer.html.liquid deleted file mode 100644 index be3905f4..00000000 --- a/Custom_Templates/customer_templates/Walmart/_footer.html.liquid +++ /dev/null @@ -1,117 +0,0 @@ - - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart/_head.html.liquid b/Custom_Templates/customer_templates/Walmart/_head.html.liquid deleted file mode 100644 index 50c78c92..00000000 --- a/Custom_Templates/customer_templates/Walmart/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart/_header.html.liquid b/Custom_Templates/customer_templates/Walmart/_header.html.liquid deleted file mode 100644 index 40c030cc..00000000 --- a/Custom_Templates/customer_templates/Walmart/_header.html.liquid +++ /dev/null @@ -1,189 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - {% if current_person.signed_in? %} -
-
    - {% if current_school.filterable_categories.any? %} -
  • - {% - include "dropdown_courses", - title: "Courses", - categories: current_school.filterable_categories, - courses: courses.in_catalog - %} -
  • - {% endif %} - {% for website_navigation in navigations.header_navigations_external %} -
  • - - {{ website_navigation.name }} - -
  • - {% endfor %} -
-
- - -
- - -
- {% else %} -
- -
-
- -{% include "messages" %} - - diff --git a/Custom_Templates/customer_templates/Walmart/_resources.html.liquid b/Custom_Templates/customer_templates/Walmart/_resources.html.liquid deleted file mode 100644 index 3596c7d6..00000000 --- a/Custom_Templates/customer_templates/Walmart/_resources.html.liquid +++ /dev/null @@ -1,62 +0,0 @@ -
-
-
- Resources -
-
-
-
White Papers
- - Download PDF - - -
-
-
Tutorial Sheets
- - Download PDF - - -
-
-
- - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart/catalog.html.liquid b/Custom_Templates/customer_templates/Walmart/catalog.html.liquid deleted file mode 100644 index 2f78d081..00000000 --- a/Custom_Templates/customer_templates/Walmart/catalog.html.liquid +++ /dev/null @@ -1,23 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -{% comment %} {% include "sub_navigation" %} {% endcomment %} -
-
-
-
{{ catalog.headline }}
-
{{ catalog.subheadline }}
-
- {% capture label %}{% t shared.filters.by_category %}{% endcapture %} - - {% if courses.in_catalog.any? %} - {% - include "filter_dropdown", - filters: courses.filters, - key: "category_uuid", - label: label - %} - {% endif %} -
- {% include "courses_catalog" %} -
-{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Walmart/dashboard.html.liquid b/Custom_Templates/customer_templates/Walmart/dashboard.html.liquid deleted file mode 100644 index 8d781499..00000000 --- a/Custom_Templates/customer_templates/Walmart/dashboard.html.liquid +++ /dev/null @@ -1,28 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.enrolled %} -{% comment %} {% include "sub_navigation" %} {% endcomment %} -
-
-
- {% if features.learning_paths? %} -
- {% t shared.learning_paths %} -
- {% include "learning_paths_index", items: learning_paths.enrolled %} - {% endif %} -
- {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %} -
- {% include "courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %} -
- {% if features.training_events? %} -
-
- {% t .upcoming_events %} -
- {% include "training_events_dashboard" %} -
- {% endif %} -
-
-{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Walmart/homepage.html.liquid b/Custom_Templates/customer_templates/Walmart/homepage.html.liquid deleted file mode 100644 index 20562826..00000000 --- a/Custom_Templates/customer_templates/Walmart/homepage.html.liquid +++ /dev/null @@ -1,138 +0,0 @@ -{% include "header" %} - -
-
- {{ homepage.headline }} - -
-
- {{ homepage.headline }} -
-
- {{ homepage.subheadline }} -
- {% comment %} - Explore Courses - {% endcomment %} -
-
- {% comment %} {% include "sub_navigation" %} {% endcomment %} -
- {% comment %}

Course Library

{% endcomment %} - {% if current_school.filterable_categories.any? %} - {% assign categories_by_name = current_school.filterable_categories %} - {% assign carousel_count = 1 %} - {% for category in categories_by_name %} - {% assign carousel_count = carousel_count | plus: 1 %} - {% assign courses_per_carousel = 0 %} - - {% assign category_name_split = category.name | split: " " %} - {% assign category_name_joined = category_name_split | join: "-" | downcase %} - - - {% endfor %} - {% endif %} -
- {% include "faq" %} -
-{% include "footer" %} - - diff --git a/Custom_Templates/customer_templates/Walmart/learning_paths.html.liquid b/Custom_Templates/customer_templates/Walmart/learning_paths.html.liquid deleted file mode 100644 index a639051c..00000000 --- a/Custom_Templates/customer_templates/Walmart/learning_paths.html.liquid +++ /dev/null @@ -1,14 +0,0 @@ -{% include "header" %} -{% comment %} {% include "sub_navigation" %} {% endcomment %} -
-
-
- {% t shared.learning_paths %} -
-
- {% t .subtitle %} -
- {% include "learning_paths_index", items: learning_paths.available %} -
-
-{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Walmart/media.html.liquid b/Custom_Templates/customer_templates/Walmart/media.html.liquid deleted file mode 100644 index 1891b593..00000000 --- a/Custom_Templates/customer_templates/Walmart/media.html.liquid +++ /dev/null @@ -1,30 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
Spark Driver Media
-
-
- {% if courses.in_catalog.any? %} -
- {% for course in courses.in_catalog %} - {% for category in course.categories %} - {% if category.name == "Videos" %} -
- {% include "cards_video" with course %} -
- {% endif %} - {% endfor %} - {% endfor %} -
- {% endif %} -
-{% include "footer" %} - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart/news.html.liquid b/Custom_Templates/customer_templates/Walmart/news.html.liquid deleted file mode 100644 index 2a2be19c..00000000 --- a/Custom_Templates/customer_templates/Walmart/news.html.liquid +++ /dev/null @@ -1,187 +0,0 @@ -{% include "header" %} - -
- -
-
-
Spark Driver News
-
View the latest news and announcements from Spark Driver.
-
-
-
-
-
-
-
Featured Article
-
-
- - - - - -
-{% include "footer" %} - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart/styles.css.liquid b/Custom_Templates/customer_templates/Walmart/styles.css.liquid deleted file mode 100644 index 6a7de395..00000000 --- a/Custom_Templates/customer_templates/Walmart/styles.css.liquid +++ /dev/null @@ -1,241 +0,0 @@ - /* - Put your custom overlay styles in here - You can use your northpass color palette in this file - -{{ color_palette.button_font_color }} -{{ color_palette.button_color }} -{{ color_palette.button_hover_color }} -{{ color_palette.header_font_color }} -{{ color_palette.header_font_hover_color }} -{{ color_palette.header_color }} -*/ - -/* GLOBAL STYLES */ -html { scroll-behavior: smooth; } -.np-powered-by { background:#fff;} -.np-flex-1 { flex:1 } - -.d-flex { display:flex; } - -@media (min-width:768px) { - .d-md-flex { display:flex; } -} - -.np-dashboard { background:#fff} - -/* HOMEPAGE STYLES */ - - -.np-homepage-title-content { - margin: 0 auto 32px; - text-align: center; -} - -.np-homepage-title-content { - margin: 0 auto 32px; - text-align: center; -} - -.np-homepage-headline { - font-size: 3rem; -} - -.np-homepage-subheadline { - font-size: 1.5rem; - line-height: 2rem; -} - -@media (min-width:768px) { - .np-homepage-title-content { padding: 0 4%; } - - .np-homepage-hero-image { - max-height: 600px - } -} - -@media (max-width:1500px) { - .np-max-width { margin:auto 18px;} -} - -.library-title { - padding-top: 48px; - margin: 0; - font-size: 32px; - font-weight: 500; -} - -.np-sub-navigation { margin-bottom: 0; } -.np-course-library { padding-bottom: 40px; - padding-top: 60px; } - -/* NAVIGATION LINKS AND DROPDOWNS*/ -.np-header-desktop-nav-list { - margin-bottom:0; -} - -.np-header-desktop-nav-item { - position: relative; - cursor:pointer; - color:#fff; - text-decoration:none; - font-size: 18px; - font-weight: 500; -} - -.np-header-desktop-nav-item:hover { - color:#f9c221; -} - -.np-header-desktop-nav-link { - font-size: 18px; - font-weight: 500; -} - -.np-dropdown-tooltip { - background: #fff; - position: absolute; - left: 31px; - top: 3rem; - z-index: 50; - min-width: 200px; - cursor:pointer; - box-shadow: 0 0 8px rgb(89 105 123 / 20%); - max-width: 250px; - white-space: normal; - border-radius: 4px; - overflow: auto; -} - -.np-dropdown-tooltip-link { - color:rgba(33, 43, 53, 0.75); - text-decoration:none; - display:block; - padding: 16px 20px; - font-size: 0.95rem; -} - -.np-dropdown-tooltip-link:hover { - color:#2a71dc; -} - -.np-dropdown-tooltip-link:nth-of-type(odd) { - background-color: rgb(249, 250, 252); -} - -.np-dropdown-tooltip { - box-shadow: 0 0 8px rgb(89 105 123 / 20%); - max-width: 250px; - white-space: normal; -} - - -/* SLICK CAROUSEL */ -.category-section { - transition:opacity 0.5s; - opacity:0; - margin-bottom:32px; -} - -.carousel-header-wrapper { - display:flex; - padding-bottom:16px; - border-bottom:1px solid #212b35; - margin-bottom:32px; - align-items: end; - justify-content: space-between; -} - -.carousel-header { - font-size:32px; - font-weight:500; - margin-bottom:0; -} - -.show-more { - text-decoration: none; - font-size:18px; - color:#2a71dc; -} - -.slick-track { - margin-left:0!important; - display: flex !important; -} - -.slick-slide { - height: auto!important; - padding-bottom: 5px; -} - -.slick-dots { - display:flex; - justify-content:center; -} - -.slick-dots li { - cursor:pointer; - padding:0 12px; -} - -.slick-dots li::marker { - cursor:pointer; - padding:0 12px; - font-size:18px; - color:#bfbfbf; - transition: 0.5s; -} - -.slick-dots li.slick-active::marker { color:#212b35; } -.slick-dots li button { display:none; } - -.slick-arrow { - position: absolute; - top:calc(50% - 47px); - box-shadow: 0 2px 4px 0 rgb(89 105 123 / 50%); - border-radius:50%; - background:#fff; - width: 45px; - height: 45px; - display: flex; - justify-content: center; - align-items: center; - z-index:2; - cursor:pointer; - transition:opacity 0.2s; -} - -.slick-arrow.slick-disabled { opacity:0;} -.slick-arrow.fa-chevron-left { left:-12px; } -.slick-arrow.fa-chevron-right { right:-12px; } - -/* END SLICK CAROUSEL */ - -/* COURSE CARDS */ -.category-carousel .np-card { - margin-bottom: 0px; - height:100%; - padding: 0 .75rem; -} - -.np-card-content-desc { margin-top:1.3rem;} - -.info-line { - display:flex; - justify-content: space-between; - margin-top:22px; - padding-bottom:8px; - border-bottom:1px solid #212b35; -} - -.category-carousel:not(.slick-initialized) { - display: flex; - flex-wrap: wrap; -} - -.category-carousel:not(.slick-initialized) > div { - width: 33%; - margin-bottom: 32px; -} - -/* Footer (Sticky) */ -main { min-height: calc(100vh - 408px); } \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Walmart/training_events.html.liquid b/Custom_Templates/customer_templates/Walmart/training_events.html.liquid deleted file mode 100644 index 555ff334..00000000 --- a/Custom_Templates/customer_templates/Walmart/training_events.html.liquid +++ /dev/null @@ -1,19 +0,0 @@ -{% include "header" %} -{% comment %} {% include "sub_navigation" %} {% endcomment %} -
-
-
-
- {% t .title %} -
-
- {% t .subtitle %} -
-
-
- {% include "training_events_filter" %} -
-
- {% include "training_events_index" %} -
-{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Zenjob/_courses_catalog.html.liquid b/Custom_Templates/customer_templates/Zenjob/_courses_catalog.html.liquid index c17190ad..36e6524e 100644 --- a/Custom_Templates/customer_templates/Zenjob/_courses_catalog.html.liquid +++ b/Custom_Templates/customer_templates/Zenjob/_courses_catalog.html.liquid @@ -2,7 +2,7 @@
{% include "filter_by_progress" %}
-
+
{% for course in courses.in_catalog %} {% assign is_on_the_job_video = false %} {% for category in course.categories %} @@ -22,8 +22,8 @@ {% assign progress_status_de = "abgeschlossen" %} {% assign progress_status_en = "completed" %} {% endif %} - -
+ +
{% include "cards_course" with course %}
{% endunless %} @@ -169,15 +169,35 @@ function filterCourses(selectedItem) { let selectedFilter = $(selectedItem).text().replace(" ", "-").toLowerCase(); - + if (selectedFilter == "0%-abgeschlossen" || selectedFilter == "0%-completed") { selectedFilter = "not-started" } - + $(".np-catalog-courses").find('.course-column').removeClass('np-hidden') if (selectedFilter != "alle-kurse" && selectedFilter != "all-courses") { $(".np-catalog-courses").find(`.course-column:not(.${selectedFilter})`).addClass('np-hidden') - } + } } + +/* Function to reorder the catalog cards based on properties */ + var list = document.getElementById('catalog-courses'); + var items = list.childNodes; + var itemsArr = []; + for (var i in items) { + if (items[i].nodeType == 1) { + itemsArr.push(items[i]); + } + } + + itemsArr.sort(function (a, b) { + return a.getAttribute('order') == b.getAttribute('order') + ? 0 + : (a.getAttribute('order') > b.getAttribute('order') ? 1 : -1); + }); + + for (i = 0; i < itemsArr.length; ++i) { + list.appendChild(itemsArr[i]); + } diff --git a/Custom_Templates/customer_templates/Zenjob/_search_result.html.liquid b/Custom_Templates/customer_templates/Zenjob/_search_result.html.liquid new file mode 100644 index 00000000..ffc451ec --- /dev/null +++ b/Custom_Templates/customer_templates/Zenjob/_search_result.html.liquid @@ -0,0 +1,21 @@ +{% if result.type == "course" %} +
+
+
+ {{ result.name }} +
+ +
{{ result.description }}
+
+
+
+
+{% endif %} diff --git a/CustomerNotes/AchieveCE/achievece.md b/CustomerNotes/AchieveCE/achievece.md index 51edb347..4756d230 100644 --- a/CustomerNotes/AchieveCE/achievece.md +++ b/CustomerNotes/AchieveCE/achievece.md @@ -41,3 +41,24 @@ Zoom URL: ``` + +## 10/12/2023 + +### Content & Embeds + +TODO: Ask SE if we can hide Additional Information in milestone _unless_ completed milestone is shown. +Today webinar: + * https://achievece.zoom.us/j/85182404988 + * https://achievece.com/pharmacy-webinar/ + +Luke was expecting "the self-serve custom certificate portal to open up" and they built that into their game plan. +They want more custom fields in a cert - license information, such as RN number. +The most important part is compliance and customization. Each course needs to have custom verbiage. +The per course uniqueness is the accreditation board. Each course is accredited by a different board. + +Cert examples: + * `https://www.dropbox.com/scl/fi/w0zt8yygpvp4arb2p9r98/Certificate-completion-2023_General.jpg?rlkey=dgox9j94v22gw7yvctrravxj3&dl=1` + * `https://www.dropbox.com/scl/fi/g0ykns5dbql0aglw2pjek/Certificate-completion-2023_Medicine_CEC.jpg?rlkey=84lexxdzlkbj0w591hdx8yq78&dl=1` + + WARN: They need custom certs PER course, which we don't do. I've involved Charles and Travis to solve for this. +Charles will reach out to Luke if we can't figure this out. diff --git a/CustomerNotes/Skuid/Skuid.md b/CustomerNotes/Skuid/Skuid.md index 609f9fd1..bb79562c 100644 --- a/CustomerNotes/Skuid/Skuid.md +++ b/CustomerNotes/Skuid/Skuid.md @@ -345,3 +345,21 @@ No risk in the renewal from Anna. * 2 People certified last month * Total certified people: 15 [8 certification committee, 1 test writer, 6 are paid] * 4 Level 1 completions last month (30 courses), previous 5-months had a total 3 level 1 completions. 400% increase. + +## 10/12/2023 + +### Learning Path Progress issue + +Description I sent to Marta asking questions: + +I have a learning path with 4 courses - they are all required. The learning path overview page says “congrats! You completed this learning path, and the progress on the overview page shows 100%.On the learning path discover page, the learning path shows 88% complete. + +The courses are as follows: + +* 100% +* 80% +* 87% +* 83% + +Enrollments tab for learning path also shows 100%. +I can’t seem to find the connection as to why the courses show < 100, but the learning path shows full 100%. My guess is that the learner has done the courses outside of the learning path. But then why does the learning path discover page show the progress bar of 88%. That’s the part I’m missing I think. diff --git a/CustomerNotes/Walmart/Walmart.md b/CustomerNotes/Walmart/Walmart.md index 9d33bd3f..8d7a3333 100644 --- a/CustomerNotes/Walmart/Walmart.md +++ b/CustomerNotes/Walmart/Walmart.md @@ -756,3 +756,17 @@ TODO: Test if a course can be accessible outside of Northpass without it being a * This would be a big overhaul * They are providing avenues and solutions to leadership * Ece to be managing front end and back end dependencies. + +## 10/12/2023 + +### Content Meeting + +Cassie and Krystal + +* Keen on lack of response in certain areas +* Krystal re: Pat and Cassie + * Unique request + * Comes from Moe + * Might have good intentions, but may not be the best experience + * Deep linking process is on Walmart, Krystal knows this + * They need to apply pressure to engineering team