Changeset 2385969
- Timestamp:
- 09/21/2020 11:30:32 PM (5 years ago)
- Location:
- shopybot-woocommerce/trunk
- Files:
-
- 3 edited
-
includes/class-wc-shopybot-export.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
shopybot-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shopybot-woocommerce/trunk/includes/class-wc-shopybot-export.php
r2317539 r2385969 218 218 foreach($terms as $key => $cat) { 219 219 $parent = ($cat->parent) ? 'parentId="' . $cat->parent . '"' : ''; 220 $yml .= "\t\t" . '<category id="' . $cat->term_id . '" ' . $parent . '> ' . htmlspecialchars($cat->name) . '</category>' . "\n";220 $yml .= "\t\t" . '<category id="' . $cat->term_id . '" ' . $parent . '><![CDATA[' . htmlspecialchars($cat->name) . ']]></category>' . "\n"; 221 221 } 222 222 … … 670 670 <yml_catalog date="' . date("Y-m-d H:i") . '"> 671 671 <shop> 672 <name> ' . $name . '</name>673 <company> ' . $desc . '</company>674 <url> ' . $siteurl . '</url>672 <name><![CDATA[' . $name . ']]></name> 673 <company><![CDATA[' . $desc . ']]></company> 674 <url><![CDATA[' . $siteurl . ']]></url> 675 675 <currencies> 676 676 ' . $this->renderCurrency() . ' -
shopybot-woocommerce/trunk/readme.txt
r2317539 r2385969 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 Tested up to: 5. 4.16 Stable tag: 1.0.1 75 Tested up to: 5.5.1 6 Stable tag: 1.0.18 7 7 License: GNU GENERAL PUBLIC LICENSE Version 3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 99 99 == Changelog == 100 100 101 = 1.0.18 = 102 - Fix for export XML file 103 101 104 = 1.0.17 = 102 105 - Fix for the empty products case -
shopybot-woocommerce/trunk/shopybot-woocommerce.php
r2317539 r2385969 10 10 * 11 11 * @link https://www.shopybot.com 12 * @since 1.0.1 712 * @since 1.0.18 13 13 * @package Shopybot_Woocommerce 14 14 * … … 17 17 * Plugin URI: https://www.shopybot.com/connect-bot/woocommerce 18 18 * Description: Few clicks to create a Facebook Messenger Chatbot for your WooCommerce shop! Automatic products import, 12 languages supported, add product to WooCommerce cart from Messenger, fast checkout! 19 * Version: 1.0.1 719 * Version: 1.0.18 20 20 * Author: ShopyBot 21 21 * Text Domain: shopybot-woocommerce
Note: See TracChangeset
for help on using the changeset viewer.