• Resolved AudunBK

    (@audunbk)


    I am running a child theme of Zerif Lite on my site and have followed this guide to insert Master Slider in the Big Title section. But since I use Polylang and have one Norwegian and one English frontpage, I would like to use av different slider, for instance [masterslider id="5"] on the English frontpage. Do you have any solution or advice about how to solve this problem?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Audun,

    It’s possible to do if you use some conditional PHP like this:

    <?php
    if (get_locale() == 'en_GB') {
        do_shortcode('[masterslider id="5"]');
    } else {
        do_shortcode('[masterslider id="6"]');
    }
    ?>

    Let me know how it goes. ??

    Thread Starter AudunBK

    (@audunbk)

    Thank you so much, i only had to change to en_US to make it work.

    Hey there,

    Glad we were able to help. If you are happy with our products and support, please leave us a kind review here. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Master Slider on bilingual site’ is closed to new replies.