26 lines
513 B
PHP
26 lines
513 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Plugin Name: CartFlows
|
||
|
* Plugin URI: https://cartflows.com/
|
||
|
* Description: Create beautiful checkout pages & sales flows for WooCommerce.
|
||
|
* Version: 2.0.2
|
||
|
* Author: CartFlows Inc
|
||
|
* Author URI: https://cartflows.com/
|
||
|
* Text Domain: cartflows
|
||
|
* WC requires at least: 3.0
|
||
|
* WC tested up to: 8.0.0
|
||
|
* Elementor tested up to: 3.14.1
|
||
|
*
|
||
|
* @package CartFlows
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Set constants.
|
||
|
*/
|
||
|
define( 'CARTFLOWS_FILE', __FILE__ );
|
||
|
|
||
|
/**
|
||
|
* Loader
|
||
|
*/
|
||
|
require_once 'classes/class-cartflows-loader.php';
|