Ensuring that your main navigation loads when JavaScript (JS) is disabled is crucial for accessibility and SEO. On Shopify, you can achieve this by using Liquid templates to render the navigation server-side. For example, you can use the following Liquid code in your theme’s header.liquid file:
{% for link in linklists.main-menu.links %}{{ link.title }}{% endfor %}
This code will generate the main navigation links without relying on JavaScript. On WordPress with WooCommerce, you can use PHP to achieve a similar result. Add the following code to your theme’s header.php file:
'primary')); ?>
This PHP function will render the main navigation menu server-side, ensuring it loads even when JavaScript is disabled.