• Hello, my site is translated on 15 languages, and i need age message only in one country. How to do that?

    Site structure is: domain.com

    domain.com/nl/

    domain.com/fr/

Viewing 1 replies (of 1 total)
  • Plugin Author Phil

    (@philsbury)

    Hi,

    I would do is something like this:

    add_action('age_gate/settings', function($settings){
        // change en_GB to the locale you want restricted
        if (get_locale() !== 'en_GB') {
            $settings->set('type', 'selected');
        }
    });

    It essentially sets other languages to be “selected content” mode.

    Thanks
    Phil

Viewing 1 replies (of 1 total)
  • The topic ‘Need age gate only in one language’ is closed to new replies.