| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: CartFlows |
| 4 |
* Plugin URI: https://cartflows.com/ |
| 5 |
* Description: Create beautiful checkout pages & sales flows for WooCommerce. |
| 6 |
* Version: 3.2.0 |
| 7 |
* Author: Brainstorm Force |
| 8 |
* Author URI: https://www.brainstormforce.com |
| 9 |
* Text Domain: cartflows |
| 10 |
* WC requires at least: 3.0 |
| 11 |
* WC tested up to: 11.0.1 |
| 12 |
* Elementor tested up to: 4.2.1 |
| 13 |
* |
| 14 |
* @package CartFlows |
| 15 |
*/ |
| 16 |
|
| 17 |
/** |
| 18 |
* Set constants. |
| 19 |
*/ |
| 20 |
define( 'CARTFLOWS_FILE', __FILE__ ); |
| 21 |
|
| 22 |
/** |
| 23 |
* Loader |
| 24 |
*/ |
| 25 |
require_once 'classes/class-cartflows-loader.php'; |
| 26 |
|