Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Aleksandr Guidrevitch

    (@aguidrevitch)

    Hi @ebedel,

    The answer is in FAQ section, stilll, you can use the?wpmeteor_enabled?filter and return false to disable WP Meteor completely, as in this example:

    add_filter(‘wpmeteor_enabled’, function ($value) {
    global $post;
    if ($post && $post-> ID == 1) {
    return false;
    }
    return $value;
    });

    Plugin Author Aleksandr Guidrevitch

    (@aguidrevitch)

    Resolving

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to exclude a specific page from running WPMeteor on it?’ is closed to new replies.