Plugin Directory

Changeset 3464600


Ignore:
Timestamp:
02/18/2026 07:08:06 PM (5 weeks ago)
Author:
ivole
Message:

5.101.0

Location:
customer-reviews-woocommerce
Files:
872 added
8 edited

Legend:

Unmodified
Added
Removed
  • customer-reviews-woocommerce/trunk/class-ivole.php

    r3462481 r3464600  
    8686
    8787class Ivole {
    88     const CR_VERSION = '5.100.0';
     88    const CR_VERSION = '5.101.0';
    8989
    9090    public function __construct() {
  • customer-reviews-woocommerce/trunk/css/frontend.css

    r3462481 r3464600  
    600600    margin: 0;
    601601    box-sizing: border-box;
     602    border-radius: 3px;
    602603}
    603604.cr-all-reviews-shortcode .cr-review-form-comment.cr-review-form-error .cr-review-form-comment-txt,
     
    754755    margin: 0;
    755756    box-sizing: border-box;
     757    border-radius: 3px;
    756758}
    757759.cr-review-form-wrap .cr-onsite-question .cr-onsite-question-inp {
  • customer-reviews-woocommerce/trunk/includes/blocks/class-cr-all-reviews.php

    r3396824 r3464600  
    13221322                                        )
    13231323                                    );
     1324                                    // compatibility with 'WP Comment Policy Checkbox' plugin that calls wp_die
     1325                                    remove_filter( 'preprocess_comment', 'wpcpc_verify_policy_check', 10 );
     1326                                    //
    13241327                                    add_filter( 'pre_comment_approved', array( 'CR_All_Reviews', 'is_review_approved' ), 10, 2 );
    13251328                                    $result = wp_new_comment( $commentdata, true );
  • customer-reviews-woocommerce/trunk/includes/emails/class-cr-copy-link.php

    r3462481 r3464600  
    3131        $this->find['discount-amount'] = '{discount_amount}';
    3232
    33         // copying links is currently avaiable only for self-hosted aggregated review forms
    34         $wp_locale = get_locale();
    35         $wp_lang = explode( '_', $wp_locale );
    36         if( is_array( $wp_lang ) && 0 < count( $wp_lang ) ) {
    37             $this->language = strtoupper( $wp_lang[0] );
    38         } else {
    39             $this->language = 'EN';
    40         }
     33        $this->language = Ivole_Email::fetch_language();
    4134
    4235        $order = false;
  • customer-reviews-woocommerce/trunk/includes/reviews/class-cr-reviews.php

    r3462481 r3464600  
    14901490
    14911491    private static function is_captcha_enabled() {
    1492         return 'yes' === get_option( 'ivole_enable_captcha', 'no' );
     1492        $response = false;
     1493        $site_key = trim( get_option( 'ivole_captcha_site_key', '' ) );
     1494        $secret_key = trim( get_option( 'ivole_captcha_secret_key', '' ) );
     1495        if (
     1496            $site_key &&
     1497            $secret_key &&
     1498            'yes' === get_option( 'ivole_enable_captcha', 'no' )
     1499        ) {
     1500            $response = true;
     1501        }
     1502        return $response;
    14931503    }
    14941504
  • customer-reviews-woocommerce/trunk/includes/settings/class-cr-admin-menu-settings.php

    r3434533 r3464600  
    2929            }
    3030
    31             $this->download_api = 'https://api.cusrev.com/v1/production/wp-download/';
     31            $this->download_api = 'https://api.cusrev.com/v2/wp-download/';
    3232
    3333            add_action( 'admin_init', array( $this, 'save_settings' ) );
  • customer-reviews-woocommerce/trunk/ivole.php

    r3462481 r3464600  
    44Description: Customer Reviews for WooCommerce plugin helps you get more customer reviews for your shop by sending automated reminders and coupons.
    55Plugin URI: https://wordpress.org/plugins/customer-reviews-woocommerce/
    6 Version: 5.100.0
     6Version: 5.101.0
    77Author: CusRev
    88Author URI: https://www.cusrev.com/business/
  • customer-reviews-woocommerce/trunk/readme.txt

    r3462481 r3464600  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 5.100.0
     7Stable tag: 5.101.0
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl.html
     
    235235== Changelog ==
    236236
     237= 5.101.0 =
     238* Bug fix: a link to an incorrect form template could be copied from WooCommerce Orders page for some languages
     239* Bug fix: a button for download of the Pro add-on didn't work correctly
    237240= 5.100.0 =
    238241* New feature: [cusrev_review_button] shortcode that can be used to display a button linking to an aggregated review form in the customer-facing WooCommerce email notifications "Processing order" and "Completed order"
Note: See TracChangeset for help on using the changeset viewer.