Plugin Directory

Changeset 3425403


Ignore:
Timestamp:
12/22/2025 01:30:46 PM (3 months ago)
Author:
ansera01
Message:

Release version 1.1.13

Location:
ansera-search
Files:
2 deleted
2 edited
5 copied

Legend:

Unmodified
Added
Removed
  • ansera-search/tags/1.1.13/ansera_search.php

    r3425215 r3425403  
    33 * Plugin Name: Ansera Search
    44 * Description: Ansera AI-powered search plugin provides answers based on your existing Wordpress content.
    5  * Version: 1.1.12
     5 * Version: 1.1.13
    66 * Author: Ansera.AI
    77 * Author URI:  https://www.ansera.ai/
     
    22942294    $url = get_permalink($post_id); // Get full URL
    22952295    $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   
    22962306    $page_title = $post->page_title; // Post title
    22972307    $json_array =  [
     
    31063116    return $theme_colors;
    31073117}
    3108 
    3109 
    3110 
    3111 
    31123118?>
  • ansera-search/tags/1.1.13/readme.txt

    r3425215 r3425403  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 1.1.12
     7Stable tag: 1.1.13
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9696
    9797== Changelog ==
    98 = 1.1.12 =
     98= 1.1.13 =
    9999* Given support to enable Google/Zoho/Calendly Meeting module. Enable it from Ansera customer portal
    100100
  • ansera-search/trunk/ansera_search.php

    r3425215 r3425403  
    33 * Plugin Name: Ansera Search
    44 * Description: Ansera AI-powered search plugin provides answers based on your existing Wordpress content.
    5  * Version: 1.1.12
     5 * Version: 1.1.13
    66 * Author: Ansera.AI
    77 * Author URI:  https://www.ansera.ai/
     
    22942294    $url = get_permalink($post_id); // Get full URL
    22952295    $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   
    22962306    $page_title = $post->page_title; // Post title
    22972307    $json_array =  [
     
    31063116    return $theme_colors;
    31073117}
    3108 
    3109 
    3110 
    3111 
    31123118?>
  • ansera-search/trunk/readme.txt

    r3425215 r3425403  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 1.1.12
     7Stable tag: 1.1.13
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9696
    9797== Changelog ==
    98 = 1.1.12 =
     98= 1.1.13 =
    9999* Given support to enable Google/Zoho/Calendly Meeting module. Enable it from Ansera customer portal
    100100
Note: See TracChangeset for help on using the changeset viewer.