To add links in the footer of a Magento website, you can use the following steps:
- Log in to the Magento admin panel.
- Go to Content > Blocks.
- Click on the “Add New Block” button.
- In the “Block Title” field, enter a name for the block (e.g. “Footer Links”).
- In the “Content” field, enter the HTML for the links you want to add to the footer. For example, you can use the following HTML to create a link to a “Contact Us” page:
<a href="{{store direct_url='contact'}}">Contact Us</a>
- Click “Save Block” to save the new block.
- Go to Content > Pages
- Select the page you want to edit
- In the Content section, insert the block you just created by using the following code
{{block type='cms/block' block_id='footer_links'}}
- Click Save to save the changes.
Note: Keep in mind that the design of your theme may affect where the links appear in the footer, and you may need to adjust the CSS accordingly.