Skip to content
Type something to search...
Finzo Theme Documentation

Finzo theme footer consists of the following elements:

  • Brand Name

    • The big brand text located in the footer, you can edit the brand name from config.toml at [settings.brandName].
  • Copyright

    • You can enable or disable copyright text from config.toml at [settings.copyright].

    • To customize the copyright text:

      • Use the text field in config.toml to provide static content.
      • Or, if using multilingual support, edit the text in src/i18n/en.json and other language files. Example:
      "footer": {
      "copyright": "Copyright © {{ year }} Finzo"
      }
  • Download Buttons

    • open src/config/config.toml file and locate the following settings
    # Download Buttons in the footer
    [[settings.downloadButtons]]
    enable = true
    image = "/images/buttons/play-store.svg"
    url = "https://play.google.com/store/apps?hl=en"
    rel = ""
    target = ""
    [[settings.downloadButtons]]
    enable = true
    image = "/images/buttons/apple-store.svg"
    url = "https://www.apple.com/store"
    rel = ""
    target = ""
  • Menus – See Menus Customization

  • Social Links – See Social Links Customization

  • Subscription Form – See Subscription Customization

  • Contact Info

    {
    "common": {
    "readMore": "Read More Details",
    "category": "Category",
    "emailPlaceholder": "Email Address",
    "paginationNext": "Next",
    "paginationPrevious": "Previous",
    "contactDropdownSearch404": "No results wewe found",
    "404Heading": "404 - Page Not Found",
    "404Description": "Oh dear, it seems like you've ventured off the map.",
    "404ButtonLabel": "Go Back to Home"
    },
    "navigation": {
    "buttonLabel": "Download"
    },
    "contactInfo": {
    "locationLabel": "Location",
    "location": "2627 Park Street, San Francisco, CA",
    "phoneLabel": "Phone Number",
    "phone": "925-465-3762",
    "emailLabel": "Email",
    "email": "[email protected]"
    },
    "subscription": {
    "title": "Join Our Newsletter",
    "description": "Subscribe to our newsletter to receive the latest updates, new theme releases."
    },
    "integration": {
    "relatedIntegrationSectionTitle": "You might be **interested in**",
    "backToIntegration": "Browse"
    },
    "footerBlock": {
    "description": "We provide seamless solutions to Small and Medium Businesses.",
    "copyright": "Copyright © 2024 Finzo. All Rights Reserved.",
    "contactBlockLabel": "Contact"
    }
    }
    • You can easily customize contact info like location, phone number by updating /src/i18n/en.json file and other language files (if using multilingual).