• tjodense

    (@tjodense)


    Is it possible for APP Gate to appear every time you load/ visit my homepage. So that it does not save the choice in a cookie YES/NO choice but show up everytime.

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

    (@philsbury)

    If it’s just the home page, this in a JS file/script somewhere should work as long as the hooks are loaded, but it fire before age gate:

    AgeGateHooks.addFilter('age_gate_show', 'AgeGateHooks', (status) => {
    
        if (window.location.pathname === '/') {
            return true;
        }
    
        return status;
    });

    If it’s every page every time, then in functions.php:

    add_filter('age_gate/cookie/set', '__return_false');
Viewing 1 replies (of 1 total)
  • The topic ‘popup on all sites’ is closed to new replies.