Why does my language selector disappear on non-home pages?

Hello, I have a problem displaying my language selector in my header.

I’ve added it and I’m having a major customization problem.

When the header is transparent, the selector is displayed in the same color as the other nav bar elements. In hover link too.

However, when I switch to a page other than the home page, the language selector becomes white (on a white background), so the text isn’t visible, as in the example below:

The site URL is : https://stephanparis.fr/

Thank you in advance for your help,

MC

Hi @MaxCosta

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the

{%unless template contains 'index' %}

{%endunless%}

Hope this can help you solve the issue

Best regards,

Richard | PageFly

Your language selector is generated by the app. First, set the font color of the selector in the app to black. Then add the following code above the of theme.liquid:

{% if template == 'index' %}

{% endif %}