Changeset 2295381
- Timestamp:
- 04/30/2020 01:34:34 PM (6 years ago)
- Location:
- collectchat
- Files:
-
- 2 edited
- 7 copied
-
tags/2.2.3 (copied) (copied from collectchat/trunk)
-
tags/2.2.3/collect.php (copied) (copied from collectchat/trunk/collect.php) (2 diffs)
-
tags/2.2.3/deactivation-feedback (copied) (copied from collectchat/trunk/deactivation-feedback)
-
tags/2.2.3/meta.php (copied) (copied from collectchat/trunk/meta.php)
-
tags/2.2.3/options.php (copied) (copied from collectchat/trunk/options.php)
-
tags/2.2.3/readme.txt (copied) (copied from collectchat/trunk/readme.txt) (2 diffs)
-
tags/2.2.3/sidebar.php (copied) (copied from collectchat/trunk/sidebar.php)
-
trunk/collect.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
collectchat/tags/2.2.3/collect.php
r2288115 r2295381 2 2 /** 3 3 * Plugin Name: Collect.chat - Beautiful Chatbot for Lead Generation and Data Collection 4 * Version: 2.2. 24 * Version: 2.2.3 5 5 * Plugin URI: https://collect.chat 6 6 * Description: Chatbots are the simplest, easiest way to collect leads & data from visitors. Create free chatbot without coding using Collect.chat. Never miss an opportunity by engaging every site visitor. … … 184 184 // default value for settings 185 185 $initialSettings = get_option('collectchat-plugin-settings'); 186 if ($initialSettings === false || !$initialSettings['showOn'] || !$initialSettings['installedOn'])186 if ($initialSettings === false) 187 187 { 188 188 $initialSettings['showOn'] = 'all'; 189 189 $initialSettings['installedOn'] = date("Y/m/d"); 190 190 update_option('collectchat-plugin-settings', $initialSettings); 191 } 192 191 } 192 if($initialSettings === true && !$initialSettings['showOn']) { 193 $initialSettings['showOn'] = 'all'; 194 update_option('collectchat-plugin-settings', $initialSettings); 195 } 196 if($initialSettings === true && !$initialSettings['installedOn']) { 197 $initialSettings['installedOn'] = date("Y/m/d"); 198 update_option('collectchat-plugin-settings', $initialSettings); 199 } 200 193 201 // add meta box to all post types 194 202 add_meta_box('cc_all_post_meta', esc_html__('Collect.chat Snippet:', 'collectchat-settings') , 'collectchat_meta_setup', array( -
collectchat/tags/2.2.3/readme.txt
r2288115 r2295381 1 1 === Beautiful Chatbot for Lead Generation and Data Collection – Collect.chat === 2 2 Contributors: collectchat 3 Tags: chatbot, bot, lead generation, chat widget, landing page3 Tags: chatbot, bot, chat bot, lead generation, chat widget 4 4 Requires at least: 4.5.0 5 5 Tested up to: 5.4 6 Stable tag: 2.2. 26 Stable tag: 2.2.3 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 374 374 = 2.2.1 = 375 375 * Readme and minor ui updated 376 377 = 2.2.3 = 378 * 'Show on pages' saving bug is fixed 379 * Readme updated -
collectchat/trunk/collect.php
r2288115 r2295381 2 2 /** 3 3 * Plugin Name: Collect.chat - Beautiful Chatbot for Lead Generation and Data Collection 4 * Version: 2.2. 24 * Version: 2.2.3 5 5 * Plugin URI: https://collect.chat 6 6 * Description: Chatbots are the simplest, easiest way to collect leads & data from visitors. Create free chatbot without coding using Collect.chat. Never miss an opportunity by engaging every site visitor. … … 184 184 // default value for settings 185 185 $initialSettings = get_option('collectchat-plugin-settings'); 186 if ($initialSettings === false || !$initialSettings['showOn'] || !$initialSettings['installedOn'])186 if ($initialSettings === false) 187 187 { 188 188 $initialSettings['showOn'] = 'all'; 189 189 $initialSettings['installedOn'] = date("Y/m/d"); 190 190 update_option('collectchat-plugin-settings', $initialSettings); 191 } 192 191 } 192 if($initialSettings === true && !$initialSettings['showOn']) { 193 $initialSettings['showOn'] = 'all'; 194 update_option('collectchat-plugin-settings', $initialSettings); 195 } 196 if($initialSettings === true && !$initialSettings['installedOn']) { 197 $initialSettings['installedOn'] = date("Y/m/d"); 198 update_option('collectchat-plugin-settings', $initialSettings); 199 } 200 193 201 // add meta box to all post types 194 202 add_meta_box('cc_all_post_meta', esc_html__('Collect.chat Snippet:', 'collectchat-settings') , 'collectchat_meta_setup', array( -
collectchat/trunk/readme.txt
r2288115 r2295381 1 1 === Beautiful Chatbot for Lead Generation and Data Collection – Collect.chat === 2 2 Contributors: collectchat 3 Tags: chatbot, bot, lead generation, chat widget, landing page3 Tags: chatbot, bot, chat bot, lead generation, chat widget 4 4 Requires at least: 4.5.0 5 5 Tested up to: 5.4 6 Stable tag: 2.2. 26 Stable tag: 2.2.3 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 374 374 = 2.2.1 = 375 375 * Readme and minor ui updated 376 377 = 2.2.3 = 378 * 'Show on pages' saving bug is fixed 379 * Readme updated
Note: See TracChangeset
for help on using the changeset viewer.