From aa20284351dc94e360b938b1cae4bc66e6295ea7 Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Tue, 11 Jul 2023 17:11:05 -0400 Subject: [PATCH] Agriwebb templates. SOme notes and todo cleaning. Other file organization. --- CZ-dupe-ids.csv | 34 -- .../Agriwebb/_achievements_modal.html.liquid | 213 ++++++++ .../Agriwebb/_cards_course.html.liquid | 37 ++ .../Agriwebb/_head.html.liquid | 28 + .../Agriwebb/_widget_achievements.html.liquid | 134 +++++ .../Agriwebb/dashboard.html.liquid | 36 ++ .../Agriwebb/styles.css.liquid | 7 + .../customer_templates/customcss.js | 2 +- Data/courses.csv | 506 ------------------ 9 files changed, 456 insertions(+), 541 deletions(-) delete mode 100644 CZ-dupe-ids.csv create mode 100644 Custom_Templates/customer_templates/Agriwebb/_achievements_modal.html.liquid create mode 100644 Custom_Templates/customer_templates/Agriwebb/_cards_course.html.liquid create mode 100644 Custom_Templates/customer_templates/Agriwebb/_head.html.liquid create mode 100644 Custom_Templates/customer_templates/Agriwebb/_widget_achievements.html.liquid create mode 100644 Custom_Templates/customer_templates/Agriwebb/dashboard.html.liquid create mode 100644 Custom_Templates/customer_templates/Agriwebb/styles.css.liquid delete mode 100644 Data/courses.csv diff --git a/CZ-dupe-ids.csv b/CZ-dupe-ids.csv deleted file mode 100644 index 3f10cfc3..00000000 --- a/CZ-dupe-ids.csv +++ /dev/null @@ -1,34 +0,0 @@ -Name,Id,ExternalId -Amdocs - APAC,20589,65763 -Luxoft,27527,276171 -Banco de Reservas,308019,281880 -Ernst & Young - APAC - India Practice,40938,174951 -Adevinta,26492,121499 -Infostretch,9006,227887 -PepsiCo,21909,250252 -Salt River Project,14158,265506 -Salt River Project- Sub-,1,326935 -Eargo Inc,2384,111677 -NumericTech,79,189463 -Catalyte,11290,274699 -Anheuser-Busch InBev (AB INBev) - APAC,18243,247523 -GE HEALTHCARE, India,28519,281925 -Geneva Trading,14413,250261 -CNSI,31330,217295 -RS21,8100,280328 -Peloton Interactive, Inc.,1301,47528 -Scoot Tigerair Pte Ltd,21151,263425 -Nubank Brasil,1553,73907 -Hewlett Packard Enterprise,1660,278151 -Toshiba Software India Pvt. Ltd.,39918,245342 -Stellantis,301334,274976 -Oracle,1914,146325 -Salesforce, Inc.,680,26581 -HT Digital,34188,23763 -Singapore Telecommunications Ltd. (Singtel),6178,247115 -Qualcomm,5547,79801 -Boston Consulting Group - GAMMA,791,82341 -Boston Consulting Group - Platinion,5158,209228 -Capgemini Technology Services India Limited,37744,62787 -HackerRank,1632,25227 -Equinix - APAC,39561,191973 diff --git a/Custom_Templates/customer_templates/Agriwebb/_achievements_modal.html.liquid b/Custom_Templates/customer_templates/Agriwebb/_achievements_modal.html.liquid new file mode 100644 index 00000000..be329ff7 --- /dev/null +++ b/Custom_Templates/customer_templates/Agriwebb/_achievements_modal.html.liquid @@ -0,0 +1,213 @@ + + +
+
+
+
Achievements
+ +
+
+ {% assign courses_by_name = courses.enrolled | sort: "name" %} + {% for course in courses_by_name %} + {% if course.properties.badges != "NULL" %} +
+
+
+ {{ course.name }} +
+ {% if course.progress == 100 %} + + + {% else %} + +
+
+ {% endif %} +
+
+ {% endif %} + {% endfor %} +
+
+
+ + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Agriwebb/_cards_course.html.liquid b/Custom_Templates/customer_templates/Agriwebb/_cards_course.html.liquid new file mode 100644 index 00000000..73f18913 --- /dev/null +++ b/Custom_Templates/customer_templates/Agriwebb/_cards_course.html.liquid @@ -0,0 +1,37 @@ +
+
+ {% if course.ribbon %} +
+ {{ course.ribbon }} +
+ {% endif %} + {{ course.name }} +
+

+ {{ course.name }} +

+
+ {{ course.instructor_names }} +
+ +
+
+
diff --git a/Custom_Templates/customer_templates/Agriwebb/_head.html.liquid b/Custom_Templates/customer_templates/Agriwebb/_head.html.liquid new file mode 100644 index 00000000..4a88d37e --- /dev/null +++ b/Custom_Templates/customer_templates/Agriwebb/_head.html.liquid @@ -0,0 +1,28 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + + + + + + + + + + + + + diff --git a/Custom_Templates/customer_templates/Agriwebb/_widget_achievements.html.liquid b/Custom_Templates/customer_templates/Agriwebb/_widget_achievements.html.liquid new file mode 100644 index 00000000..b12ceac3 --- /dev/null +++ b/Custom_Templates/customer_templates/Agriwebb/_widget_achievements.html.liquid @@ -0,0 +1,134 @@ +
+
+
+
+ + {% include "achievements_modal" %} +
+
+
+
+ + + + diff --git a/Custom_Templates/customer_templates/Agriwebb/dashboard.html.liquid b/Custom_Templates/customer_templates/Agriwebb/dashboard.html.liquid new file mode 100644 index 00000000..f0b9b975 --- /dev/null +++ b/Custom_Templates/customer_templates/Agriwebb/dashboard.html.liquid @@ -0,0 +1,36 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% include "sub_navigation" %} +
+
+
+ {% 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 %} + {% if courses.enrolled.any? %} +
+
+ Achievements +
+ {% include "widget_achievements" %} +
+ {% endif %} +
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Agriwebb/styles.css.liquid b/Custom_Templates/customer_templates/Agriwebb/styles.css.liquid new file mode 100644 index 00000000..edfce19b --- /dev/null +++ b/Custom_Templates/customer_templates/Agriwebb/styles.css.liquid @@ -0,0 +1,7 @@ +.card-badge { + height: 32px; + width: auto; +} +.np-card-content-footer { + align-items: center; +} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/customcss.js b/Custom_Templates/customer_templates/customcss.js index b84d2922..92bfc81f 100644 --- a/Custom_Templates/customer_templates/customcss.js +++ b/Custom_Templates/customer_templates/customcss.js @@ -23,4 +23,4 @@ } const observer = new MutationObserver(callback); observer.observe(targetNode, config); - }}} + }}}); diff --git a/Data/courses.csv b/Data/courses.csv deleted file mode 100644 index 1622e1ec..00000000 --- a/Data/courses.csv +++ /dev/null @@ -1,506 +0,0 @@ - -✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe -✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e -✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068 -✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf - ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8 -✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058 - ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2 - ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e -❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b -✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87 -❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800 -✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25 -✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3 -✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a -❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788 -✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52 -❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97 -✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970 -2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e -About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af -About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc -Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149 -Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564 -Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e -California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888 -Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0 -Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489 -COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88 -Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a -Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3 -Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263 -Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d -Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a -Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc -Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f -General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5 -Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418 -Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b -How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f -How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee -Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195 -Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e -Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1 -Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a -Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea -ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20 -Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340 -Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a -Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a -Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19 -Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70 -Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4 -Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c -Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb -Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0 -Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559 -Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633 -Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25 -Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625 -Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7 -Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941 -Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6 -Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552 -Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5 -Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c -Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02 -Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358 -Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed -Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a -Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3 -Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59 -Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65 -Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e -Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f -Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c -Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf -Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16 -Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e -Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c -Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072 -Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf -Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20 -Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783 -Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443 -Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e -Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d -Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993 -Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55 -Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534 -Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7 -Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2 -Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983 -Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb -Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1 -Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7 -Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06 -Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347 -Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959 -Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c -Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a -Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf -✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe -✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e -✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068 -✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf - ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8 -✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058 - ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2 - ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e -❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b -✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87 -❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800 -✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25 -✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3 -✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a -❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788 -✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52 -❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97 -✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970 -2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e -About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af -About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc -Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149 -Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564 -Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e -California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888 -Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0 -Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489 -COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88 -Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a -Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3 -Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263 -Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d -Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a -Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc -Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f -General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5 -Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418 -Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b -How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f -How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee -Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195 -Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e -Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1 -Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a -Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea -ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20 -Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340 -Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a -Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a -Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19 -Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70 -Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4 -Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c -Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb -Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0 -Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559 -Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633 -Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25 -Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625 -Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7 -Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941 -Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6 -Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552 -Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5 -Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c -Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02 -Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358 -Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed -Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a -Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3 -Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59 -Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65 -Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e -Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f -Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c -Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf -Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16 -Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e -Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c -Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072 -Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf -Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20 -Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783 -Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443 -Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e -Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d -Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993 -Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55 -Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534 -Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7 -Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2 -Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983 -Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb -Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1 -Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7 -Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06 -Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347 -Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959 -Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c -Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a -Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf -✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe -✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e -✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068 -✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf - ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8 -✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058 - ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2 - ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e -❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b -✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87 -❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800 -✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25 -✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3 -✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a -❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788 -✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52 -❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97 -✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970 -2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e -About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af -About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc -Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149 -Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564 -Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e -California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888 -Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0 -Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489 -COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88 -Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a -Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3 -Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263 -Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d -Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a -Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc -Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f -General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5 -Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418 -Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b -How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f -How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee -Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195 -Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e -Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1 -Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a -Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea -ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20 -Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340 -Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a -Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a -Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19 -Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70 -Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4 -Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c -Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb -Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0 -Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559 -Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633 -Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25 -Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625 -Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7 -Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941 -Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6 -Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552 -Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5 -Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c -Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02 -Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358 -Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed -Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a -Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3 -Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59 -Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65 -Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e -Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f -Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c -Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf -Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16 -Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e -Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c -Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072 -Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf -Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20 -Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783 -Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443 -Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e -Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d -Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993 -Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55 -Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534 -Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7 -Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2 -Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983 -Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb -Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1 -Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7 -Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06 -Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347 -Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959 -Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c -Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a -Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf -✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe -✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e -✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068 -✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf - ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8 -✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058 - ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2 - ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e -❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b -✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87 -❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800 -✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25 -✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3 -✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a -❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788 -✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52 -❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97 -✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970 -2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e -About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af -About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc -Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149 -Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564 -Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e -California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888 -Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0 -Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489 -COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88 -Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a -Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3 -Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263 -Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d -Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a -Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc -Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f -General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5 -Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418 -Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b -How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f -How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee -Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195 -Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e -Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1 -Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a -Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea -ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20 -Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340 -Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a -Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a -Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19 -Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70 -Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4 -Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c -Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb -Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0 -Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559 -Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633 -Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25 -Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625 -Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7 -Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941 -Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6 -Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552 -Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5 -Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c -Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02 -Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358 -Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed -Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a -Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3 -Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59 -Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65 -Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e -Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f -Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c -Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf -Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16 -Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e -Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c -Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072 -Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf -Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20 -Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783 -Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443 -Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e -Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d -Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993 -Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55 -Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534 -Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7 -Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2 -Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983 -Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb -Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1 -Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7 -Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06 -Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347 -Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959 -Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c -Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a -Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf -✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe -✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e -✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068 -✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf - ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8 -✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058 - ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2 - ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e -❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b -✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87 -❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800 -✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25 -✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3 -✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a -❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788 -✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52 -❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97 -✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970 -2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e -About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af -About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc -Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149 -Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564 -Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e -California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888 -Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0 -Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489 -COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88 -Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a -Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3 -Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263 -Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d -Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a -Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc -Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f -General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5 -Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418 -Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b -How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f -How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee -Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195 -Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e -Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1 -Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a -Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea -ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20 -Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340 -Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a -Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a -Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19 -Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70 -Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4 -Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c -Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb -Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0 -Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559 -Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633 -Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25 -Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625 -Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7 -Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941 -Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6 -Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552 -Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5 -Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c -Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02 -Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358 -Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed -Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a -Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3 -Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59 -Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65 -Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e -Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f -Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c -Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf -Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16 -Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e -Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c -Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072 -Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf -Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20 -Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783 -Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443 -Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e -Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d -Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993 -Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55 -Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534 -Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7 -Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2 -Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983 -Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb -Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1 -Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7 -Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06 -Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347 -Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959 -Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c -Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a -Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf \ No newline at end of file