Documentation
Feedback
Guides
VTEX IO Apps

VTEX IO Apps
Basic components
Footer
Official extension
Version: 2.27.0
Latest version: 2.27.0

Footer is a store component that shows information about the store such as address, social networks and payment methods. Furthermore, it is possible to add hyperlinks for privacy policy, FAQ, benefits and attendance. This app is used by store theme.

{"base64":"  ","img":{"width":3276,"height":540,"type":"png","mime":"image/png","wUnits":"px","hUnits":"px","length":112205,"url":"https://user-images.githubusercontent.com/284515/70253374-dde10680-1761-11ea-8a81-856cec500f89.png"}}

Configuration

  1. Import the vtex.store-footer's app to your theme's dependencies in the manifest.json, for example:

_10
dependencies: {
_10
"vtex.store-footer: 2.x"
_10
}

  1. Define the footer block. For example:

_42
{
_42
"footer": {
_42
"blocks": ["footer-layout.desktop", "footer-layout.mobile"]
_42
},
_42
"footer-layout.desktop": {
_42
"children": [
_42
"flex-layout.row#footer-desktop"
_42
]
_42
},
_42
"footer-layout.mobile": {
_42
"children": [
_42
"flex-layout.row#footer-mobile"
_42
]
_42
},
_42
"flex-layout.row#footer-desktop": {
_42
"children": [
_42
"social-networks",
_42
"accepted-payment-methods",
_42
"powered-by"
_42
]
_42
},
_42
"flex-layout.row#footer-mobile": {
_42
"children": [
_42
"social-networks",
_42
"accepted-payment-methods",
_42
"powered-by"
_42
]
_42
},
_42
"social-networks": {
_42
"props": {
_42
"socialNetworks": [
_42
{ "url": "https://facebook.com/foo", "name": "Facebook" },
_42
{ "url": "https://twitter.com/foo", "name": "Twitter" }
_42
]
_42
}
_42
},
_42
"accepted-payment-methods": {
_42
"props": {
_42
"paymentMethods": ["mastercard", "visa", "diners club"]
_42
}
_42
}
_42
}

social-networks:

Prop nameTypeDescription
titlestringText to show above of list of links
socialNetworksArray(SocialNetwork)Array of social networks
showInColorbooleanWhether the icons are colored or not

SocialNetwork

Prop nameTypeDescription
urlstringLink to the social network profile
nameenumPossible values: facebook, twitter, linkedin, youtube, pinterest

accepted-payment-methods:

Prop nameTypeDescription
paymentMethodsArrayPossible values: mastercard, visa, diners club
showInColorbooleanWhether the icons are colored or not

powered-by:

Prop nameTypeDescription
showInColorbooleanWhether the icons are colored or not

Customization

In order to apply CSS customizations in this and other blocks, follow the instructions given in the recipe on Using CSS Handles for store customization.

footer-layout:

CSS Handles
footerLayout
footerLayoutSpacer

social-networks:

CSS Handles
socialNetworksTitle
socialNetworksContainer
socialNetworkWrapper
socialNetworkLink
socialNetworkImage

accepted-payment-methods:

CSS Handles
acceptedPaymentMethodContainer
paymentMethodIcon
paymentMethodIconImage

powered-by:

CSS Handles
poweredBy
poweredByImage
poweredByLink
See also
VTEX App Store
VTEX IO Apps