Marketing use case n°1
STORE LOOPS 1: NEW STORE OPENING
You have just opened new store(s) and wish to invite your customers to visit the newly opened store(s).
Store loop used
{SPLIO FOREACH STORE IN "extid01,extid02,extid03,extid04"}
$store.name$
$store.extid$
$store.type$
{SPLIO ENDFOREACH}
Final result
(Ex. ID): 003
(Type): Private
(Ex. ID): 004
(Type): Franchising
(Ex. ID): 001
(Type): Family run
(Ex. ID): 002
(Type): Chain
Marketing use case n°2
STORE LOOPS 2: INVITATION TO STORES
How about inviting your customers to a free tasting in two stores?
Store loop used
{SPLIO FOREACH STORE IN "extid01,extid02" LIMIT2 SEPARATOR=""}
$store.name$
$store.extid$
$store.type$
{SPLIO ENDFOREACH}
Final result
(Ex. ID): 001
(Type): Shopping Center
(Ex. ID): 002
(Type): Shopping Center
Marketing use case n°3
STORE LOOPS 3: FAVOURITE STORE
Send a reminder to your customer to hurry up and return to their favourite store! Note that $fav_store$ shall be a custom field in the contacts table and shall contain extids separated by commas (same as products).
Store loop used
{SPLIO FOREACH STORE IN $fav_store$}
$store.name$
$store.extid$
$store.type$
{SPLIO ENDFOREACH}
Final result
(Name): Spring
(Ex. ID): 003
(Type): Private
Marketing use case n°4
STORE LOOPS 4: OPENING HOURS
Send a reminder to your customer of the opening hours of his/her favourite store today!
Note that $fav_store$ shall be a custom field in the contacts table and shall contain extids separated by commas (same as products).
Store loop used
{SPLIO FOREACH STORE IN $fav_store$ LIMIT=1 ORDERBY="name" DIRECTION="DESC"}
$store.name$
--
Monday: $store.opening_hours_monday$
Tuesday: $store.opening_hours_tuesday$
Wednesday: $store.opening_hours_wednesday$
Thursday: $store.opening_hours_thursday$
Friday: $store.opening_hours_friday$
Saturday: $store.opening_hours_saturday$
Sunday: $store.opening_hours_sunday$
{SPLIO ENDFOREACH}
Final result
La Fayette
--
Monday: 09.00 - 22.00
Tuesday: 09.00 - 22.00
Wednesday: 09.00 - 22.00
Thursday: 09.00 - 22.00
Friday: 09.00 - 22.00
Saturday: 10.00 - 22.00
Sunday: 10.00 - 22.00
Marketing use case n°5
STORE LOOPS 5: SELECTED STORES IN FILTER
Narrow down the number of stores based on geolocation (region or city) or grouped by type (shopping center or family-run). Display these stores in your design to remind your customer of coming back and purchase soon again!
Be careful here, the ID you are looking for is in the "about" of the filter and is called "Designer ID".
Store loop used
{SPLIO FOREACH STORE IN SEGMENT 167 LIMIT=2}
$store.name$
$store.extid$
{SPLIO ENDFOREACH}
Final result
(Ex. ID): 003
(Ex. ID): 005