Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Stefan Boonstra

    (@stefanboonstra)

    Hi Mark,

    If the language ID is included in the URL, you could simply do this:

    <?php if($_GET['lang'] == 'en')
        do_action('slideshow_deploy', '3');
    elseif($_GET['lang'] == 'po')
        do_action('slideshow_deploy', '71');
    elseif($_GET['lang'] == 'es')
        do_action('slideshow_deploy', '6');
    else
        do_action('slideshow_deploy', '7'); ?>

    Best regards,
    Stefan

    Thread Starter jedimarv

    (@jedimarv)

    Stefan,

    Thank you for your quick response.

    PhP code works perfectly.

    Thanks a lot!!

    Bedankt kerel!! hehe

    Groetjes Mark

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wpml multilanguage with different slideshows’ is closed to new replies.