public function __construct()
 {
     $this->slug = 'shop_page';
     $this->name = __('Shop Page', WCPS_TXT);
     $this->add_settings = true;
     parent::__construct();
 }
 public function __construct()
 {
     $this->slug = 'checkout_page';
     $this->name = __('Checkout Page', WCPS_TXT);
     $this->add_settings = true;
     parent::__construct();
 }
 public function __construct()
 {
     $this->slug = 'single_product';
     $this->name = __('Single Product', WCPS_TXT);
     $this->add_settings = true;
     parent::__construct();
 }
 public function __construct()
 {
     $this->slug = 'shortcode_handler';
     $this->name = __('Cart Page', WCPS_TXT);
     $this->add_settings = false;
     add_shortcode('wc-ps', array($this, 'render_shortcode'));
     parent::__construct();
 }
 public function __construct()
 {
     $this->slug = 'order_view_page';
     $this->name = __('Order View Page', WCPS_TXT);
     $this->add_settings = true;
     $this->desc = __('This works on Order Thank you page & My Account Order View Page', WCPS_TXT);
     parent::__construct();
 }