Plugin Directory

Changeset 870151


Ignore:
Timestamp:
03/05/2014 05:41:02 PM (12 years ago)
Author:
poldira
Message:

Fixing previously reported bug that didn't make it into the repository

Location:
woocommerce-super-simple-tax-exemption
Files:
8 added
2 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-super-simple-tax-exemption/trunk/simple-tax-exemption.php

    r855733 r870151  
    44   Plugin URI: http://www.bobbiejwilson.com/woocommerce-super-simple-tax-exempt
    55   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.0
     6   Version: 1.1
    77   Author: Bobbie Wilson
    88   Author URI: http://www.bobbiejwilson.com
     
    1111
    1212/*Tax Exempt Checkout for Woocommerce */
    13 if (class_exists('Woocommerce')) {
     13if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
    1414add_action('woocommerce_before_order_notes', 'taxexempt_before_order_notes' );
    1515function taxexempt_before_order_notes( $checkout ) {
Note: See TracChangeset for help on using the changeset viewer.