PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 2.0.0
ShopBuilder – WooCommerce Builder For Elementor v2.0.0
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
← All changes | app/Modules/QuickView/QuickView.php +13 -1 2.1.12.0.0 View file →
@@ -16,12 +16,24 @@
16 16 * @var array
17 17 */
18 18 public $settings = [];
19 19
20 + //protected $module_id = 'quick_view';
21 +
20 22 use SingletonTrait;
21 23
22 24 function __construct() {
25 +
23 26 QuickViewFrontEnd::instance();
24 27
25 28 do_action( 'rtsb/module/quick_view/loaded' );
26 29 }
27 -}
30 +
31 + /**
32 + * Do stuff upon plugin activation
33 + *
34 + * @return void
35 + */
36 + public function activate() {
37 + ( new CompareInstaller() )->run();
38 + }
39 +}