Agriwebb templates. SOme notes and todo cleaning. Other file organization.

This commit is contained in:
Norm Rasmussen
2023-07-11 17:11:05 -04:00
parent 662ea94761
commit aa20284351
9 changed files with 456 additions and 541 deletions

View File

@ -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
Can't render this file because it has a wrong number of fields in line 15.

View File

@ -0,0 +1,213 @@
<button
type="button"
class="dialog-trigger np-view-all-achievements"
data-toggle-class-on-target
data-toggle-target="#dialog_achievements"
data-toggle-escape
data-toggle-modal>
View All
</button>
<div class="dialog" id="dialog_achievements">
<section class="dialog-container">
<header class="dialog-header">
<h5>Achievements</h5>
<button
type="button"
data-toggle-trigger-off
class="modal-close"
>
<i class="fal fa-times"></i>
</button>
</header>
<div class="dialog-content acheievements-list row">
{% assign courses_by_name = courses.enrolled | sort: "name" %}
{% for course in courses_by_name %}
{% if course.properties.badges != "NULL" %}
<div class="np-card-content-title achievements-card col-xs-12 col-md-6 col-lg-4">
<div class="course-badge">
<div class="badge-title">
{{ course.name }}
</div>
{% if course.progress == 100 %}
<img class="np-achievement-icon" src="{{ course.properties.badges }}" />
<div class="badge-btns">
<a class="badge-btn" onclick="downloadImage('{{ course.properties.badges }}', '{{ course.name }}')"> Download</a>
<a class="badge-btn add-to-linkedin" href="https://www.linkedin.com/profile/add?startTask=CERTIFICATION_NAME&name={{course.name}}&organizationId=3211815" target="_blank">Add to LinkedIn</a>
</div>
{% else %}
<img class="np-achievement-icon badge-locked" src="{{ course.properties.badges }}" />
<div class="badge-btns">
</div>
{% endif %}
</div>
</div>
{% endif %}
{% endfor %}
</div>
</section>
</div>
<style>
.dialog-trigger {
display: inline-block;
padding: 0;
overflow: hidden;
border: none;
background: none;
color: #000;
text-decoration: underline;
}
.dialog-trigger:hover,
.dialog-trigger:focus {
text-decoration: none;
}
.dialog {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
display: flex;
/* padding: 1em; */
background-color: rgba(0,0,0,.75);
visibility: hidden;
opacity: 0;
pointer-events: none;
transition: .25s ease-out;
}
.dialog.is-active {
visibility: visible;
opacity: 1;
pointer-events: auto;
}
.dialog-container {
width: 100%;
height: 100%;
max-width: 100vw;
max-height: 100vh;
margin: auto;
transform: translateY(-1em) scale(.95);
background-color: white;
transition: transform .25s ease-out;
}
.dialog.is-active .dialog-container {
transform: translateY(0) scale(1);
}
.dialog-header {
padding: 1rem;
}
.dialog-content {
padding: 48px 32px;
max-width: 1920px;
margin: auto;
overflow-y: scroll;
max-height: 100%;
}
.dialog-header {
background-color: #092344;
color: white;
font-weight: 500;
text-align:center;
position:relative;
}
.dialog-header h5 {
margin: 0;
font-size:1.2rem;
}
.dialog-header button {
border: none;
color: white;
position:absolute;
right:12px;
top:4px;
background: transparent;
font-size: 1.7rem;
cursor:pointer;
padding:8px;
}
.achievements-card {
margin-bottom:32px;
}
.course-badge {
padding:16px;
text-align:center;
display: flex;
flex-direction: column;
height: 100%;
}
.badge-title {
font-weight: 500;
font-size: 1rem;
line-height: 1.3rem;
margin: 0 auto 8px;
max-width: 200px;
flex:1
}
.course-badge img {
border-radius: 50%;
}
.badge-btns {
display: flex;
justify-content: center;
flex: 1;
}
.badge-btns a {
margin: 8px;
}
.badge-btn {
background: #092344;
padding: 12px 16px;
color: #fff;
cursor: pointer;
text-decoration: none;
transition: all 0.1s;
min-width: 130px;
line-height: 16px;
}
.badge-btn:hover,
.badge-btn:hover {
background-color:#65bb39;
}
.badge-locked {
filter: grayscale(50) opacity(30%) blur(1px);
}
</style>
<script>
async function downloadImage(imageSrc, fileName) {
const fileNameFinal = fileName.replaceAll(" ", "-").toLowerCase()
const image = await fetch(imageSrc)
const imageBlog = await image.blob()
const imageURL = URL.createObjectURL(imageBlog)
const link = document.createElement('a')
link.href = imageURL
link.download = fileNameFinal
document.body.appendChild(link)
link.click()
document.body.removeChild(link)
}
// Get month and year and append as date params to linkedin links
const date = new Date()
const month = date.getMonth() + 1
const year = date.getFullYear()
const issueDateParams = "&issueYear=" + year + "&issueMonth=" + month
$(".add-to-linkedin").attr('href', function(index, item) {
return item + issueDateParams;
});
</script>

View File

@ -0,0 +1,37 @@
<div class="np-card">
<div class="np-card-container">
{% if course.ribbon %}
<div class="np-card-ribbon">
{{ course.ribbon }}
</div>
{% endif %}
<img
class="np-card-image"
alt="{{ course.name }}"
src="{{ course.image_url }}"
>
<div class="np-card-content np-card-content-vertical np-card-padding">
<h3 class="np-card-content-title">
{{ course.name }}
</h3>
<div class="np-card-content-subtitle">
{{ course.instructor_names }}
</div>
<div class="np-card-content-footer">
{% if course.properties.badges != 'NULL'%}
<img class="card-badge" src="{{ course.properties.badges }}" />
{% endif %}
<div class="np-card-content-progress np-button-color">
{% t shared.progress, count: course.progress %}
</div>
{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
{% if course.has_to_restart? %}
{% include "course_version_outdated_popup", path: course_path %}
{% endif %}
<a class="np-button np-button-wide" href="{{ course_path }}">
{% t shared.view %}
</a>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,28 @@
{% styles default %}
{% styles colors %}
{% styles custom %}
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js" integrity="sha512-XtmMtDEcNz2j7ekrtHvOVR4iwwaD6o/FUJe6+Zq+HgcCsk3kj4uSQQR8weQ2QVj1o0Pk6PwYLohm206ZzNfubg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.1/slick/slick.css"/>
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.1/slick/slick-theme.css"/>
<script>
window.intercomSettings = {
app_id: "hal1rveh"
};
</script>
<script>
// We pre-filled your app ID in the widget URL: 'https://widget.intercom.io/widget/hal1rveh'
(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',w.intercomSettings);}else{var d=document;var i=function(){i.c(arguments);};i.q=[];i.c=function(args){i.q.push(args);};w.Intercom=i;var l=function(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/hal1rveh';var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);};if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})();
</script>
<style>
.intercom-lightweight-app-launcher {
left:15% !important;
bottom: 45px !important;
}
</style>

View File

@ -0,0 +1,134 @@
<div class="np-dashboard-resources">
<div class="np-card">
<div class="np-card-container np-dashboard-border">
<div class="np-card-content-achievements">
<div class="achievements-carousel">
{% for course in courses.enrolled %}
{% if course.properties.badges != 'NULL' and course.progress == 100 %}
<div>
<div class="np-card-content-title col-12">
{{ course.name }}
</div>
<div class="col-12">
<img class="np-achievement-icon" src="{{ course.properties.badges }}" />
</div>
</div>
{% endif %}
{% endfor %}
</div>
{% include "achievements_modal" %}
</div>
</div>
</div>
</div>
<script type="text/javascript">
const noBadgeMsg = "<div class='no-badge-msg'>Complete a course to recieve your first badge!</div>";
$('document').ready(function() {
if ($(".achievements-carousel").children().length > 0) {
$('.achievements-carousel').slick({
slidesToShow: 1,
slidesToScroll: 1,
dots: false,
infinite: true,
autoplay: false,
autoplaySpeed: 5000,
cssEase: 'linear',
prevArrow: '<i class="fal fa-chevron-left"></i>',
nextArrow: '<i class="fal fa-chevron-right"></i>',
responsive: [{
breakpoint: 991,
settings: {
dots: false
}
}]
})
} else {
$(".achievements-carousel").append(noBadgeMsg)
}
});
$(".dialog-trigger").click(function() {
if (!$("body").hasClass("modal-open")) {
$("body").addClass("modal-open");
}
});
$(".modal-close").click(function() {
$("body").removeClass("modal-open");
})
</script>
<style>
.noBadgeMsg {
text-align:center;
margin-bottom:32px;
}
.modal-open {
height: 100%;
overflow: hidden;
}
.np-card-content-achievements .np-card-content-title {
text-align:center;
font-size:0.937rem;
font-weight:500;
}
.np-card-content-achievements {
flex: 1;
display: flex;
flex-direction: column;
padding: 2rem 2rem .5rem;
}
.np-card-content-achievements .slick-slider {
width:100%;
max-width: 375px;
margin: auto;
}
.np-achievement-icon {
color: #bec2c6;
margin:14px auto 26px;
width:130px;
}
.slick-arrow {
color: #35404E;
font-size: 1.5rem;
position: absolute;
top: 50%;
cursor:pointer;
}
.slick-arrow.fa-chevron-left { left:0 }
.slick-arrow.fa-chevron-right { right:0; }
.np-view-all-achievements {
color:#092344;
font-size:0.8rem;
text-transform:uppercase;
text-align:center;
text-decoration:none;
margin-bottom:1.5rem;
cursor:pointer;
font-weight:500;
transition: all 0.1s;
}
.np-view-all-achievements:hover {
text-decoration:underline;
}
@media (min-width:1024px) {
.np-card-content-achievements .slick-slider {
max-width: none;
margin: 0;
}
}
</style>

View File

@ -0,0 +1,36 @@
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.enrolled %}
{% include "sub_navigation" %}
<main class="np-main np-dashboard np-subpage-container np-max-width">
<div class="row np-flex-center">
<div class="col-xs-12 col-sm-8">
{% if features.learning_paths? %}
<div class="np-dashboard-resources-title">
{% t shared.learning_paths %}
</div>
{% include "learning_paths_index", items: learning_paths.enrolled %}
{% endif %}
<div class="np-dashboard-resources-title">
{% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %}
</div>
{% include "courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %}
</div>
{% if features.training_events? %}
<div class="np-grid-spacing col-xs-12 col-sm-4">
<div class="np-dashboard-resources-title">
{% t .upcoming_events %}
</div>
{% include "training_events_dashboard" %}
</div>
{% endif %}
{% if courses.enrolled.any? %}
<div class="np-grid-spacing col-xs-12 col-sm-4">
<div class="np-dashboard-resources-title">
Achievements
</div>
{% include "widget_achievements" %}
</div>
{% endif %}
</div>
</main>
{% include "footer" %}

View File

@ -0,0 +1,7 @@
.card-badge {
height: 32px;
width: auto;
}
.np-card-content-footer {
align-items: center;
}

View File

@ -23,4 +23,4 @@
}
const observer = new MutationObserver(callback);
observer.observe(targetNode, config);
}}}
}}});

View File

@ -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
1 ✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe
2 ✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e
3 ✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068
4 ✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf
5 ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8
6 ✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058
7 ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2
8 ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e
9 ❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b
10 ✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87
11 ❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800
12 ✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25
13 ✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3
14 ✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a
15 ❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788
16 ✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52
17 ❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97
18 ✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970
19 2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e
20 About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af
21 About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc
22 Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149
23 Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564
24 Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e
25 California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888
26 Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0
27 Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489
28 COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88
29 Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a
30 Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3
31 Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263
32 Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d
33 Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a
34 Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc
35 Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f
36 General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5
37 Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418
38 Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b
39 How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f
40 How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee
41 Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195
42 Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e
43 Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1
44 Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a
45 Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea
46 ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20
47 Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340
48 Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a
49 Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a
50 Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19
51 Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70
52 Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4
53 Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c
54 Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb
55 Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0
56 Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559
57 Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633
58 Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25
59 Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625
60 Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7
61 Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941
62 Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6
63 Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552
64 Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5
65 Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c
66 Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02
67 Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358
68 Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed
69 Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a
70 Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3
71 Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59
72 Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65
73 Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e
74 Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f
75 Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c
76 Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf
77 Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16
78 Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e
79 Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c
80 Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072
81 Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf
82 Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20
83 Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783
84 Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443
85 Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e
86 Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d
87 Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993
88 Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55
89 Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534
90 Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7
91 Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2
92 Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983
93 Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb
94 Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1
95 Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7
96 Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06
97 Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347
98 Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959
99 Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c
100 Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a
101 Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf
102 ✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe
103 ✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e
104 ✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068
105 ✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf
106 ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8
107 ✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058
108 ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2
109 ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e
110 ❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b
111 ✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87
112 ❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800
113 ✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25
114 ✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3
115 ✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a
116 ❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788
117 ✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52
118 ❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97
119 ✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970
120 2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e
121 About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af
122 About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc
123 Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149
124 Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564
125 Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e
126 California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888
127 Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0
128 Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489
129 COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88
130 Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a
131 Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3
132 Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263
133 Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d
134 Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a
135 Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc
136 Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f
137 General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5
138 Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418
139 Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b
140 How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f
141 How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee
142 Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195
143 Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e
144 Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1
145 Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a
146 Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea
147 ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20
148 Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340
149 Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a
150 Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a
151 Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19
152 Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70
153 Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4
154 Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c
155 Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb
156 Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0
157 Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559
158 Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633
159 Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25
160 Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625
161 Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7
162 Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941
163 Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6
164 Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552
165 Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5
166 Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c
167 Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02
168 Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358
169 Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed
170 Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a
171 Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3
172 Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59
173 Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65
174 Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e
175 Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f
176 Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c
177 Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf
178 Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16
179 Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e
180 Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c
181 Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072
182 Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf
183 Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20
184 Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783
185 Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443
186 Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e
187 Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d
188 Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993
189 Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55
190 Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534
191 Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7
192 Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2
193 Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983
194 Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb
195 Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1
196 Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7
197 Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06
198 Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347
199 Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959
200 Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c
201 Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a
202 Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf
203 ✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe
204 ✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e
205 ✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068
206 ✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf
207 ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8
208 ✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058
209 ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2
210 ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e
211 ❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b
212 ✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87
213 ❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800
214 ✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25
215 ✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3
216 ✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a
217 ❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788
218 ✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52
219 ❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97
220 ✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970
221 2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e
222 About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af
223 About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc
224 Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149
225 Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564
226 Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e
227 California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888
228 Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0
229 Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489
230 COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88
231 Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a
232 Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3
233 Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263
234 Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d
235 Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a
236 Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc
237 Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f
238 General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5
239 Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418
240 Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b
241 How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f
242 How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee
243 Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195
244 Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e
245 Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1
246 Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a
247 Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea
248 ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20
249 Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340
250 Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a
251 Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a
252 Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19
253 Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70
254 Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4
255 Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c
256 Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb
257 Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0
258 Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559
259 Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633
260 Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25
261 Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625
262 Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7
263 Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941
264 Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6
265 Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552
266 Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5
267 Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c
268 Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02
269 Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358
270 Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed
271 Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a
272 Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3
273 Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59
274 Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65
275 Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e
276 Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f
277 Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c
278 Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf
279 Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16
280 Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e
281 Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c
282 Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072
283 Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf
284 Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20
285 Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783
286 Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443
287 Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e
288 Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d
289 Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993
290 Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55
291 Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534
292 Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7
293 Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2
294 Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983
295 Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb
296 Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1
297 Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7
298 Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06
299 Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347
300 Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959
301 Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c
302 Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a
303 Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf
304 ✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe
305 ✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e
306 ✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068
307 ✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf
308 ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8
309 ✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058
310 ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2
311 ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e
312 ❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b
313 ✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87
314 ❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800
315 ✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25
316 ✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3
317 ✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a
318 ❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788
319 ✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52
320 ❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97
321 ✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970
322 2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e
323 About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af
324 About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc
325 Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149
326 Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564
327 Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e
328 California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888
329 Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0
330 Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489
331 COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88
332 Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a
333 Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3
334 Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263
335 Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d
336 Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a
337 Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc
338 Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f
339 General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5
340 Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418
341 Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b
342 How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f
343 How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee
344 Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195
345 Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e
346 Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1
347 Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a
348 Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea
349 ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20
350 Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340
351 Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a
352 Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a
353 Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19
354 Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70
355 Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4
356 Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c
357 Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb
358 Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0
359 Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559
360 Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633
361 Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25
362 Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625
363 Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7
364 Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941
365 Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6
366 Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552
367 Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5
368 Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c
369 Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02
370 Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358
371 Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed
372 Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a
373 Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3
374 Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59
375 Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65
376 Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e
377 Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f
378 Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c
379 Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf
380 Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16
381 Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e
382 Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c
383 Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072
384 Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf
385 Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20
386 Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783
387 Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443
388 Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e
389 Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d
390 Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993
391 Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55
392 Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534
393 Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7
394 Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2
395 Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983
396 Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb
397 Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1
398 Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7
399 Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06
400 Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347
401 Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959
402 Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c
403 Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a
404 Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf
405 ✅00 Actualización de tu Spark Driver™ app,draft,c0935eff-ce55-42c1-8e21-3d1909d5fbbe
406 ✅01 Revisa tus viajes,draft,b00b9a97-e77b-436d-a323-1f75245f397e
407 ✅02 Prácticas Recomendadas para COVID-19,draft,b15cde38-d602-4314-b53e-2c707eeb1068
408 ✅03 Información general sobre ganancias de Spark Driver™app,draft,a60aa250-2491-492b-a84a-ed24954abbaf
409 ✅ 04 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,b7db2fc5-3cfe-479e-8957-8fa8e8fab4e8
410 ✅ 05 Elementos olvidados, mezclados o faltantes,draft,aa372b14-12a2-4c6f-814f-5486224a1058
411 ✅ 06 Problemas con la confirmación de la llegada a la tienda o ubicación del cliente,draft,a00c0992-7ddc-4cf8-8005-a324f84c9ff2
412 ✅ 07 Detalles del vehículo,draft,b4a38042-b42c-474e-a391-d202f2470a1e
413 ❌ 08 Comunicarse con los clientes [Resource Full Description NO MATCH],draft,cf51179c-4dd3-496f-833b-2809b265b60b
414 ✅ 09 Desactivar Spark Now,draft,fe970400-2685-4c47-ade7-9909aab95b87
415 ❌ 10 Ver tus ganancias [Activity Names, Translations are not equal, etc],draft,0d20f15e-5e33-4fa8-8683-642fb54f3800
416 ✅ 11 - Pedido dañado o artículos dañados recibidos,draft,052d1c24-928b-4e88-b905-5867db4fef25
417 ✅ 12 - Mensajes de error y alertas,draft,6d80d5a2-58af-4336-ae17-4e9776b061d3
418 ✅ 13 - Preguntas frecuentes de Shopping & Delivery,draft,ef350df1-75d4-4e00-abec-ae71f56aea3a
419 ❌ 14 - Recibir ofertas (TODO: Update Description & Activity Names),draft,ac368ce0-8c34-48be-a2de-1e0e816cf788
420 ✅ 15 - Resolución de errores de inicio de sesión,draft,76985e84-4659-4de4-b2a0-8afb729e0a52
421 ❌ 16 - Problemas de la aplicación (Very Different from Help Docs!),draft,bc2e974a-33c3-4f47-80eb-63cb4aa24d97
422 ✅ 17 - Opciones de Asistencia al conductor,draft,20a8f4f2-e6aa-4e3b-9bdb-0b0ec0dd8970
423 2022 tax filing FAQs,live,90bbdf4d-c674-403c-93d1-1c2e43364e0e
424 About Referral Incentives,draft,16330ea4-99c0-42c5-bf48-1195a53f70af
425 About Your Earnings,draft,074d1490-94e1-49e7-aca4-3d286b9544fc
426 Bagging tips,draft,161e1e14-2740-46e8-b8f6-aecbe3feb149
427 Branch Wallet FAQs,live,5624342f-9927-4704-bc6b-5c84068c0564
428 Bullets Points Example for MJ,draft,bba07fd9-e8eb-490d-9d1d-46aea334ab0e
429 California Driver Information - Prop 22 Safety Training,draft,d41c1082-c8c7-4640-9ebc-19a77a5ad888
430 Canceled Order Due to Food Safety Concerns?,draft,e6afa0b1-a7f8-4e34-a4e7-c1c4c45c60a0
431 Changing Your Spark Driver™ App Settings,draft,73b54b3c-a5f2-47a6-8aef-dddae13eb489
432 COVID-19 best practices,live,723a5890-4234-4345-84b7-644ffd770e88
433 Curious How Referrals Work?,draft,5d1b61fa-6fd5-45f2-94bd-62c6aca0bb8a
434 Curious how trip earnings work?,archived,0cd301a1-d98e-4837-ae9a-6fbd6a152aa3
435 Curious How Trip Earnings Work Video,draft,4690f713-f96c-437e-b9cc-ca8610fc3263
436 Customer feedback,live,dedd696c-dc18-45fb-9f18-d77dd967701d
437 Customer not home to accept an attended delivery,live,6ae29d0e-1f3d-4a44-bf17-0986d0517d9a
438 Enrolling on the Spark Driver™ Platform,draft,8b29ff2a-87ef-4602-bc6e-cdaef371aebc
439 Forgotten, mixed up, or missing items,live,918f89c5-cff5-42ef-b9c6-f7ecdd4a6c0f
440 General Spark Driver™ app earnings information,live,58985f06-b005-47d6-8527-4d1b17dd89a5
441 Having app issues?,draft,82882a5c-8da7-4bc2-96c7-e11088172418
442 Having issues confirming your arrival at the store or customer location?,live,71a2064f-600d-415b-9b93-0a695793a09b
443 How to apply for ONE for existing drivers,draft,065b0513-3613-428d-a4f2-9504e91d6d1f
444 How to View California Driver Info,draft,ba23909e-49fd-4458-81bc-99e9fe35faee
445 Items rejected by customer,draft,807048f0-89a0-41e6-a52b-f8d28ad30195
446 Need to cancel a trip?,live,0bc3841a-f101-404c-a522-2ed4b62c495e
447 Need to return an order?,draft,01df1c8e-55ee-41ff-bb2d-72c0713fe6b1
448 Not receiving app notifications?,archived,f9fea960-9fb3-4d05-858a-ea9a5657e20a
449 Onboarding to the Spark Driver™ platform,live,1bfce9e9-c93f-4b84-81c4-3bea41013eea
450 ONE FAQs,draft,a5785588-54f0-4d60-bd0c-1bc043cb8f20
451 Order rejected by customer,draft,097f0389-d395-47de-8bb9-a456c7dcf340
452 Picking up a curbside order,draft,c5a661eb-5c5d-402d-8f3b-6bfafb639d9a
453 Picking up an In-Store Order,draft,92faecdb-f2dc-4f40-a390-a169f27c2a2a
454 Picking up orders from non-Walmart locations,draft,e1091aec-039a-44e3-bce4-6e5c7c5d2d19
455 Pointers on accessing your metrics,draft,bb848266-a203-4863-bc5e-c01f910ecd70
456 Pointers on adding your vehicle details ,live,dce79912-ffe2-4648-a258-d725dbea6dc4
457 Pointers on Communicating with Customers,draft,c896fb41-57d0-40b3-9dca-d39be95a6a2c
458 Pointers on contacting a customer during a delivery,live,c3285034-1e14-4d80-b93b-ff144f32b7eb
459 Pointers on creating your account,live,59a21c93-36ed-4e25-a723-6c8b3e6a80f0
460 Pointers on Delivering a Return to Store offer,draft,96a9a555-7933-467b-878c-58cafac85559
461 Pointers on downloading the Spark Driver™ app & signing in,live,17224d43-5acc-4dfb-805b-53f85cafb633
462 Pointers on Resetting Your Password,draft,cdf2c238-408e-47da-b2cd-7ee8bd6e0b25
463 Pointers on Resolving App Issues & Running Troubleshooting Tests,draft,994efb3c-5fb6-42c2-a3b6-96e8b1e7a625
464 Pointers on reviewing your trips,live,bb1449eb-9b8d-48b2-9e05-1261171bd0e7
465 Pointers on setting up your account,live,98402af9-dafd-46b3-ac67-735f8d959941
466 Pointers on sharing your location,live,b30329fa-825f-4447-85f2-6caeea998ec6
467 Pointers on substituting customer items,live,0696ac41-2e12-4d11-853b-f4ca8b0c7552
468 Pointers on Substituting Customer Items Video,draft,36aa33ef-2d56-44af-a330-f7030974aca5
469 Pointers on turning off Spark Now,live,6c94e20c-aff7-465a-baaf-c32804fa7c9c
470 Pointers on updating your Spark Driver™ app,live,2e616785-7ec7-40f0-a6a7-069f3c8c4c02
471 Pointers on viewing your earnings,live,65a83b52-08e9-48ac-b953-59dfa22f7358
472 Pointers on Viewing Your Earnings,draft,efdfb1a5-58c8-4fd4-a31c-60946e73b6ed
473 Questions about earnings?,live,f3be53c0-cd21-4a2d-97f0-8b84ba030f4a
474 Received a damaged order or item?,live,e889b1de-6305-424c-b0cd-47e36e798fa3
475 Receiving error messages & alerts?,live,8e20a3e6-37ef-4538-9047-4bcce5666d59
476 Reporting Safety Incidents,live,8be392e7-f4db-4c88-b7a2-726bc379da65
477 Shopping & Delivery FAQs,live,563b97ed-6d1f-4fd9-a9eb-82842e13468e
478 Shopping & Delivery overview,live,b22ab0e6-ffd1-40e2-af04-57cd82ddf04f
479 Signing Out of the Spark Driver App,draft,35e2364c-26f1-4dcb-bd1e-e6fc4dcbff6c
480 Tips for accepting & rejecting substitutions using live chat,live,a17aab12-431f-411e-ba05-0ff8d408b9cf
481 Tips for Accepting & Rejecting Substitutions Using Live Chat Video,draft,479e8a3c-b793-4cd4-9635-536dfb616e16
482 Tips for a smooth checkout process ,live,8b94091e-0360-4893-b020-0cbb672e654e
483 Tips for a Smooth Checkout Process Video,draft,0803cc86-ea6b-49fe-8aa3-5d66d869942c
484 Tips for changing your zone,live,855e2704-fd95-456f-a4eb-ce31c13b3072
485 Tips for claiming your Branch Wallet,live,6b74d176-6027-40f5-af0c-fdee6d4f53bf
486 Tips for completing your first delivery,live,f15284d7-fe4a-4460-bd38-568915e32e20
487 Tips for Produce Shopping,draft,a06c223e-6727-4dd5-92f7-f9afbc9fe783
488 Tips for receiving offers,live,fbadcf2b-db4a-4342-b1a7-15fc357e6443
489 Tips for resolving sign-in errors,live,90b21ded-7fcf-431f-a853-a1a62ccd7e3e
490 Tips for Scanning Customer Labels,draft,b3669498-04a2-4c4a-9b37-6f2ef8e12c6d
491 Tips for Selecting Your Default Navigation App,draft,56a82a49-71b9-4606-a0ae-6f60d0a8a993
492 Tips for setting your password & turning on notifications,live,2109eb0a-9b69-437b-9afc-96242ecf8b55
493 Tips for shopping for items out of sequence,draft,e3a7fa1e-cb80-4c0a-bb42-88c39536b534
494 Tips for troubleshooting the app,live,26ee16b6-8fd1-49d1-bb9b-29da8f5b80c7
495 Tips for turning on Spark Now,live,658e2ba5-b516-4d02-841b-d5f99544e4d2
496 Tips for Viewing and Changing Your Zone,draft,6a914866-5fa9-4ea1-9818-782ebb7c0983
497 Tips for Viewing and Changing Your Zone Video,draft,9aec0431-0e78-43de-a0b6-fbcb8b8c15fb
498 Tips on appealing a deactivation,draft,a1c5fab9-0616-46e5-b2e4-9c81d3925db1
499 Understanding Offer Types,draft,db058cba-57e8-486e-963b-4acb1de355e7
500 Using the Report Issue feature in the app,draft,10dfb0f5-4452-4a00-ab82-12687c052e06
501 Ways to contact Driver Support,live,bcab9f82-4bac-4903-a054-aabae5f0a347
502 Ways to pick customer items out of sequence,live,d927e01f-a195-446a-929f-3a67869d5959
503 Ways to Pick Customer Items Out of Sequence Video,draft,37a86232-8dc9-4e83-b122-91ad0def812c
504 Wondering How Batched Trips Work?,draft,deed15bd-7b54-441f-a032-8529d483f35a
505 Wondering How Tips Work?,draft,75be32d7-441a-4954-a4ae-54e6c30d8edf