Changeset 870151
- Timestamp:
- 03/05/2014 05:41:02 PM (12 years ago)
- Location:
- woocommerce-super-simple-tax-exemption
- Files:
-
- 8 added
- 2 edited
-
tags/1.1 (added)
-
tags/1.1/css (added)
-
tags/1.1/css/tax-exempt.css (added)
-
tags/1.1/js (added)
-
tags/1.1/js/tax-exempt.js (added)
-
tags/1.1/readme.txt (added)
-
tags/1.1/simple-tax-exemption.php (added)
-
tags/1.1/woocommerce-super-simple-tax-exempt.zip (added)
-
trunk/simple-tax-exemption.php (modified) (2 diffs)
-
woocommerce-super-simple-tax-exempt.zip (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-super-simple-tax-exemption/trunk/simple-tax-exemption.php
r855733 r870151 4 4 Plugin URI: http://www.bobbiejwilson.com/woocommerce-super-simple-tax-exempt 5 5 Description: A plugin to add simple tax exemption to the Woocommerce checkout page. Records the Tax Exempt ID to the order meta. 6 Version: 1. 06 Version: 1.1 7 7 Author: Bobbie Wilson 8 8 Author URI: http://www.bobbiejwilson.com … … 11 11 12 12 /*Tax Exempt Checkout for Woocommerce */ 13 if ( class_exists('Woocommerce')) {13 if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { 14 14 add_action('woocommerce_before_order_notes', 'taxexempt_before_order_notes' ); 15 15 function taxexempt_before_order_notes( $checkout ) {
Note: See TracChangeset
for help on using the changeset viewer.