PluginProbe
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce / 2.2.16
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce v2.2.16
2.15.0 trunk 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.2 2.1.3 2.1.5 2.1.6 2.1.7 2.1.8 2.10.0 All 62 releases
← All changes | includes/C.php +1 -13 trunk2.2.16 View file →
@@ -19,9 +19,8 @@
19 19 const WC_POSITION_BELOW_TITLE = 9.3;
20 20 const WC_POSITON_BELOW_REVIEW_RATING = 11.3;
21 21 const WC_POSITION_BELOW_PRICE = 17.3;
22 22 const WC_POSITION_BELOW_ATC_BUTTON = 39.3;
23 - const WC_POSITION_ABOVE_ATC_BUTTON = 29.3;
24 23
25 24 // Actions.
26 25 const ACTION_NONE = 1;
27 26 const ACTION_HIDE = 2;
@@ -28,9 +27,8 @@
28 27 const ACTION_REDIRECT = 3;
29 28 const ACTION_CHANGE_STOCK_STATUS = 4;
30 29 const ACTION_HIDE_ADD_TO_CART_BUTTON = 5;
31 30 const ACTION_DISPLAY_MESSAGE = 6;
32 - const ACTION_EXPIRE_COUPON = 7;
33 31
34 32 // WC products selection type.
35 33 const WC_PS_TYPE_ALL = 1;
36 34 const WC_PS_TYPE_INCLUDE_PRODUCTS = 2;
@@ -46,10 +44,9 @@
46 44 // Restart options.
47 45 const RESTART_NONE = 1;
48 46 const RESTART_IMMEDIATELY = 2;
49 47 const RESTART_AFTER_RELOAD = 3;
50 - const RESTART_AFTER_DURATION = 4;
51 -
48 +
52 49 // Transform text cases.
53 50 const TRANSFORM_NONE = 'none';
54 51 const TRANSFORM_UPPERCASE = 'uppercase';
55 52 const TRANSFORM_LOWERCASE = 'lowercase';
@@ -69,14 +66,5 @@
69 66 const RECURRING_MINUTELY = 'minutely';
70 67 const RECURRING_HOURLY = 'hourly';
71 68 const RECURRING_DAILY = 'daily';
72 69 const RECURRING_WEEKLY = 'weekly';
73 - const RECURRING_MONTHLY = 'monthly';
74 -
75 - const RECURRING_MONTHLY_DAY_OF_MONTH = 'day_of_month';
76 - const RECURRING_MONTHLY_DAY_OF_WEEK = 'day_of_week';
77 -
78 - const DETECTION_METHOD_COOKIE = 1;
79 - const DETECTION_METHOD_IP = 2;
80 - const DETECTION_METHOD_USER_SESSION = 3;
81 -
82 70 }