Plugin Directory

Changeset 3289682


Ignore:
Timestamp:
05/08/2025 09:49:46 AM (10 months ago)
Author:
visidea
Message:

2.1.18

Location:
visidea
Files:
215 added
4 edited

Legend:

Unmodified
Added
Removed
  • visidea/trunk/includes/class-visidea.php

    r3116139 r3289682  
    149149    $this->loader->add_filter('the_content', $plugin_public, 'callback_the_content', 20);
    150150
     151    $this->loader->add_action('woocommerce_after_single_product_summary', $plugin_public, 'print_visidea_recommendations', 20);
     152
    151153    $this->loader->add_action('wp_body_open', $plugin_public, 'insert_search_tag', 20, 1);
    152154
  • visidea/trunk/public/class-visidea-public.php

    r3288516 r3289682  
    135135
    136136  /**
     137   * Print Visidea recommendations.
     138   *
     139   * @since 2.1.18
     140   */
     141  public function print_visidea_recommendations() {
     142    if (is_product()) {
     143      echo $this->callback_the_content('');
     144    }
     145  }
     146
     147  /**
    137148   * Insert the search tag in the HTML.
    138149   *
  • visidea/trunk/readme.txt

    r3288516 r3289682  
    66Tested up to: 6.6
    77Requires PHP: 7.0
    8 Stable tag: 2.1.17
     8Stable tag: 2.1.18
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9696
    9797== Changelog ==
     98
     99= 2.1.18 2025-05-08 =
     100Product detail page output theme fix
    98101
    99102= 2.1.17 2025-05-06 =
  • visidea/trunk/visidea.php

    r3288516 r3289682  
    55 * Plugin URI: https://visidea.ai
    66 * Description: Visidea is the search and recommendations plugin for WooCommerce. Visidea improves UX and increases the revenues of your website.
    7  * Version: 2.1.17
     7 * Version: 2.1.18
    88 * Author: Inferendo
    99 * Author URI: https://visidea.ai
     
    2727 * Current Visidea version.
    2828 */
    29 define('VISIDEA_VERSION', '2.1.17');
     29define('VISIDEA_VERSION', '2.1.18');
    3030
    3131/**
Note: See TracChangeset for help on using the changeset viewer.