Magento 1. Argento Essence Footer

by Peter D.

Newsletter block

You can find the Code of the block at app/design/frontend/argento/default/template/newsletter/subscribe.phtml file.

Social icons

You can add or remove additional links in Cms > Static Blocks > footer_social block.

Here is a full list of supported icons:

<div class="footer-social">
  <span class="label">Join our community</span>
  <ul class="icons">
    <li class="facebook"><a href="facebook.com">Facebook</a></li>
    <li class="twitter"><a href="twitter.com">Twitter</a></li>
    <li class="youtube"><a href="youtube.com">YouTube</a></li>
    <li class="rss"><a href="rss.com">Rss</a></li>
  </ul>
</div>

Company information

You can add or remove additional links, change phone number and text in Cms > Static Blocks > footer block.

Block code is:

<ul class="footer-links">
  <li><div class="h6">About us</div>
    <ul>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">About Us</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Our company</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Carriers</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Shipping</a></li>
    </ul>
  </li>
  <li><div class="h6">Customer center</div>
    <ul>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">My Account</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Order Status</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Wishlist</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Returns and Exchanges</a></li>
    </ul>
  </li>
  <li><div class="h6">Info</div>
    <ul>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Privacy policy</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Delivery information</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Returns policy</a></li>
    </ul>
  </li>
  <li class="last"><div class="h6">Contacts</div>
    <ul>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Contact Us</a></li>
      <li><a href="https://argentotheme.com/%3C/span%3E%3Cspan class=">Store location</a></li>
    </ul>
  </li>
</ul>

Contacts block

You can edit the contacts at Cms > Static Blocks > footer_contacts.

Block code is:

<div class="footer-contacts">
  <div class="h6">Visit Argento  Store</div>
  <address>
    221B Baker Street<br/>
    West Windsor, NJ  08550<br/>
    <strong>1.800.555.1903</strong><br/>
  </address>
  <a href="https://argentotheme.com/%3C/span%3E%3Cspan class=/">get directions</a><br/>
  <img width="200" height="60" style="margin-top: 10px;" src="https://argentotheme.com/skin/frontend/base/default/srcset="https://argentotheme.com/skin/frontend/base/default/2x" alt="Security Seal"/>
</div>

Copyright block

You can change the copyright block by navigating to System > Configuration > General > Design. The copyright information can be edited in the footer field.

Additional links block

You can find the code of the block at app/design/frontend/base/default/layout/page.xml file.

<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
<block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>

Please notice, that all links are collected from different xml files. For example, if you want to edit the Advanced search link, you have to find app/design/frontend/base/default/layout/catalogsearch.xml file. Then please enter the following code:

<reference name="footer_links">
    <action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
        <label>Search Terms</label>
        <url helper="catalogsearch/getSearchTermUrl" />
        <title>Search Terms</title>
    </action>
    <action method="addLink" translate="label title" module="catalogsearch">
        <label>Advanced Search</label>
        <url helper="catalogsearch/getAdvancedSearchUrl" />
        <title>Advanced Search</title>
    </action>
</reference>

Short footer layout

Short footer layout is used on checkout page to increase conversion rate.

You can disable short footer using custom layout update file

<short_header_footer>
    <reference name="footer">
        <action method="setTemplate"><template>page/html/footer.phtml</template></action>
    </reference>
</short_header_footer>

Recent articles