Services | Vodafone Egypt
Vodafone Services Manage your line , your payment, balance, and all the services you need
Vodafone Services

Vodafone Cash
Vodafone Cash is an E-Wallet provided by Vodafone to make your life easier and run all your errands with a click.
An error occurred while processing the template.
The following has evaluated to null or missing:
==> parentStructureFieldSet7041175.parentStructureFieldSet6592876.sectionId [in template "20116#20160#10094173" at line 13, column 16]
----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----
----
FTL stack trace ("~" means nesting-related):
- Failed at: ${parentStructureFieldSet7041175.pare... [in template "20116#20160#10094173" at line 13, column 14]
----
1<!--------- START: Section --------->
2
3
4<style>
5
6#valueRamadan26 .active .card-action-img:after {
7display: none;
8}
9</style>
10
11
12<#assign randomNumber = .vars['reserved-article-id'].data />
13<section id="${parentStructureFieldSet7041175.parentStructureFieldSet6592876.sectionId.getData()}" class="${htmlUtil.unescape(parentStructureFieldSet7041175.parentStructureFieldSet6592876.sectionSize.getData())} bg-${htmlUtil.unescape(parentStructureFieldSet7041175.parentStructureFieldSet6592876.sectionBackgroundColor.getData())}">
14 <div class="container">
15 <div class="row justify-content-center">
16
17 <#if parentStructureFieldSet7041175.parentStructureFieldSet6592876.sectionTitle.getData()?has_content>
18 <div class="col-10">
19 <div class="section-title text-center">
20 <h2 class="h3-2x ${htmlUtil.unescape(parentStructureFieldSet7041175.parentStructureFieldSet6592876.SectionTitleColor.getData())}">${htmlUtil.unescape(parentStructureFieldSet7041175.parentStructureFieldSet6592876.sectionTitle.getData())}</h2>
21 <#if parentStructureFieldSet7041175.parentStructureFieldSet6592876.sectionSubtitle.getData()?has_content>
22 <h4 class="section-subtitle">${htmlUtil.unescape(parentStructureFieldSet7041175.parentStructureFieldSet6592876.sectionSubtitle.getData())}</h4>
23 </#if>
24 </div>
25 </div>
26 </#if>
27
28 <div class="col-12">
29 <!--------- START: Carousel --------->
30
31
32 <div class="carousel-container card-carousel">
33 <div class="owl-carousel js-owl-carousel-${randomNumber}" items="${htmlUtil.unescape(parentStructureFieldSet7041175.CarouselCardsNumberDesktop.getData())}"
34 <#if parentStructureFieldSet7041175.CarouselCardsNumberTablet.getData() != '0' > items-md="${htmlUtil.unescape(parentStructureFieldSet7041175.CarouselCardsNumberTablet.getData())}" </#if>
35 <#if parentStructureFieldSet7041175.CarouselCardsNumberMobile.getData() != '0' > items-sm="${htmlUtil.unescape(parentStructureFieldSet7041175.CarouselCardsNumberMobile.getData())}"</#if>
36 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.Autoplay.getData())> autoplay="true" </#if>
37 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.AutopalyHoverPause.getData())> autoplayHoverPause="true" </#if>
38 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.NavigationDesktop.getData())> nav="true" </#if>
39 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.NavigationTablet.getData())> nav-md="true" </#if>
40 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.NavigationMobile.getData())> nav-sm="true" </#if>
41 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.Loop.getData())> loop="true" </#if>
42 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.DotsDesktop.getData())> dots="true" </#if>
43 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.DotsTablet.getData())> dots-md="true" </#if>
44 <#if getterUtil.getBoolean(parentStructureFieldSet7041175.DotsMobile.getData())> dots-sm="true" </#if>
45 margin="30">
46 <#if CardTitle.getSiblings()?has_content>
47 <#list CardTitle.getSiblings() as cur_CardTitle>
48 <div class="carousel-item">
49 <!--------- START: Card action --------->
50 <div class="card-action radius shadow-sm m-0 card-sm text-center">
51
52 <#if cur_CardTitle.redirectionMobile.getData()?has_content && cur_CardTitle.redirectionDesktop.getData()?has_content>
53 <a class="js-tagging-btn w-100" data-href-mobile="${htmlUtil.unescape(cur_CardTitle.redirectionMobile.getData())}" data-href-desktop="${htmlUtil.unescape(cur_CardTitle.redirectionDesktop.getData())}" data-tracking-mobile="${htmlUtil.unescape(cur_CardTitle.redirectionMobile.MobileBtnKey.getData())}" data-tracking-desktop="${htmlUtil.unescape(cur_CardTitle.redirectionDesktop.DesktopBtnKey.getData())}">
54 <#else>
55 <a class="w-100" href="${htmlUtil.unescape(cur_CardTitle.CardLink.getData())}">
56 </#if>
57
58 <div class="card-action-body w-100 justify-content-center align-items-center">
59 <div>
60 <h4 class="font-bold h5 m-0">${htmlUtil.unescape(cur_CardTitle.getData())}</h4>
61 <p class="m-0 view-more">${htmlUtil.unescape(CardHoverText.getData())}</p>
62
63 </div>
64 </div>
65 <div class="card-action-img">
66 <#if cur_CardTitle.CardImage.getData()?? && cur_CardTitle.CardImage.getData() != "">
67 <img class="img-fit" alt="${cur_CardTitle.CardImage.getAttribute("alt")}" src="${htmlUtil.unescape(cur_CardTitle.CardImage.getData())}" />
68 </#if>
69 </div>
70 </a>
71 </div>
72 <!--------- END: Card action --------->
73 </div>
74 </#list>
75 </#if>
76 </div>
77 </div>
78 <!--------- END: Carousel --------->
79 </div>
80 </div>
81 </div>
82 </section>
83 <!--------- END: Section --------->
Call & Connect abroad
Great Entertainment
Enjoy entertainment services from Vodafone and select your favorite
Download Ana Vodafone App

