Changeset 3426280
- Timestamp:
- 12/23/2025 02:54:09 PM (3 months ago)
- Location:
- ansera-search
- Files:
-
- 2 deleted
- 2 edited
- 5 copied
-
tags/1.1.18 (copied) (copied from ansera-search/trunk)
-
tags/1.1.18/ansera_search.php (copied) (copied from ansera-search/trunk/ansera_search.php) (5 diffs)
-
tags/1.1.18/css/ansera_search_admin_settings.css (copied) (copied from ansera-search/trunk/css/ansera_search_admin_settings.css)
-
tags/1.1.18/embed.js (deleted)
-
tags/1.1.18/includes/action-scheduler (deleted)
-
tags/1.1.18/js/ansera_search_admin.js (copied) (copied from ansera-search/trunk/js/ansera_search_admin.js)
-
tags/1.1.18/readme.txt (copied) (copied from ansera-search/trunk/readme.txt) (2 diffs)
-
trunk/ansera_search.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ansera-search/tags/1.1.18/ansera_search.php
r3426265 r3426280 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 75 * Version: 1.1.18 6 6 * Author: Ansera.AI 7 7 * Author URI: https://www.ansera.ai/ … … 2314 2314 { 2315 2315 $type = ansera_get_builder_type($post->ID); 2316 echo "CV1:".$type;2317 2316 $web_data = ''; 2318 2317 switch($type) … … 2326 2325 } 2327 2326 $web_data = ansera_maybe_unserialize_data($web_data); 2328 echo "CV2:" . $web_data; 2327 2328 $html_blocks = array_column( 2329 array_filter( 2330 $web_data, 2331 fn($item) => !empty($item['settings']['text']) && is_string($item['settings']['text']) 2332 ), 2333 'settings' 2334 ); 2335 2336 $html_only = array_column($html_blocks, 'text'); 2337 $web_data = implode("\n\n", $html_only); 2329 2338 break; 2330 2339 case "oxygen": … … 2339 2348 break; 2340 2349 } 2341 echo "CV2:" . $web_data;2342 2350 return $web_data; 2343 2351 } … … 2368 2376 if(empty($web_data)) 2369 2377 { 2370 echo "CV4: no content";2371 2378 $web_data = ansera_fetch_page_content($post); 2372 echo "CV5: " . $web_data;2379 2373 2380 } 2374 2381 -
ansera-search/tags/1.1.18/readme.txt
r3426265 r3426280 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.2 7 Stable tag: 1.1.1 77 Stable tag: 1.1.18 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 7=98 = 1.1.18 = 99 99 * Given support to Divi, Bricks, Oxygen, Beaver theme builders. 100 100 -
ansera-search/trunk/ansera_search.php
r3426265 r3426280 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 75 * Version: 1.1.18 6 6 * Author: Ansera.AI 7 7 * Author URI: https://www.ansera.ai/ … … 2314 2314 { 2315 2315 $type = ansera_get_builder_type($post->ID); 2316 echo "CV1:".$type;2317 2316 $web_data = ''; 2318 2317 switch($type) … … 2326 2325 } 2327 2326 $web_data = ansera_maybe_unserialize_data($web_data); 2328 echo "CV2:" . $web_data; 2327 2328 $html_blocks = array_column( 2329 array_filter( 2330 $web_data, 2331 fn($item) => !empty($item['settings']['text']) && is_string($item['settings']['text']) 2332 ), 2333 'settings' 2334 ); 2335 2336 $html_only = array_column($html_blocks, 'text'); 2337 $web_data = implode("\n\n", $html_only); 2329 2338 break; 2330 2339 case "oxygen": … … 2339 2348 break; 2340 2349 } 2341 echo "CV2:" . $web_data;2342 2350 return $web_data; 2343 2351 } … … 2368 2376 if(empty($web_data)) 2369 2377 { 2370 echo "CV4: no content";2371 2378 $web_data = ansera_fetch_page_content($post); 2372 echo "CV5: " . $web_data;2379 2373 2380 } 2374 2381 -
ansera-search/trunk/readme.txt
r3426265 r3426280 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.2 7 Stable tag: 1.1.1 77 Stable tag: 1.1.18 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 7=98 = 1.1.18 = 99 99 * Given support to Divi, Bricks, Oxygen, Beaver theme builders. 100 100
Note: See TracChangeset
for help on using the changeset viewer.