Changeset 1857792
- Timestamp:
- 04/13/2018 09:50:58 AM (8 years ago)
- Location:
- clientity-chatbot
- Files:
-
- 2 edited
- 1 copied
-
tags/1.0.7 (copied) (copied from clientity-chatbot/trunk)
-
tags/1.0.7/clientity-chatbot.php (modified) (4 diffs)
-
trunk/clientity-chatbot.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
clientity-chatbot/tags/1.0.7/clientity-chatbot.php
r1736448 r1857792 5 5 Description: Chatbot to convert visits into leads 6 6 Author: Clientity 7 Version: 1.0. 67 Version: 1.0.7 8 8 */ 9 9 … … 14 14 15 15 if ( ! defined( 'CLIENTITY_PLUGIN_NAME' ) ) define( 'CLIENTITY_PLUGIN_NAME', 'clientity-chatbot' ); 16 if ( ! defined( 'CLIENTITY_PLUGIN_VERSION' ) ) define( 'CLIENTITY_PLUGIN_VERSION', '1.0. 6' );16 if ( ! defined( 'CLIENTITY_PLUGIN_VERSION' ) ) define( 'CLIENTITY_PLUGIN_VERSION', '1.0.7' ); 17 17 18 18 … … 45 45 function clientity_enqueue_scripts() 46 46 { 47 if ( is_admin() ) return; // only for admin area 47 if ( is_admin() ) return; // Hide in admin area 48 49 if( current_user_can('administrator') ) return; // Hide if user is logged as admin 48 50 49 51 $show_widget = false; … … 79 81 $show_widget = false; 80 82 } 83 84 85 // Check excluded posts: 86 87 // TO DO 88 81 89 82 90 -
clientity-chatbot/trunk/clientity-chatbot.php
r1736448 r1857792 5 5 Description: Chatbot to convert visits into leads 6 6 Author: Clientity 7 Version: 1.0. 67 Version: 1.0.7 8 8 */ 9 9 … … 14 14 15 15 if ( ! defined( 'CLIENTITY_PLUGIN_NAME' ) ) define( 'CLIENTITY_PLUGIN_NAME', 'clientity-chatbot' ); 16 if ( ! defined( 'CLIENTITY_PLUGIN_VERSION' ) ) define( 'CLIENTITY_PLUGIN_VERSION', '1.0. 6' );16 if ( ! defined( 'CLIENTITY_PLUGIN_VERSION' ) ) define( 'CLIENTITY_PLUGIN_VERSION', '1.0.7' ); 17 17 18 18 … … 45 45 function clientity_enqueue_scripts() 46 46 { 47 if ( is_admin() ) return; // only for admin area 47 if ( is_admin() ) return; // Hide in admin area 48 49 if( current_user_can('administrator') ) return; // Hide if user is logged as admin 48 50 49 51 $show_widget = false; … … 79 81 $show_widget = false; 80 82 } 83 84 85 // Check excluded posts: 86 87 // TO DO 88 81 89 82 90
Note: See TracChangeset
for help on using the changeset viewer.