Changeset 911846
- Timestamp:
- 05/10/2014 09:47:55 PM (12 years ago)
- Location:
- woocommerce-super-simple-tax-exemption
- Files:
-
- 7 added
- 2 edited
-
tags/1.2 (added)
-
tags/1.2/css (added)
-
tags/1.2/css/tax-exempt.css (added)
-
tags/1.2/js (added)
-
tags/1.2/js/tax-exempt.js (added)
-
tags/1.2/readme.txt (added)
-
tags/1.2/simple-tax-exemption.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/simple-tax-exemption.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-super-simple-tax-exemption/trunk/readme.txt
r870153 r911846 4 4 Tags: woocommerce, no tax, tax exempt, tax exempt ID, tax-exempt, checkout 5 5 Requires at least: 3.5 6 Tested up to: 3. 87 Stable tag: 1. 16 Tested up to: 3.9 7 Stable tag: 1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 = 1.1 = 36 36 * Fixed Woocommerce detection 37 38 = 1.2 = 39 * Fixed Tax ID Order Meta (Woocommerce now uses get_post_meta) -
woocommerce-super-simple-tax-exemption/trunk/simple-tax-exemption.php
r870151 r911846 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. 16 Version: 1.2 7 7 Author: Bobbie Wilson 8 8 Author URI: http://www.bobbiejwilson.com … … 57 57 58 58 function tax_exempt_field_display_admin_order_meta($order){ 59 echo '<p><strong>'.__('Tax Exempt ID').':</strong> ' . $order->order_custom_fields['Tax Exempt ID'][0]. '</p>';59 echo '<p><strong>'.__('Tax Exempt ID').':</strong> ' . get_post_meta($order->id, 'Tax Exempt ID', true) . '</p>'; 60 60 } 61 61 /*Enqueue the tax exempt trigger script*/
Note: See TracChangeset
for help on using the changeset viewer.