Changeset 3355614
- Timestamp:
- 09/03/2025 06:41:24 PM (7 months ago)
- Location:
- ultimate-faq-solution/trunk
- Files:
-
- 5 edited
-
inc/Chatbot.php (modified) (1 diff)
-
inc/languages/ultimate-faq-solution.pot (modified) (2 diffs)
-
init.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-faq-solution/trunk/inc/Chatbot.php
r3338582 r3355614 98 98 'header_background_color' => cmb2_get_option( 'ufaqsw_chatbot_settings', 'header_background_color' ), 99 99 'header_text_color' => cmb2_get_option( 'ufaqsw_chatbot_settings', 'header_text_color' ), 100 'body_text' => wp_kses_post( 101 apply_filters( 102 'the_content', 103 cmb2_get_option( 'ufaqsw_chatbot_settings', 'body_text' ) 104 ) 105 ), 100 'body_text' => wpautop( cmb2_get_option( 'ufaqsw_chatbot_settings', 'body_text' ) ), 106 101 'preloader_text' => cmb2_get_option( 'ufaqsw_chatbot_settings', 'preloader_text' ), 107 102 'loading_animation_color' => cmb2_get_option( 'ufaqsw_chatbot_settings', 'loading_animation_color' ) ? cmb2_get_option( 'ufaqsw_chatbot_settings', 'loading_animation_color' ) : '#222', -
ultimate-faq-solution/trunk/inc/languages/ultimate-faq-solution.pot
r3338582 r3355614 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Ultimate FAQ Solution 1.7. 0\n"5 "Project-Id-Version: Ultimate FAQ Solution 1.7.1\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/ultimate-faq-solution\n" 8 "POT-Creation-Date: 2025-0 8-03 18:54:12+00:00\n"8 "POT-Creation-Date: 2025-09-03 18:29:45+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 75 75 msgstr "" 76 76 77 #: inc/Chatbot.php:10 877 #: inc/Chatbot.php:103 78 78 msgid "Back" 79 79 msgstr "" 80 80 81 #: inc/Chatbot.php:10 9inc/admin/chatbot.php:17381 #: inc/Chatbot.php:104 inc/admin/chatbot.php:173 82 82 msgid "Close the window" 83 83 msgstr "" 84 84 85 #: inc/Chatbot.php:1 11inc/admin/chatbot.php:19385 #: inc/Chatbot.php:106 inc/admin/chatbot.php:193 86 86 msgid "[count] Frequently Asked Questions" 87 87 msgstr "" 88 88 89 #: inc/Chatbot.php:14 989 #: inc/Chatbot.php:144 90 90 msgid "No FAQs found." 91 91 msgstr "" -
ultimate-faq-solution/trunk/init.php
r3338582 r3355614 10 10 * 11 11 * Plugin Name: Ultimate FAQ Solution 12 * Version: 1.7. 012 * Version: 1.7.1 13 13 * Plugin URI: https://www.braintum.com/ultimate-faq-solution/ 14 14 * Description: A WordPress plugin to create, organize, and display FAQs with responsive layouts and styles. … … 34 34 * Use `plugin_dir_path` and `plugin_dir_url` only when necessary to reduce overhead. 35 35 */ 36 define( 'UFAQSW_VERSION', '1.7. 0' );36 define( 'UFAQSW_VERSION', '1.7.1' ); 37 37 define( 'UFAQSW_PRFX', 'ufaqsw' ); 38 38 define( 'UFAQSW_BASE', plugin_basename( __FILE__ ) ); -
ultimate-faq-solution/trunk/readme.txt
r3338582 r3355614 5 5 Requires at least: 5.1 6 6 Tested up to: 6.8.2 7 Stable tag: 1.7. 07 Stable tag: 1.7.1 8 8 Requires PHP: 7.4.0 9 9 License: GPLv2 or later … … 135 135 136 136 == Changelog == 137 =1.7.1= 138 * Fixed: Page information incorrectly populating inside the FAQ Assistant area. 139 * Improved: Data handling to ensure only relevant content is displayed in the chatbot assistant interface. 137 140 138 141 =1.7.0= -
ultimate-faq-solution/trunk/vendor/composer/installed.php
r3338582 r3355614 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' d48b2a43d0e8baf7e7019e533f566bea97b7f579',6 'reference' => '67bdcb706f0b37ab316a4aac9c1a3d89e1ea3364', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 23 23 'pretty_version' => 'dev-main', 24 24 'version' => 'dev-main', 25 'reference' => ' d48b2a43d0e8baf7e7019e533f566bea97b7f579',25 'reference' => '67bdcb706f0b37ab316a4aac9c1a3d89e1ea3364', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.