| @@ -3,25 +3,21 @@ | ||
| 3 | 3 | * @wordpress-plugin |
| 4 | 4 | * Plugin Name: ShopBuilder - Elementor WooCommerce Builder Addons |
| 5 | 5 | * Plugin URI: https://shopbuilderwp.com/ |
| 6 | 6 | * Description: WooCommerce Page Builder for Elementor |
| 7 | - * Version: 2.2.1 | |
| 7 | + * Version: 2.1.3 | |
| 8 | 8 | * Author: RadiusTheme |
| 9 | 9 | * Author URI: https://radiustheme.com |
| 10 | 10 | * Text Domain: shopbuilder |
| 11 | 11 | * Domain Path: /languages |
| 12 | 12 | * WC requires at least: 3.2 |
| 13 | - * WC tested up to: 9.1 | |
| 14 | - * Elementor tested up to: 3.23 | |
| 15 | - * Elementor Pro tested up to: 3.23 | |
| 16 | - * License: GPLv3 | |
| 17 | - * License URI: http://www.gnu.org/licenses/gpl-3.0.html | |
| 13 | + * WC tested up to: 8.5.2 | |
| 14 | + * Elementor tested up to: 3.19.1 | |
| 15 | + * Elementor Pro tested up to: 3.19.1 | |
| 18 | 16 | * |
| 19 | 17 | * @package RadiusTheme\SB |
| 20 | 18 | */ |
| 21 | 19 | |
| 22 | -use RadiusTheme\SB\ShopBuilder; | |
| 23 | - | |
| 24 | 20 | // Do not allow directly accessing this file. |
| 25 | 21 | if ( ! defined( 'ABSPATH' ) ) { |
| 26 | 22 | exit( 'This script cannot be accessed directly.' ); |
| 27 | 23 | } |
| @@ -28,27 +24,15 @@ | ||
| 28 | 24 | |
| 29 | 25 | /** |
| 30 | 26 | * Define Constants. |
| 31 | 27 | */ |
| 32 | -define( 'RTSB_VERSION', '2.2.1' ); | |
| 28 | +define( 'RTSB_VERSION', '2.1.3' ); | |
| 33 | 29 | define( 'RTSB_FILE', __FILE__ ); |
| 34 | -define( 'RTSB_PATH', plugin_dir_path( __FILE__ ) ); | |
| 30 | +define( 'RTSB_PATH', plugin_dir_path(__FILE__ ) ); | |
| 35 | 31 | define( 'RTSB_ACTIVE_FILE_NAME', plugin_basename( __FILE__ ) ); |
| 36 | 32 | |
| 37 | 33 | /** |
| 38 | 34 | * App Init. |
| 39 | 35 | */ |
| 40 | -require_once RTSB_PATH . 'vendor/autoload.php'; | |
| 36 | +require_once 'app/ShopBuilder.php'; | |
| 41 | 37 | |
| 42 | -/** | |
| 43 | - * @return ShopBuilder | |
| 44 | - */ | |
| 45 | -function rtsb() { | |
| 46 | - static $cached_instance; | |
| 47 | - if ( null !== $cached_instance ) { | |
| 48 | - return $cached_instance; | |
| 49 | - } | |
| 50 | - $cached_instance = ShopBuilder::instance(); | |
| 51 | - return $cached_instance; | |
| 52 | -} | |
| 53 | 38 | |
| 54 | -rtsb(); | |