Changeset 2277832
- Timestamp:
- 04/06/2020 10:49:08 PM (6 years ago)
- Location:
- shopybot-woocommerce/trunk
- Files:
-
- 3 edited
-
includes/class-wc-shopybot-integration.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
shopybot-woocommerce.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shopybot-woocommerce/trunk/includes/class-wc-shopybot-integration.php
r2273744 r2277832 315 315 'id' => 'export_url', 316 316 ); 317 318 } 319 317 } 320 318 321 319 /** -
shopybot-woocommerce/trunk/readme.txt
r2276735 r2277832 1 === ShopyBot - FacebookChatbot for your WooCommerce ===1 === ShopyBot - Messenger Chatbot for your WooCommerce === 2 2 Contributors: ShopyBot.com 3 3 Tags: bot, e-commerce, chat-bot, chatbot, messenger, facebook, woocommerce, integration, ShopyBot, ai, machine learning, artificial intelligence 4 4 Requires at least: 3.9 5 5 Tested up to: 5.4 6 Stable tag: 1.0.1 26 Stable tag: 1.0.13 7 7 License: GNU GENERAL PUBLIC LICENSE Version 3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html 9 9 10 ShopyBot - FacebookChatbot for your WooCommerce store.10 ShopyBot - Messenger Chatbot for your WooCommerce store. 11 11 Easy way to sell your products in Facebook Messenger. 12 12 … … 100 100 == Changelog == 101 101 102 = 1.0.13 = 103 - Removed Facebook word from plugin name as of Licensing/Trademark Violation issue 104 102 105 = 1.0.12 = 103 106 - Added plugin internationalization … … 109 112 110 113 = 1.0.10 = 111 Added uninstall hook114 - Added uninstall hook 112 115 113 116 = 1.0.9 = 114 1. fixed empty products error115 2. fixed screenshots116 3. added auto checkout from chatbot117 4. updated readme.txt117 - Fixed empty products error 118 - Fixed screenshots 119 - Added auto checkout from chatbot 120 - Updated readme.txt 118 121 119 122 = 1.0.8 = -
shopybot-woocommerce/trunk/shopybot-woocommerce.php
r2276735 r2277832 2 2 3 3 /** 4 * Shopybot - FacebookChatBot for WooCommerce4 * Shopybot - Messenger ChatBot for WooCommerce 5 5 * 6 6 * This file is read by WordPress to generate the plugin information in the plugin … … 10 10 * 11 11 * @link https://www.shopybot.com 12 * @since 1.0.1 212 * @since 1.0.13 13 13 * @package Shopybot_Woocommerce 14 14 * 15 15 * @wordpress-plugin 16 * Plugin Name: ShopyBot - FacebookChatBot for WooCommerce16 * Plugin Name: ShopyBot - Messenger ChatBot for WooCommerce 17 17 * Plugin URI: https://www.shopybot.com/connect-bot/woocommerce 18 * Description: Create a ChatBot and sell your products in FacebookMessenger19 * Version: 1.0.1 218 * Description: Create a ChatBot and sell your products in Messenger 19 * Version: 1.0.13 20 20 * Author: ShopyBot 21 21 * Text Domain: shopybot-woocommerce … … 50 50 include_once 'includes/class-wc-shopybot-functions.php'; 51 51 52 add_action( 'plugins_loaded', array($this, 'shopybot_woocommerce_load_plugin_textdomain') ); 53 52 54 // Checks if WooCommerce is installed. 53 55 if(class_exists('WC_Integration')) { … … 55 57 include_once 'includes/class-wc-shopybot-integration.php'; 56 58 include_once 'includes/class-wc-shopybot-export.php'; 57 58 add_action( 'plugins_loaded', 'shopybot_woocommerce_load_plugin_textdomain' );59 60 // Load translations61 add_action( 'plugins_loaded', 'shopybot_load_textdomain' );62 59 63 60 // Register the integration.
Note: See TracChangeset
for help on using the changeset viewer.