Rename / Remove Quick Links & Follow Us sections

In this article :
Rename Quick Links and Follow Us section
Remove Quick Links and Follow Us section
Move social media to the right side
⚠️ Kindly take note :
Above all code editing, you will need to re-edit the code again if you switch to a new theme template
We do not allow to change or edit the code for the checkout page (which include shipping & payment method) due to security reasons
1. Rename Quick Links and Follow Us section
Step 1 : Go to EasyStore Admin > Channels > Online Store > Edit Source > layout/theme.liquid
Step 2 : Search for < layout.footer.linklist_title > and replace the highlighted (yellow) part with your new Quick Links name.

Step 3 : Scroll down a little bit and find < layout.footer.social_title > and replace the highlighted (yellow) part with your new Follow Us name.

Step 4 : Save and done.
📌 Note:
Once the section names are changed, they will not auto change when you change storefront language
Before:

After:

2. Remove Follow Us section
Step 1 : Go to EasyStore Admin > Themes > Edit Source > config/settings_data.json folder.
Step 2 : Search for "footer_social_enable": "1", ( usually it will be at row 20 ) > change the "1" to "0".

Step 3 : Save and you're all done!
Before :

After:

3. Move social media to the right side (Move Quick Links under Store Logo)
Step 1 : Go to EasyStore Admin > Themes > Edit Source > theme.liquid
Step 2 : Go to line 180 (under {% if settings.footer_quicklinks_enable and contents.footer.links %}) and change` {{ footer_column_width }}` to {{ large--one-half }}

Step 3 : Go to line 194 (under {% if settings.footer_social_enable %}) > Change {{ footer_column_width }} to {{ large--one-half }}text-right

Step 4 : Save and done.
Before:

After:

Updated on: 23/09/2023
Thank you!