Changeset 2353566
- Timestamp:
- 08/06/2020 06:13:46 AM (6 years ago)
- Location:
- collectchat
- Files:
-
- 2 edited
- 7 copied
-
tags/2.2.4 (copied) (copied from collectchat/trunk)
-
tags/2.2.4/collect.php (copied) (copied from collectchat/trunk/collect.php) (4 diffs)
-
tags/2.2.4/deactivation-feedback (copied) (copied from collectchat/trunk/deactivation-feedback)
-
tags/2.2.4/meta.php (copied) (copied from collectchat/trunk/meta.php)
-
tags/2.2.4/options.php (copied) (copied from collectchat/trunk/options.php)
-
tags/2.2.4/readme.txt (copied) (copied from collectchat/trunk/readme.txt) (2 diffs)
-
tags/2.2.4/sidebar.php (copied) (copied from collectchat/trunk/sidebar.php)
-
trunk/collect.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
collectchat/tags/2.2.4/collect.php
r2295381 r2353566 1 1 <?php 2 2 /** 3 * Plugin Name: Collect.chat - BeautifulChatbot for Lead Generation and Data Collection4 * Version: 2.2. 33 * Plugin Name: Collect.chat - Chatbot for Lead Generation and Data Collection 4 * Version: 2.2.4 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. … … 50 50 51 51 // Toaster if not configured 52 $settings = get_option('collectchat-plugin-settings'); 53 if (!(isset($settings) && !empty($settings['script'])) && !(isset($_GET['page']) && $_GET['page'] == 'collectchat')) 54 { 55 add_action('admin_notices', array( 56 $this, 57 'collectchat_settings_message' 58 )); 59 } 52 add_action('admin_notices', array($this, 'collectchat_settings_message')); 53 60 54 61 55 // Activation page auto redirect … … 125 119 function collectchat_settings_message() 126 120 { 121 $settings = get_option('collectchat-plugin-settings'); 122 $postmeta_query_args = array( 123 'post_type' => 'post', 124 'meta_key' => '_inpost_head_script', 125 ); 126 $postmeta_query = new WP_Query( $postmeta_query_args ); 127 if (!(isset($settings) && !empty($settings['script'])) && !$postmeta_query->have_posts() && !(isset($_GET['page']) && $_GET['page'] == 'collectchat')) 128 { 127 129 ?> 128 130 <div class="notice notice-error" style="display: flex;"> … … 136 138 </div> 137 139 <?php 140 } 138 141 } 139 142 -
collectchat/tags/2.2.4/readme.txt
r2295381 r2353566 1 === BeautifulChatbot for Lead Generation and Data Collection – Collect.chat ===1 === Chatbot for Lead Generation and Data Collection – Collect.chat === 2 2 Contributors: collectchat 3 3 Tags: chatbot, bot, chat bot, lead generation, chat widget 4 4 Requires at least: 4.5.0 5 Tested up to: 5. 46 Stable tag: 2.2. 35 Tested up to: 5.5 6 Stable tag: 2.2.4 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 378 378 * 'Show on pages' saving bug is fixed 379 379 * Readme updated 380 381 = 2.2.4 = 382 * Support for WordPress 5.5 383 * Removed unwanted error message when bot is installed only in posts -
collectchat/trunk/collect.php
r2295381 r2353566 1 1 <?php 2 2 /** 3 * Plugin Name: Collect.chat - BeautifulChatbot for Lead Generation and Data Collection4 * Version: 2.2. 33 * Plugin Name: Collect.chat - Chatbot for Lead Generation and Data Collection 4 * Version: 2.2.4 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. … … 50 50 51 51 // Toaster if not configured 52 $settings = get_option('collectchat-plugin-settings'); 53 if (!(isset($settings) && !empty($settings['script'])) && !(isset($_GET['page']) && $_GET['page'] == 'collectchat')) 54 { 55 add_action('admin_notices', array( 56 $this, 57 'collectchat_settings_message' 58 )); 59 } 52 add_action('admin_notices', array($this, 'collectchat_settings_message')); 53 60 54 61 55 // Activation page auto redirect … … 125 119 function collectchat_settings_message() 126 120 { 121 $settings = get_option('collectchat-plugin-settings'); 122 $postmeta_query_args = array( 123 'post_type' => 'post', 124 'meta_key' => '_inpost_head_script', 125 ); 126 $postmeta_query = new WP_Query( $postmeta_query_args ); 127 if (!(isset($settings) && !empty($settings['script'])) && !$postmeta_query->have_posts() && !(isset($_GET['page']) && $_GET['page'] == 'collectchat')) 128 { 127 129 ?> 128 130 <div class="notice notice-error" style="display: flex;"> … … 136 138 </div> 137 139 <?php 140 } 138 141 } 139 142 -
collectchat/trunk/readme.txt
r2295381 r2353566 1 === BeautifulChatbot for Lead Generation and Data Collection – Collect.chat ===1 === Chatbot for Lead Generation and Data Collection – Collect.chat === 2 2 Contributors: collectchat 3 3 Tags: chatbot, bot, chat bot, lead generation, chat widget 4 4 Requires at least: 4.5.0 5 Tested up to: 5. 46 Stable tag: 2.2. 35 Tested up to: 5.5 6 Stable tag: 2.2.4 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 378 378 * 'Show on pages' saving bug is fixed 379 379 * Readme updated 380 381 = 2.2.4 = 382 * Support for WordPress 5.5 383 * Removed unwanted error message when bot is installed only in posts
Note: See TracChangeset
for help on using the changeset viewer.