| @@ -1,37 +1,45 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | 3 | * @wordpress-plugin |
| 4 | - * Plugin Name: ShopBuilder - Elementor WooCommerce Builder Addons | |
| 5 | - * Plugin URI: https://shopbuilderwp.com/ | |
| 6 | - * Description: WooCommerce Page Builder for Elementor | |
| 7 | - * Version: 2.1.9 | |
| 8 | - * Author: RadiusTheme | |
| 9 | - * Author URI: https://radiustheme.com | |
| 10 | - * Text Domain: shopbuilder | |
| 11 | - * Domain Path: /languages | |
| 12 | - * Requires Plugins: woocommerce | |
| 13 | - * WC requires at least: 3.2 | |
| 14 | - * WC tested up to: 8.5.2 | |
| 15 | - * Elementor tested up to: 3.20 | |
| 16 | - * Elementor Pro tested up to: 3.20 | |
| 4 | + * Plugin Name: ShopBuilder – Elementor WooCommerce Builder Addons | |
| 5 | + * Plugin URI: https://shopbuilderwp.com/ | |
| 6 | + * Description: WooCommerce Page Builder for Elementor | |
| 7 | + * Version: 2.0.2 | |
| 8 | + * Author: RadiusTheme | |
| 9 | + * Author URI: https://radiustheme.com | |
| 10 | + * Text Domain: shopbuilder | |
| 11 | + * Domain Path: /languages | |
| 12 | + * WC requires at least: 3.2 | |
| 13 | + * WC tested up to: 8.0.2 | |
| 14 | + * Elementor tested up to: 3.17.0 | |
| 17 | 15 | * |
| 18 | 16 | * @package RadiusTheme\SB |
| 19 | 17 | */ |
| 20 | 18 | |
| 21 | 19 | // Do not allow directly accessing this file. |
| 20 | + | |
| 22 | 21 | if ( ! defined( 'ABSPATH' ) ) { |
| 23 | 22 | exit( 'This script cannot be accessed directly.' ); |
| 24 | 23 | } |
| 25 | 24 | |
| 26 | 25 | /** |
| 27 | - * Define Constants. | |
| 26 | + * Define RTCL Content. | |
| 28 | 27 | */ |
| 29 | -define( 'RTSB_VERSION', '2.1.9' ); | |
| 28 | + | |
| 29 | +define( 'RTSB_VERSION', '2.0.2' ); | |
| 30 | + | |
| 30 | 31 | define( 'RTSB_FILE', __FILE__ ); |
| 31 | -define( 'RTSB_PATH', plugin_dir_path( __FILE__ ) ); | |
| 32 | + | |
| 33 | +define( 'RTSB_PATH', plugin_dir_path(__FILE__ ) ); | |
| 34 | + | |
| 32 | 35 | define( 'RTSB_ACTIVE_FILE_NAME', plugin_basename( __FILE__ ) ); |
| 33 | 36 | |
| 37 | + | |
| 34 | 38 | /** |
| 35 | 39 | * App Init. |
| 36 | 40 | */ |
| 41 | +// require_once 'dev-helpers.php'; | |
| 42 | + | |
| 37 | 43 | require_once 'app/ShopBuilder.php'; |
| 44 | + | |
| 45 | + | |