Changeset 3450254
- Timestamp:
- 01/30/2026 09:07:45 AM (2 months ago)
- Location:
- emmerce-chatbot
- Files:
-
- 1 added
- 2 deleted
- 3 edited
-
assets/icon-128x128.jpg (deleted)
-
assets/icon-128x128.png (added)
-
trunk/dist/assets/main-Dh6_BUTF.js (deleted)
-
trunk/emmerce-chatbot.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/App.svelte (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
emmerce-chatbot/trunk/emmerce-chatbot.php
r3449880 r3450254 4 4 * Plugin URI: https://github.com/uzziellite/emmerce-chatbot 5 5 * Description: Adds a professional AI chatbot managed by Emmerce to your website to manage communication between you and your customers. You need to have a valid Emmerce account to use this plugin. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: Uzziel Lite 8 8 * Author URI: https://github.com/uzziellite … … 106 106 plugin_dir_url(__FILE__) . 'dist/' . $js_file, 107 107 array(), 108 '1.0. 1',108 '1.0.2', 109 109 true 110 110 ); … … 122 122 plugin_dir_url(__FILE__) . 'dist/' . $css_file, 123 123 array(), 124 '1.0. 1'124 '1.0.2' 125 125 ); 126 126 … … 326 326 plugin_dir_url(__FILE__) . 'src/admin-style.css', 327 327 array(), 328 '1.0. 1'328 '1.0.2' 329 329 ); 330 330 } -
emmerce-chatbot/trunk/readme.txt
r3449892 r3450254 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 License: GNU General Public License v3.0 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 54 54 == Changelog == 55 55 56 = 1.0.2 = 57 * Fixed wrong asset pushed. 58 56 59 = 1.0.1 = 57 60 * Fixed CSS queuing for proper stylesheet loading. … … 63 66 64 67 == Upgrade Notice == 68 69 = 1.0.2 = 70 Bug fix. An asset failed to be pushed causing plugin to fail 65 71 66 72 = 1.0.1 = -
emmerce-chatbot/trunk/src/App.svelte
r3449880 r3450254 251 251 const apiResponse = await sendRequestToApi(endpoint, `${emmerceChatbot.accessUrl}/message/${clientId}?mode=${emmerceChatbot.debugMode}`, nonce, 'POST', params); 252 252 253 console.log(`${emmerceChatbot.accessUrl}/waba/send-website-message/${clientId}/`);253 //console.log(`${emmerceChatbot.accessUrl}/waba/send-website-message/${clientId}/`); 254 254 255 255 if(apiResponse.data?.status === "sent"){ … … 358 358 } 359 359 360 console.log('Setting env variables');360 //console.log('Setting env variables'); 361 361 nonce = emmerceChatbot.nonce; 362 362 clientId = emmerceChatbot.clientId; … … 364 364 endpoint = emmerceChatbot.ajaxurl; 365 365 isOpen = emmerceChatbot.isOpen || false; 366 console.log('Variables set:', { nonce, clientId, position, endpoint, isOpen });366 //console.log('Variables set:', { nonce, clientId, position, endpoint, isOpen }); 367 367 368 368 /** … … 378 378 chatButtonPingColor = chatSettings?.website_color 379 379 380 console.log('Loaded options are: ', chatSettings, 'and url called is: ', `${emmerceChatbot.accessUrl}/start/${clientId}?mode=${emmerceChatbot.debugMode}`);380 //console.log('Loaded options are: ', chatSettings, 'and url called is: ', `${emmerceChatbot.accessUrl}/start/${clientId}?mode=${emmerceChatbot.debugMode}`); 381 381 } catch (error) { 382 382 console.error('Error:', error);
Note: See TracChangeset
for help on using the changeset viewer.