Changeset 1728224
- Timestamp:
- 09/11/2017 06:17:51 PM (8 years ago)
- Location:
- olark-live-chat/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
admin/partials/olark-wp-admin-display.php (modified) (1 diff)
-
olark-wp.php (modified) (1 diff)
-
public/class-olark-wp-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
olark-live-chat/trunk/README.txt
r1725725 r1728224 33 33 == Changelog == 34 34 35 = 1.0.8 = 36 Fixed an undefined index notice from a newly introduced setting 37 35 38 = 1.0.7 = 36 39 Added a BETA CartSaver for WooCommerce -
olark-live-chat/trunk/admin/partials/olark-wp-admin-display.php
r1725725 r1728224 29 29 $olark_site_ID = $options['olark_site_ID']; 30 30 $enable_olark = $options['enable_olark']; 31 $enable_cartsaver = $options['enable_cartsaver'];31 $enable_cartsaver = (isset($options['enable_cartsaver']) && !empty($options['enable_cartsaver'])) ? 1 : 0; 32 32 $start_expanded = $options['start_expanded']; 33 33 $detached_chat = $options['detached_chat']; -
olark-live-chat/trunk/olark-wp.php
r1725725 r1728224 17 17 * Plugin URI: https://github.com/olark/wordpress-plugin/edit/master/olark-wp/ 18 18 * Description: This plugin is designed to allow you to add an Olark chatbox to your WordPress site easily! Simply activate and add your Site ID from Olark in the settings! 19 * Version: 1.0. 719 * Version: 1.0.8 20 20 * Author: Olark 21 21 * Author URI: https://www.olark.com?rid=integration_plugin_wordpress -
olark-live-chat/trunk/public/class-olark-wp-public.php
r1725725 r1728224 124 124 'woocommerce' => $uses_woocommerce, 125 125 'woocommerce_version' => $woocommerce_version, 126 'enable_cartsaver' => $this->olark_options['enable_cartsaver']126 'enable_cartsaver' => "0" 127 127 ); 128 128 129 129 130 130 if (!empty($this->olark_options['enable_cartsaver']) && $uses_woocommerce) { 131 $dataToBePassed['enable_cartsaver'] = '1'; 131 132 $items = WC()->cart->get_cart(); 132 133 $cart_total_formatted = $this->_format_price(WC()->cart->cart_contents_total);
Note: See TracChangeset
for help on using the changeset viewer.