• Hi Team,
    I have a customer who wrote a landing page in Elementor that has specific programming with custom events.

    So, I’d like to Pixel Caffeine to DO NOT RUN on this specific page. I can pass the Id or use a hook on function.php to accomplish that.

    I checked the “Advanced Settings” of the plugin and the closest I could find of “do not track ” is to “Don’t fire the pixels if the user is logged in as”… but that’s not the case.

    Is there any way to accomplish that via filter/hook before you may think on including that as a feature request?

    Thanks and regards,

Viewing 1 replies (of 1 total)
  • Plugin Author Antonino Scarfì

    (@antoscarface)

    Hi,

    sorry for the large delay!

    If you are still waiting for a solution, here the hook that you can use:

    
    add_filter('pre_option_aepc_no_pixel_init', function($val) {
        if (is_page('your-page-slug')) {
            return 'yes';
        }
        return $val;
    });
    
Viewing 1 replies (of 1 total)
  • The topic ‘Do not Fire Plugin on Specific Page’ is closed to new replies.