• So I want my meta slider to only be on the front page. But I need it to be translated, so I need it in english on the enlish home page only and in french on the french homepage only… I found these two codes below that help me accomplish either or but not both… is there a way to combine them both to make it the way I need it?

    <?php
        if(ICL_LANGUAGE_CODE=='en') {
            echo do_shortcode('[metaslider id=123]'); // English
        }
    
        if(ICL_LANGUAGE_CODE=='fr') {
            echo do_shortcode('[metaslider id=456]'); // French
        }
    ?>

    and

    <?php
    if (is_front_page()) {
        echo do_shortcode("[metaslider id=123]"); //replace 123 with slider ID
    }
    ?>

    https://wordpress.org/plugins/ml-slider/

  • The topic ‘Frontpage slider only in respective languages’ is closed to new replies.