PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 2.7.0
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v2.7.0
2.7.0 2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 All 43 releases
← All changes | includes/contact-segmentation/conditions.php +4 -0 1.6.82.7.0 View file →
@@ -129,8 +129,12 @@
129 129 if ( is_admin() && ! wp_doing_ajax() ) {
130 130 return;
131 131 }
132 132
133 + if ( ! class_exists( 'Operators' ) ) {
134 + require_once __DIR__ . '/operators.php';
135 + }
136 +
133 137 $condition = self::$conditions[ $condition_name ];
134 138 $operator = Operators::$operators[ $operator_name ];
135 139 $extracted_value = $condition->get_value();
136 140