-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgmt-pricing-parity.php
More file actions
34 lines (26 loc) · 1.02 KB
/
gmt-pricing-parity.php
File metadata and controls
34 lines (26 loc) · 1.02 KB
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
<?php
/**
* Plugin Name: GMT Pricing Parity
* Plugin URI: https://github.com/cferdinandi/gmt-pricing-parity/
* GitHub Plugin URI: https://github.com/cferdinandi/gmt-pricing-parity/
* Description: Provide custom discounts based on geographic location
* Version: 2.9.0
* Author: Chris Ferdinandi
* Author URI: http://gomakethings.com
* License: GPLv3
*/
// Utilities
require_once( plugin_dir_path( __FILE__ ) . 'includes/helpers.php' );
// Shortcode
require_once( plugin_dir_path( __FILE__ ) . 'includes/shortcode.php' );
// API
require_once( plugin_dir_path( __FILE__ ) . 'includes/api.php' );
// Checkout
require_once( plugin_dir_path( __FILE__ ) . 'includes/checkout.php' );
// Payments
require_once( plugin_dir_path( __FILE__ ) . 'includes/payments.php' );
// Custom Post Type
require_once( plugin_dir_path( __FILE__ ) . 'includes/cpt.php' );
require_once( plugin_dir_path( __FILE__ ) . 'includes/metabox.php' );
// Products with no discount
require_once( plugin_dir_path( __FILE__ ) . 'includes/metabox-no-discount.php' );