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/operators/is.php +4 -0 1.5.02.7.0 View file →
@@ -57,8 +57,10 @@
57 57 'whitin-date-range',
58 58 'whitin-time-period',
59 59 'url-query-string',
60 60 'login-status',
61 + 'cart-item-quantity',
62 + 'purchased-product-quantity',
61 63 ];
62 64 }
63 65
64 66 /**
@@ -68,8 +70,10 @@
68 70 * @param mixed $value mixed The value of current value.
69 71 * @param mixed $condition_value The value of condition input.
70 72 */
71 73 public function is_valid( $value, $condition_value ) {
74 + $value = strtolower( $value );
75 + $condition_value = strtolower( $condition_value );
72 76 if ( $value === $condition_value ) {
73 77 return true;
74 78 }
75 79