Changeset 3425403
- Timestamp:
- 12/22/2025 01:30:46 PM (3 months ago)
- Location:
- ansera-search
- Files:
-
- 2 deleted
- 2 edited
- 5 copied
-
tags/1.1.13 (copied) (copied from ansera-search/trunk)
-
tags/1.1.13/ansera_search.php (copied) (copied from ansera-search/trunk/ansera_search.php) (3 diffs)
-
tags/1.1.13/css/ansera_search_admin_settings.css (copied) (copied from ansera-search/trunk/css/ansera_search_admin_settings.css)
-
tags/1.1.13/embed.js (deleted)
-
tags/1.1.13/includes/action-scheduler (deleted)
-
tags/1.1.13/js/ansera_search_admin.js (copied) (copied from ansera-search/trunk/js/ansera_search_admin.js)
-
tags/1.1.13/readme.txt (copied) (copied from ansera-search/trunk/readme.txt) (2 diffs)
-
trunk/ansera_search.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ansera-search/tags/1.1.13/ansera_search.php
r3425215 r3425403 3 3 * Plugin Name: Ansera Search 4 4 * Description: Ansera AI-powered search plugin provides answers based on your existing Wordpress content. 5 * Version: 1.1.1 25 * Version: 1.1.13 6 6 * Author: Ansera.AI 7 7 * Author URI: https://www.ansera.ai/ … … 2294 2294 $url = get_permalink($post_id); // Get full URL 2295 2295 $web_data = $post->web_data ?? ''; // Full post content 2296 2297 // giving support to Bricks wordpress 2298 if(empty($web_data)) 2299 { 2300 $bricks_content = get_post_meta($post->ID, '_bricks_page_content', true); 2301 if (!empty($bricks_content)) { 2302 $web_data = json_decode($bricks_content, true); 2303 } 2304 } 2305 2296 2306 $page_title = $post->page_title; // Post title 2297 2307 $json_array = [ … … 3106 3116 return $theme_colors; 3107 3117 } 3108 3109 3110 3111 3112 3118 ?> -
ansera-search/tags/1.1.13/readme.txt
r3425215 r3425403 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.2 7 Stable tag: 1.1.1 27 Stable tag: 1.1.13 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 96 96 97 97 == Changelog == 98 = 1.1.1 2=98 = 1.1.13 = 99 99 * Given support to enable Google/Zoho/Calendly Meeting module. Enable it from Ansera customer portal 100 100 -
ansera-search/trunk/ansera_search.php
r3425215 r3425403 3 3 * Plugin Name: Ansera Search 4 4 * Description: Ansera AI-powered search plugin provides answers based on your existing Wordpress content. 5 * Version: 1.1.1 25 * Version: 1.1.13 6 6 * Author: Ansera.AI 7 7 * Author URI: https://www.ansera.ai/ … … 2294 2294 $url = get_permalink($post_id); // Get full URL 2295 2295 $web_data = $post->web_data ?? ''; // Full post content 2296 2297 // giving support to Bricks wordpress 2298 if(empty($web_data)) 2299 { 2300 $bricks_content = get_post_meta($post->ID, '_bricks_page_content', true); 2301 if (!empty($bricks_content)) { 2302 $web_data = json_decode($bricks_content, true); 2303 } 2304 } 2305 2296 2306 $page_title = $post->page_title; // Post title 2297 2307 $json_array = [ … … 3106 3116 return $theme_colors; 3107 3117 } 3108 3109 3110 3111 3112 3118 ?> -
ansera-search/trunk/readme.txt
r3425215 r3425403 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.2 7 Stable tag: 1.1.1 27 Stable tag: 1.1.13 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 96 96 97 97 == Changelog == 98 = 1.1.1 2=98 = 1.1.13 = 99 99 * Given support to enable Google/Zoho/Calendly Meeting module. Enable it from Ansera customer portal 100 100
Note: See TracChangeset
for help on using the changeset viewer.