-
Notifications
You must be signed in to change notification settings - Fork 2
/
woocommerce-checkout-flow.php
38 lines (33 loc) · 1.39 KB
/
woocommerce-checkout-flow.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* Plugin Name: WooCommerce Checkout Flow
* Plugin URI: https://github.com/marcofrasson/woocommerce-checkout-flow
* Description: Plugin para WordPress e WooCommerce que ajuda na usabilidade de criação de contas dos usuários no checkout.
* Author: Flow Digital Creative Ecommerce
* Author URI: https://goflow.digital
* Version: 1.0.1
* License: GPLv3
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: wc-checkout-flow
* Domain Path: /languages
* WC requires at least: 3.0.0
* WC tested up to: 3.5.0
*
* WooCommerce Checkout Flow is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* any later version.
*
* WooCommerce Checkout Flow is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
if ( ! defined( 'WPINC' ) ) {
die();
}
require_once 'vendor/autoload.php';
require_once 'includes/helpers.php';
FlowDigital\WC_Checkout_Flow\Core\Config::setup( __FILE__ );
require_once 'includes/boot.php';
FlowDigital\WC_Checkout_Flow\Core\Plugin::run();