Plugin Directory

Changeset 3090726


Ignore:
Timestamp:
05/22/2024 09:04:08 AM (20 months ago)
Author:
ryviu
Message:

Check compatibility with Wordpress and Woocommerce new version

Location:
ryviu/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ryviu/trunk/includes/functions.php

    r3090624 r3090726  
    374374        $product = wc_get_product($product_id);
    375375    }
    376     if(!$product){
     376    if($product){
    377377        $product_reviews_info = get_post_meta( $product->get_id(), 'ryviu_product_reviews_info', true );
    378378        if($product_reviews_info && strpos($product_reviews_info, '{}') <= -1 ){
  • ryviu/trunk/ryviu.php

    r3090624 r3090726  
    3737
    3838define('RYVIU_SHOP_DOMAIN', $domain);
    39 define('RYVIU_WOO_VERSION', '3.1.24');
     39define('RYVIU_WOO_VERSION', '3.1.25');
    4040defined('DS') ? null : define('DS', DIRECTORY_SEPARATOR);
    4141define('RYVIU_DIR_PATH', plugin_dir_path(__FILE__) );
Note: See TracChangeset for help on using the changeset viewer.