Plugin Directory

Changeset 1698712


Ignore:
Timestamp:
07/19/2017 09:09:59 AM (9 years ago)
Author:
visual4
Message:

Version 1.0.1 with WPML Bugfix

Location:
woo-1crm-extensions
Files:
39 added
5 edited

Legend:

Unmodified
Added
Removed
  • woo-1crm-extensions/trunk/README.txt

    r1668684 r1698712  
    44Requires at least: 3.1.0
    55Tested up to: 4.7.2
    6 Stable tag: 1.0.
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7272== Changelog ==
    7373
     74= 1.0.1 =
     75Bugfix for integration without WPML
     76
     77
    7478= 1.0 =
    7579Following Fieldtypes are available and synchronized to 1CRM:
  • woo-1crm-extensions/trunk/admin/class-woo-1crm-extensions-webhookhandler.php

    r1668684 r1698712  
    9595    {
    9696        global $sitepress;
    97         $default_lang = $sitepress->get_default_language();
     97        if(!empty($sitepress))
     98            $default_lang = $sitepress->get_default_language();
    9899
    99100        if ($taxonomy != 'product_cat' || !empty($default_lang) && $default_lang != ICL_LANGUAGE_CODE)
  • woo-1crm-extensions/trunk/includes/class-woo-1crm-extensions.php

    r1668684 r1698712  
    7979
    8080        $this->plugin_name = 'woo-1crm-extensions';
    81         $this->version = '1.0.0';
     81        $this->version = '1.0.1';
    8282
    8383        $this->load_dependencies();
  • woo-1crm-extensions/trunk/public/class-woo-1crm-extensions-public.php

    r1668684 r1698712  
    8888         */
    8989
    90         wp_enqueue_style($this->plugin_name, plugin_dir_url(__FILE__) . 'css/woo-1crm-extensions-public.css', array(), $this->version, 'all');
     90//        wp_enqueue_style($this->plugin_name, plugin_dir_url(__FILE__) . 'css/woo-1crm-extensions-public.css', array(), $this->version, 'all');
    9191
    9292    }
     
    112112         */
    113113
    114         wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/woo-1crm-extensions-public.js', array('jquery'), $this->version, false);
     114//        wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/woo-1crm-extensions-public.js', array('jquery'), $this->version, false);
    115115
    116116    }
  • woo-1crm-extensions/trunk/woo-1crm-extensions.php

    r1668684 r1698712  
    1717 * Plugin URI:        http://www.visual4.de/woo-1crm-extensions/
    1818 * Description:       This plugin extends WooCommerce Checkout Process by custom fields an functions, defined in admin backend and and passes all informations to the WooCommerce-1CRM Interface.
    19  * Version:           1.0.0
     19 * Version:           1.0.1
    2020 * Author:            visual4 GmbH
    2121 * Author URI:        http://www.visual4.de/
Note: See TracChangeset for help on using the changeset viewer.