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/admin/notices/notice-base.php +9 -0 1.2.92.7.0 View file →
@@ -42,8 +42,16 @@
42 42 */
43 43 public $key;
44 44
45 45 /**
46 + * Active theme.
47 + *
48 + * @since 1.7.4
49 + * @var string
50 + */
51 + public $active_theme;
52 +
53 + /**
46 54 * Notice_Base constructor.
47 55 *
48 56 * @since 1.1.0
49 57 */
@@ -50,8 +58,9 @@
50 58 public function __construct() {
51 59 $dismissed_notices = sellkit_get_option( 'dismissed_notices', '' );
52 60
53 61 $this->dismissed_notices = empty( $dismissed_notices ) ? [] : $dismissed_notices;
62 + $this->active_theme = wp_get_theme()->get( 'Name' );
54 63 }
55 64
56 65 /**
57 66 * Notice content wrapper.