Plugin Directory

Changeset 3315486


Ignore:
Timestamp:
06/20/2025 08:19:22 PM (9 months ago)
Author:
ivole
Message:

5.79.0

Location:
customer-reviews-woocommerce
Files:
878 added
12 edited

Legend:

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

    r3304074 r3315486  
    8383
    8484class Ivole {
    85     const CR_VERSION = '5.78.1';
     85    const CR_VERSION = '5.79.0';
    8686
    8787    public function __construct() {
  • customer-reviews-woocommerce/trunk/includes/blocks/class-cr-all-reviews.php

    r3272816 r3315486  
    496496            $return .= wp_list_comments( apply_filters('ivole_product_review_list_args', array(
    497497                'callback' => array( 'CR_Reviews', 'callback_comments' ),
     498                'max_depth' => 5,
    498499                'page'  => 1,
    499500                'per_page' => $per_page,
     
    604605            $html .= wp_list_comments( apply_filters( 'ivole_product_review_list_args', array(
    605606                'callback' => array( 'CR_Reviews', 'callback_comments' ),
     607                'max_depth' => 5,
    606608                'page'  => 1,
    607609                'per_page' => $per_page,
  • customer-reviews-woocommerce/trunk/includes/blocks/class-cr-reviews-grid.php

    r3304074 r3315486  
    3333            add_action( 'wp_ajax_ivole_show_more_grid_reviews', array( $this, 'show_more_reviews' ) );
    3434            add_action( 'wp_ajax_nopriv_ivole_show_more_grid_reviews', array( $this, 'show_more_reviews' ) );
    35             if ( class_exists( 'WP_Block_Editor_Context' ) ) {
    36                 add_filter( 'block_editor_settings_all', array( $this, 'add_block_editor_settings' ), 10, 2 );
    37             } else {
    38                 add_filter( 'block_editor_settings', array( $this, 'add_block_editor_settings' ), 10, 2 );
    39             }
    4035        }
    4136
     
    477472
    478473        public function render_reviews_grid_shortcode( $attributes ) {
    479             $shortcode_enabled = get_option( 'ivole_reviews_shortcode', 'no' );
    480             if( $shortcode_enabled === 'no' ) {
    481                 return;
    482             } else {
    483                 // Convert shortcode attributes to block attributes
    484                 $attributes = shortcode_atts( array(
    485                     'count' => 3,
    486                     'show_products' => true,
    487                     'product_links' => true,
    488                     'sort_by' => 'date',
    489                     'sort' => 'DESC',
    490                     'categories' => array(),
    491                     'products' => 'current',
    492                     'color_ex_brdr' => '#ebebeb',
    493                     'color_brdr' => '#ebebeb',
    494                     'color_ex_bcrd' => '',
    495                     'color_bcrd' => '#ffffff',
    496                     'color_pr_bcrd' => '#f4f4f4',
    497                     'color_stars' => '#FFD707',
    498                     'shop_reviews' => 'false',
    499                     'count_shop_reviews' => 1,
    500                     'inactive_products' => 'false',
    501                     'avatars' => 'initials',
    502                     'show_more' => 0,
    503                     'count_total' => 0,
    504                     'product_tags' => [],
    505                     'tags' => [],
    506                     'min_chars' => 0,
    507                     'show_summary_bar' => 'false',
    508                     'add_review' => 'false',
    509                     'comment__not_in' => []
    510                 ), $attributes, 'cusrev_reviews_grid' );
    511 
    512                 $attributes['count'] = absint( $attributes['count'] );
    513                 $attributes['show_products'] = ( $attributes['show_products'] !== 'false' && boolval( $attributes['count'] ) );
    514                 $attributes['product_links'] = ( $attributes['product_links'] !== 'false' );
    515                 $attributes['shop_reviews'] = ( $attributes['shop_reviews'] !== 'false' && boolval( $attributes['count_shop_reviews'] ) );
    516                 $attributes['count_shop_reviews'] = absint( $attributes['count_shop_reviews'] );
    517                 $attributes['inactive_products'] = ( $attributes['inactive_products'] === 'true' );
    518                 $attributes['show_more'] = absint( $attributes['show_more'] );
    519                 $attributes['count_total'] = absint( $attributes['count_total'] );
    520                 $attributes['min_chars'] = intval( $attributes['min_chars'] );
    521                 $attributes['show_summary_bar'] = ( $attributes['show_summary_bar'] === 'true' );
    522                 if( $attributes['min_chars'] < 0 ) {
    523                     $attributes['min_chars'] = 0;
    524                 }
    525 
    526                 if ( ! is_array( $attributes['categories'] ) ) {
    527                     $attributes['categories'] = array_filter( array_map( 'trim', explode( ',', $attributes['categories'] ) ) );
    528                 }
    529 
    530                 if (
    531                     is_string( $attributes['products'] ) &&
    532                     'current' === trim( strtolower( $attributes['products'] ) )
    533                 ) {
    534                     if ( is_product() ) {
    535                         $product = wc_get_product();
    536                         if ( is_object( $product ) ) {
    537                             $id = $product->get_id();
    538                             $attributes['products'] = array( $id );
    539                         } else {
    540                             $attributes['products'] = array();
    541                         }
     474            // Convert shortcode attributes to block attributes
     475            $attributes = shortcode_atts( array(
     476                'count' => 3,
     477                'show_products' => true,
     478                'product_links' => true,
     479                'sort_by' => 'date',
     480                'sort' => 'DESC',
     481                'categories' => array(),
     482                'products' => 'current',
     483                'color_ex_brdr' => '#ebebeb',
     484                'color_brdr' => '#ebebeb',
     485                'color_ex_bcrd' => '',
     486                'color_bcrd' => '#ffffff',
     487                'color_pr_bcrd' => '#f4f4f4',
     488                'color_stars' => '#FFD707',
     489                'shop_reviews' => 'false',
     490                'count_shop_reviews' => 1,
     491                'inactive_products' => 'false',
     492                'avatars' => 'initials',
     493                'show_more' => 0,
     494                'count_total' => 0,
     495                'product_tags' => [],
     496                'tags' => [],
     497                'min_chars' => 0,
     498                'show_summary_bar' => 'false',
     499                'add_review' => 'false',
     500                'comment__not_in' => []
     501            ), $attributes, 'cusrev_reviews_grid' );
     502
     503            $attributes['count'] = absint( $attributes['count'] );
     504            $attributes['show_products'] = ( $attributes['show_products'] !== 'false' && boolval( $attributes['count'] ) );
     505            $attributes['product_links'] = ( $attributes['product_links'] !== 'false' );
     506            $attributes['shop_reviews'] = ( $attributes['shop_reviews'] !== 'false' && boolval( $attributes['count_shop_reviews'] ) );
     507            $attributes['count_shop_reviews'] = absint( $attributes['count_shop_reviews'] );
     508            $attributes['inactive_products'] = ( $attributes['inactive_products'] === 'true' );
     509            $attributes['show_more'] = absint( $attributes['show_more'] );
     510            $attributes['count_total'] = absint( $attributes['count_total'] );
     511            $attributes['min_chars'] = intval( $attributes['min_chars'] );
     512            $attributes['show_summary_bar'] = ( $attributes['show_summary_bar'] === 'true' );
     513            if( $attributes['min_chars'] < 0 ) {
     514                $attributes['min_chars'] = 0;
     515            }
     516
     517            if ( ! is_array( $attributes['categories'] ) ) {
     518                $attributes['categories'] = array_filter( array_map( 'trim', explode( ',', $attributes['categories'] ) ) );
     519            }
     520
     521            if (
     522                is_string( $attributes['products'] ) &&
     523                'current' === trim( strtolower( $attributes['products'] ) )
     524            ) {
     525                if ( is_product() ) {
     526                    $product = wc_get_product();
     527                    if ( is_object( $product ) ) {
     528                        $id = $product->get_id();
     529                        $attributes['products'] = array( $id );
    542530                    } else {
    543531                        $attributes['products'] = array();
    544532                    }
    545                 } elseif ( ! is_array( $attributes['products'] ) ) {
    546                     $products = str_replace( ' ', '', $attributes['products'] );
    547                     $products = explode( ',', $products );
    548                     $products = array_filter( $products, 'is_numeric' );
    549                     $products = array_map( 'intval', $products );
    550 
    551                     $attributes['products'] = $products;
    552533                } else {
    553                     $attributes['products'] = array_map( 'intval', $attributes['products'] );
    554                 }
    555 
    556                 if(
    557                     ! empty( $attributes['product_tags'] ) &&
    558                     ! is_array( $attributes['product_tags'] )
    559                 ) {
    560                     $attributes['product_tags'] = array_filter( array_map( 'trim', explode( ',', $attributes['product_tags'] ) ) );
    561                 }
    562 
    563                 if(
    564                     ! empty( $attributes['tags'] ) &&
    565                     ! is_array( $attributes['tags'] )
    566                 ) {
    567                     $attributes['tags'] = array_filter( array_map( 'trim', explode( ',', $attributes['tags'] ) ) );
    568                 }
    569 
    570                 if ( 'true' === $attributes['add_review'] ) {
    571                     $product_id = CR_All_Reviews::is_it_a_product_page();
    572                     if ( $product_id ) {
    573                         $attributes['add_review'] = $product_id;
    574                     } else {
    575                         $attributes['add_review'] = true;
    576                     }
    577                 } elseif ( is_numeric( $attributes['add_review'] ) ) {
    578                     $attributes['add_review'] = intval( $attributes['add_review'] );
     534                    $attributes['products'] = array();
     535                }
     536            } elseif ( ! is_array( $attributes['products'] ) ) {
     537                $products = str_replace( ' ', '', $attributes['products'] );
     538                $products = explode( ',', $products );
     539                $products = array_filter( $products, 'is_numeric' );
     540                $products = array_map( 'intval', $products );
     541
     542                $attributes['products'] = $products;
     543            } else {
     544                $attributes['products'] = array_map( 'intval', $attributes['products'] );
     545            }
     546
     547            if(
     548                ! empty( $attributes['product_tags'] ) &&
     549                ! is_array( $attributes['product_tags'] )
     550            ) {
     551                $attributes['product_tags'] = array_filter( array_map( 'trim', explode( ',', $attributes['product_tags'] ) ) );
     552            }
     553
     554            if(
     555                ! empty( $attributes['tags'] ) &&
     556                ! is_array( $attributes['tags'] )
     557            ) {
     558                $attributes['tags'] = array_filter( array_map( 'trim', explode( ',', $attributes['tags'] ) ) );
     559            }
     560
     561            if ( 'true' === $attributes['add_review'] ) {
     562                $product_id = CR_All_Reviews::is_it_a_product_page();
     563                if ( $product_id ) {
     564                    $attributes['add_review'] = $product_id;
    579565                } else {
    580                     $attributes['add_review'] = false;
    581                 }
    582 
    583                 return $this->render_reviews_grid( $attributes );
    584             }
     566                    $attributes['add_review'] = true;
     567                }
     568            } elseif ( is_numeric( $attributes['add_review'] ) ) {
     569                $attributes['add_review'] = intval( $attributes['add_review'] );
     570            } else {
     571                $attributes['add_review'] = false;
     572            }
     573
     574            return $this->render_reviews_grid( $attributes );
    585575        }
    586576
     
    11851175        }
    11861176
    1187         public function add_block_editor_settings( $settings, $p ) {
    1188             $settings['cusrev'] = array(
    1189                 'reviews_shortcodes' => ( get_option( 'ivole_reviews_shortcode', 'no' ) !== 'no' )
    1190             );
    1191             return $settings;
    1192         }
    1193 
    11941177    }
    11951178
  • customer-reviews-woocommerce/trunk/includes/blocks/class-cr-reviews-rating.php

    r3260482 r3315486  
    5454
    5555        public function render_reviews_rating_shortcode( $attributes ) {
    56             $shortcode_enabled = get_option( 'ivole_reviews_shortcode', 'no' );
    57             if ( 'yes' !== $shortcode_enabled ) {
    58                 return;
    59             } else {
    60                 // Convert shortcode attributes to block attributes
    61                 $attributes = shortcode_atts( array(
    62                     'color_stars' => '#FFBC00',
    63                     'product' => ''
    64                 ), $attributes, 'cusrev_reviews_rating' );
    65                 return $this->render_reviews_rating( $attributes );
    66             }
     56            // Convert shortcode attributes to block attributes
     57            $attributes = shortcode_atts(
     58                array(
     59                'color_stars' => '#FFBC00',
     60                'product' => ''
     61                ),
     62                $attributes, 'cusrev_reviews_rating'
     63            );
     64            return $this->render_reviews_rating( $attributes );
    6765        }
    6866
  • customer-reviews-woocommerce/trunk/includes/blocks/class-cr-reviews-slider.php

    r3282912 r3315486  
    354354
    355355        public function render_reviews_slider_shortcode( $attributes ) {
    356             $shortcode_enabled = get_option( 'ivole_reviews_shortcode', 'no' );
    357             if( $shortcode_enabled === 'no' ) {
    358                 return;
    359             } else {
    360                 // Convert shortcode attributes
    361                 $attributes = shortcode_atts( array(
    362                     'slides_to_show' => 3,
    363                     'count' => 5,
    364                     'show_products' => true,
    365                     'product_links' => true,
    366                     'sort_by' => 'date',
    367                     'sort' => 'DESC',
    368                     'categories' => array(),
    369                     'products' => 'current',
    370                     'color_ex_brdr' => '#ebebeb',
    371                     'color_brdr' => '#ebebeb',
    372                     'color_ex_bcrd' => '',
    373                     'color_bcrd' => '#fbfbfb',
    374                     'color_pr_bcrd' => '#f2f2f2',
    375                     'color_stars' => '#6bba70',
    376                     'shop_reviews' => 'false',
    377                     'count_shop_reviews' => 1,
    378                     'inactive_products' => false,
    379                     'autoplay' => false,
    380                     'avatars' => 'initials',
    381                     'max_chars' => 0,
    382                     'product_tags' => array(),
    383                     'tags' => array(),
    384                     'min_chars' => 0,
    385                     'show_dots' => true,
    386                 ), $attributes, 'cusrev_reviews_slider' );
    387 
    388                 $attributes['slides_to_shows'] = absint( $attributes['slides_to_show'] ) >= absint( $attributes['count'] ) ? absint( $attributes['count'] ) : absint( $attributes['slides_to_show'] );
    389                 $attributes['count'] = absint( $attributes['count'] );
    390                 $attributes['show_products'] = ( $attributes['show_products'] !== 'false' && boolval( $attributes['count'] ) );
    391                 $attributes['product_links'] = ( $attributes['product_links'] !== 'false' );
    392                 $attributes['shop_reviews'] = ( $attributes['shop_reviews'] !== 'false' && boolval( $attributes['count_shop_reviews'] ) );
    393                 $attributes['count_shop_reviews'] = absint( $attributes['count_shop_reviews'] );
    394                 $attributes['inactive_products'] = ( $attributes['inactive_products'] === 'true' );
    395                 $attributes['autoplay'] = ( $attributes['autoplay'] === 'true' );
    396                 $attributes['max_chars'] = absint( $attributes['max_chars'] );
    397                 $attributes['min_chars'] = intval( $attributes['min_chars'] );
    398                 $attributes['show_dots'] = ( $attributes['show_dots'] !== 'false' );
    399                 if( $attributes['min_chars'] < 0 ) {
    400                     $attributes['min_chars'] = 0;
    401                 }
    402 
    403                 if ( ! is_array( $attributes['categories'] ) ) {
    404                     $attributes['categories'] = array_filter( array_map( 'trim', explode( ',', $attributes['categories'] ) ) );
    405                 }
    406 
    407                 if (
    408                     is_string( $attributes['products'] ) &&
    409                     'current' === trim( strtolower( $attributes['products'] ) )
    410                 ) {
    411                     if ( is_product() ) {
    412                         $product = wc_get_product();
    413                         if ( is_object( $product ) ) {
    414                             $id = $product->get_id();
    415                             $attributes['products'] = array( $id );
    416                         } else {
    417                             $attributes['products'] = array();
    418                         }
     356            // Convert shortcode attributes
     357            $attributes = shortcode_atts( array(
     358                'slides_to_show' => 3,
     359                'count' => 5,
     360                'show_products' => true,
     361                'product_links' => true,
     362                'sort_by' => 'date',
     363                'sort' => 'DESC',
     364                'categories' => array(),
     365                'products' => 'current',
     366                'color_ex_brdr' => '#ebebeb',
     367                'color_brdr' => '#ebebeb',
     368                'color_ex_bcrd' => '',
     369                'color_bcrd' => '#fbfbfb',
     370                'color_pr_bcrd' => '#f2f2f2',
     371                'color_stars' => '#6bba70',
     372                'shop_reviews' => 'false',
     373                'count_shop_reviews' => 1,
     374                'inactive_products' => false,
     375                'autoplay' => false,
     376                'avatars' => 'initials',
     377                'max_chars' => 0,
     378                'product_tags' => array(),
     379                'tags' => array(),
     380                'min_chars' => 0,
     381                'show_dots' => true,
     382            ), $attributes, 'cusrev_reviews_slider' );
     383
     384            $attributes['slides_to_shows'] = absint( $attributes['slides_to_show'] ) >= absint( $attributes['count'] ) ? absint( $attributes['count'] ) : absint( $attributes['slides_to_show'] );
     385            $attributes['count'] = absint( $attributes['count'] );
     386            $attributes['show_products'] = ( $attributes['show_products'] !== 'false' && boolval( $attributes['count'] ) );
     387            $attributes['product_links'] = ( $attributes['product_links'] !== 'false' );
     388            $attributes['shop_reviews'] = ( $attributes['shop_reviews'] !== 'false' && boolval( $attributes['count_shop_reviews'] ) );
     389            $attributes['count_shop_reviews'] = absint( $attributes['count_shop_reviews'] );
     390            $attributes['inactive_products'] = ( $attributes['inactive_products'] === 'true' );
     391            $attributes['autoplay'] = ( $attributes['autoplay'] === 'true' );
     392            $attributes['max_chars'] = absint( $attributes['max_chars'] );
     393            $attributes['min_chars'] = intval( $attributes['min_chars'] );
     394            $attributes['show_dots'] = ( $attributes['show_dots'] !== 'false' );
     395            if( $attributes['min_chars'] < 0 ) {
     396                $attributes['min_chars'] = 0;
     397            }
     398
     399            if ( ! is_array( $attributes['categories'] ) ) {
     400                $attributes['categories'] = array_filter( array_map( 'trim', explode( ',', $attributes['categories'] ) ) );
     401            }
     402
     403            if (
     404                is_string( $attributes['products'] ) &&
     405                'current' === trim( strtolower( $attributes['products'] ) )
     406            ) {
     407                if ( is_product() ) {
     408                    $product = wc_get_product();
     409                    if ( is_object( $product ) ) {
     410                        $id = $product->get_id();
     411                        $attributes['products'] = array( $id );
    419412                    } else {
    420413                        $attributes['products'] = array();
    421414                    }
    422                 } elseif ( ! is_array( $attributes['products'] ) ) {
    423                     $products = str_replace( ' ', '', $attributes['products'] );
    424                     $products = explode( ',', $products );
    425                     $products = array_filter( $products, 'is_numeric' );
    426                     $products = array_map( 'intval', $products );
    427 
    428                     $attributes['products'] = $products;
    429415                } else {
    430416                    $attributes['products'] = array();
    431417                }
    432 
    433                 if( $attributes['slides_to_shows'] <= 0 ) {
    434                     $attributes['slides_to_shows'] = 1;
    435                 }
    436 
    437                 if( ! empty( $attributes['product_tags'] ) ) {
    438                     $attributes['product_tags'] = array_filter( array_map( 'trim', explode( ',', $attributes['product_tags'] ) ) );
    439                 }
    440 
    441                 if ( ! empty( $attributes['tags'] ) ) {
    442                     $attributes['tags'] = array_filter( array_map( 'trim', explode( ',', $attributes['tags'] ) ) );
    443                 }
    444 
    445                 return $this->render_reviews_slider( $attributes );
    446             }
     418            } elseif ( ! is_array( $attributes['products'] ) ) {
     419                $products = str_replace( ' ', '', $attributes['products'] );
     420                $products = explode( ',', $products );
     421                $products = array_filter( $products, 'is_numeric' );
     422                $products = array_map( 'intval', $products );
     423
     424                $attributes['products'] = $products;
     425            } else {
     426                $attributes['products'] = array();
     427            }
     428
     429            if( $attributes['slides_to_shows'] <= 0 ) {
     430                $attributes['slides_to_shows'] = 1;
     431            }
     432
     433            if( ! empty( $attributes['product_tags'] ) ) {
     434                $attributes['product_tags'] = array_filter( array_map( 'trim', explode( ',', $attributes['product_tags'] ) ) );
     435            }
     436
     437            if ( ! empty( $attributes['tags'] ) ) {
     438                $attributes['tags'] = array_filter( array_map( 'trim', explode( ',', $attributes['tags'] ) ) );
     439            }
     440
     441            return $this->render_reviews_slider( $attributes );
    447442        }
    448443
  • customer-reviews-woocommerce/trunk/includes/reviews/class-cr-ajax-reviews.php

    r3282912 r3315486  
    296296                        array(
    297297                            'callback' => array( 'CR_Reviews', 'callback_comments' ),
     298                            'max_depth' => 5,
    298299                            'reverse_top_level' => false,
    299300                            'per_page' => self::$per_page,
     
    375376                            array(
    376377                                'callback' => array( 'CR_Reviews', 'callback_comments' ),
     378                                'max_depth' => 5,
    377379                                'reverse_top_level' => false,
    378380                                'per_page' => self::$per_page,
     
    444446                            array(
    445447                                'callback' => array( 'CR_Reviews', 'callback_comments' ),
     448                                'max_depth' => 5,
    446449                                'reverse_top_level' => false,
    447450                                'per_page' => self::$per_page,
  • customer-reviews-woocommerce/trunk/includes/reviews/class-cr-reviews.php

    r3304074 r3315486  
    8282                }
    8383            }
    84             if( 'yes' === $this->ivole_reviews_histogram || 'yes' === get_option( 'ivole_reviews_shortcode', 'no' ) ) {
    85                 add_action( 'init', array( $this, 'add_query_var' ), 20 );
    86             }
     84            add_action( 'init', array( $this, 'add_query_var' ), 20 );
    8785            if (
    8886                'yes' === $this->ivole_reviews_histogram ||
     
    14681466        if( check_ajax_referer( 'cr-upload-images-frontend', 'cr_nonce', false ) ) {
    14691467            // check captcha
    1470             if( self::is_captcha_enabled() ) {
     1468            if ( self::is_captcha_enabled() && ! is_user_logged_in() ) {
    14711469                $captcha_is_wrong = true;
    14721470                if( isset( $_POST['cr_captcha'] ) && $_POST['cr_captcha'] ) {
  • customer-reviews-woocommerce/trunk/includes/settings/class-cr-settings-shortcodes.php

    r3224693 r3315486  
    4242        public function display() {
    4343            $this->init_settings();
    44 
     44            global $hide_save_button;
     45            $hide_save_button = true;
    4546            WC_Admin_Settings::output_fields( $this->settings );
    4647        }
     
    5859                    'desc'  => __( 'The plugin provides several shortcodes and Gutenberg blocks that you can use to display reviews in various places on your website. You can find the list of available shortcodes and their parameters below.', 'customer-reviews-woocommerce' ),
    5960                    'id'    => 'cr_options_shortcodes'
    60                 ),
    61                 array(
    62                     'title'   => __( 'Reviews Shortcodes', 'customer-reviews-woocommerce' ),
    63                     'desc'    => __( 'Enable shortcodes and Gutenberg blocks', 'customer-reviews-woocommerce' ),
    64                     'id'      => 'ivole_reviews_shortcode',
    65                     'default' => 'no',
    66                     'type'    => 'checkbox'
    6761                ),
    6862                array(
  • customer-reviews-woocommerce/trunk/ivole.php

    r3304074 r3315486  
    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.78.1
     6Version: 5.79.0
    77Author: CusRev
    88Author URI: https://www.cusrev.com/business/
     
    1111Requires at least: 4.5
    1212WC requires at least: 3.6
    13 WC tested up to: 9.8
     13WC tested up to: 9.9
    1414License: GPLv3
    1515
     
    116116add_shortcode( 'cusrev_reviews', 'ivole_reviews_shortcode' );
    117117
    118 function ivole_reviews_shortcode( $atts, $content )
    119 {
    120     $shortcode_enabled = get_option( 'ivole_reviews_shortcode', 'no' );
    121     if( $shortcode_enabled === 'no' ) {
    122         return;
    123     } else {
    124         extract( shortcode_atts( array( 'comment_file' => '/comments.php' ), $atts ) );
    125         $content = ivole_return_comment_form( $comment_file );
    126     }
     118function ivole_reviews_shortcode( $atts, $content ) {
     119    extract( shortcode_atts( array( 'comment_file' => '/comments.php' ), $atts ) );
     120    $content = ivole_return_comment_form( $comment_file );
    127121    return $content;
    128122}
  • customer-reviews-woocommerce/trunk/languages/customer-reviews-woocommerce.pot

    r3300332 r3315486  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Customer Reviews for WooCommerce 5.78.0\n"
     5"Project-Id-Version: Customer Reviews for WooCommerce 5.78.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customer-reviews-woocommerce\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-05-25T23:33:48+00:00\n"
     12"POT-Creation-Date: 2025-06-20T19:58:35+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.1\n"
     
    217217
    218218#: includes/blocks/class-cr-all-reviews.php:485
    219 #: includes/blocks/class-cr-all-reviews.php:525
    220 #: templates/cr-ajax-product-reviews.php:123
     219#: includes/blocks/class-cr-all-reviews.php:526
     220#: templates/cr-ajax-product-reviews.php:124
    221221#: templates/reviews-grid.php:222
    222222msgid "Sorry, no reviews match your current selections"
    223223msgstr ""
    224224
    225 #: includes/blocks/class-cr-all-reviews.php:520
    226 #: includes/blocks/class-cr-all-reviews.php:626
    227 #: includes/reviews/class-cr-ajax-reviews.php:315
    228 #: includes/reviews/class-cr-ajax-reviews.php:394
    229 #: includes/reviews/class-cr-ajax-reviews.php:466
    230 #: templates/cr-ajax-product-reviews.php:109
     225#: includes/blocks/class-cr-all-reviews.php:521
     226#: includes/blocks/class-cr-all-reviews.php:628
     227#: includes/reviews/class-cr-ajax-reviews.php:316
     228#: includes/reviews/class-cr-ajax-reviews.php:396
     229#: includes/reviews/class-cr-ajax-reviews.php:469
     230#: templates/cr-ajax-product-reviews.php:110
    231231#: templates/reviews-grid.php:211
    232232msgid "Show more reviews (%d)"
    233233msgstr ""
    234234
    235 #: includes/blocks/class-cr-all-reviews.php:857
    236 #: includes/blocks/class-cr-reviews-grid.php:982
    237 #: includes/reviews/class-cr-reviews.php:529
     235#: includes/blocks/class-cr-all-reviews.php:859
     236#: includes/blocks/class-cr-reviews-grid.php:973
     237#: includes/reviews/class-cr-reviews.php:527
    238238msgid "Based on %s review"
    239239msgid_plural "Based on %s reviews"
     
    241241msgstr[1] ""
    242242
    243 #: includes/blocks/class-cr-all-reviews.php:870
    244 #: includes/blocks/class-cr-all-reviews.php:874
    245 #: includes/blocks/class-cr-reviews-grid.php:995
     243#: includes/blocks/class-cr-all-reviews.php:872
     244#: includes/blocks/class-cr-all-reviews.php:876
     245#: includes/blocks/class-cr-reviews-grid.php:986
     246#: includes/blocks/class-cr-reviews-grid.php:990
     247#: includes/reviews/class-cr-reviews.php:542
     248#: includes/reviews/class-cr-reviews.php:546
     249msgid "5 star"
     250msgstr ""
     251
     252#: includes/blocks/class-cr-all-reviews.php:885
     253#: includes/blocks/class-cr-all-reviews.php:889
    246254#: includes/blocks/class-cr-reviews-grid.php:999
    247 #: includes/reviews/class-cr-reviews.php:544
    248 #: includes/reviews/class-cr-reviews.php:548
    249 msgid "5 star"
    250 msgstr ""
    251 
    252 #: includes/blocks/class-cr-all-reviews.php:883
    253 #: includes/blocks/class-cr-all-reviews.php:887
    254 #: includes/blocks/class-cr-reviews-grid.php:1008
     255#: includes/blocks/class-cr-reviews-grid.php:1003
     256#: includes/reviews/class-cr-reviews.php:553
     257#: includes/reviews/class-cr-reviews.php:557
     258msgid "4 star"
     259msgstr ""
     260
     261#: includes/blocks/class-cr-all-reviews.php:898
     262#: includes/blocks/class-cr-all-reviews.php:902
    255263#: includes/blocks/class-cr-reviews-grid.php:1012
    256 #: includes/reviews/class-cr-reviews.php:555
    257 #: includes/reviews/class-cr-reviews.php:559
    258 msgid "4 star"
    259 msgstr ""
    260 
    261 #: includes/blocks/class-cr-all-reviews.php:896
    262 #: includes/blocks/class-cr-all-reviews.php:900
    263 #: includes/blocks/class-cr-reviews-grid.php:1021
     264#: includes/blocks/class-cr-reviews-grid.php:1016
     265#: includes/reviews/class-cr-reviews.php:564
     266#: includes/reviews/class-cr-reviews.php:568
     267msgid "3 star"
     268msgstr ""
     269
     270#: includes/blocks/class-cr-all-reviews.php:911
     271#: includes/blocks/class-cr-all-reviews.php:915
    264272#: includes/blocks/class-cr-reviews-grid.php:1025
    265 #: includes/reviews/class-cr-reviews.php:566
    266 #: includes/reviews/class-cr-reviews.php:570
    267 msgid "3 star"
    268 msgstr ""
    269 
    270 #: includes/blocks/class-cr-all-reviews.php:909
    271 #: includes/blocks/class-cr-all-reviews.php:913
    272 #: includes/blocks/class-cr-reviews-grid.php:1034
     273#: includes/blocks/class-cr-reviews-grid.php:1029
     274#: includes/reviews/class-cr-reviews.php:575
     275#: includes/reviews/class-cr-reviews.php:579
     276msgid "2 star"
     277msgstr ""
     278
     279#: includes/blocks/class-cr-all-reviews.php:924
     280#: includes/blocks/class-cr-all-reviews.php:928
    273281#: includes/blocks/class-cr-reviews-grid.php:1038
    274 #: includes/reviews/class-cr-reviews.php:577
    275 #: includes/reviews/class-cr-reviews.php:581
    276 msgid "2 star"
    277 msgstr ""
    278 
    279 #: includes/blocks/class-cr-all-reviews.php:922
    280 #: includes/blocks/class-cr-all-reviews.php:926
    281 #: includes/blocks/class-cr-reviews-grid.php:1047
    282 #: includes/blocks/class-cr-reviews-grid.php:1051
     282#: includes/blocks/class-cr-reviews-grid.php:1042
    283283#: includes/reviews/class-cr-reviews-list-table.php:484
    284 #: includes/reviews/class-cr-reviews.php:588
    285 #: includes/reviews/class-cr-reviews.php:592
     284#: includes/reviews/class-cr-reviews.php:586
     285#: includes/reviews/class-cr-reviews.php:590
    286286msgid "1 star"
    287287msgstr ""
    288288
    289 #: includes/blocks/class-cr-all-reviews.php:938
    290 #: includes/blocks/class-cr-reviews-grid.php:1064
    291 #: includes/reviews/class-cr-reviews.php:1704
     289#: includes/blocks/class-cr-all-reviews.php:940
     290#: includes/blocks/class-cr-reviews-grid.php:1055
     291#: includes/reviews/class-cr-reviews.php:1702
    292292#: templates/cr-review-form.php:31
    293293msgid "Add a review"
    294294msgstr ""
    295295
    296 #: includes/blocks/class-cr-all-reviews.php:1072
     296#: includes/blocks/class-cr-all-reviews.php:1074
     297#: includes/reviews/class-cr-reviews.php:1615
     298msgid "Sort reviews"
     299msgstr ""
     300
     301#: includes/blocks/class-cr-all-reviews.php:1076
    297302#: includes/reviews/class-cr-reviews.php:1617
    298 msgid "Sort reviews"
    299 msgstr ""
    300 
    301 #: includes/blocks/class-cr-all-reviews.php:1074
    302 #: includes/reviews/class-cr-reviews.php:1619
    303303msgid "Most Recent"
    304304msgstr ""
    305305
    306 #: includes/blocks/class-cr-all-reviews.php:1077
    307 #: includes/reviews/class-cr-reviews.php:1623
     306#: includes/blocks/class-cr-all-reviews.php:1079
     307#: includes/reviews/class-cr-reviews.php:1621
    308308msgid "Most Helpful"
    309309msgstr ""
    310310
    311 #: includes/blocks/class-cr-all-reviews.php:1092
     311#: includes/blocks/class-cr-all-reviews.php:1094
    312312msgid "%d star"
    313313msgid_plural "%d stars"
     
    315315msgstr[1] ""
    316316
    317 #: includes/blocks/class-cr-all-reviews.php:1098
    318 #: includes/blocks/class-cr-reviews-grid.php:1073
    319 #: includes/reviews/class-cr-reviews.php:604
     317#: includes/blocks/class-cr-all-reviews.php:1100
     318#: includes/blocks/class-cr-reviews-grid.php:1064
     319#: includes/reviews/class-cr-reviews.php:602
    320320msgid "See all %d review"
    321321msgid_plural "See all %d reviews"
     
    323323msgstr[1] ""
    324324
    325 #: includes/blocks/class-cr-all-reviews.php:1116
     325#: includes/blocks/class-cr-all-reviews.php:1118
    326326msgid "%d-%d of %d review (%s). %s"
    327327msgid_plural "%d-%d of %d reviews (%s). %s"
     
    329329msgstr[1] ""
    330330
    331 #: includes/blocks/class-cr-all-reviews.php:1125
     331#: includes/blocks/class-cr-all-reviews.php:1127
    332332msgid "%d-%d of %d review"
    333333msgid_plural "%d-%d of %d reviews"
     
    335335msgstr[1] ""
    336336
    337 #: includes/blocks/class-cr-all-reviews.php:1134
     337#: includes/blocks/class-cr-all-reviews.php:1136
    338338msgid "0 of 0 reviews (%s). %s"
    339339msgstr ""
    340340
    341 #: includes/blocks/class-cr-all-reviews.php:1139
     341#: includes/blocks/class-cr-all-reviews.php:1141
    342342msgid "0 of 0 reviews"
    343343msgstr ""
    344344
    345 #: includes/blocks/class-cr-all-reviews.php:1150
     345#: includes/blocks/class-cr-all-reviews.php:1152
    346346#: includes/reminders/class-cr-local-forms.php:209
    347 #: templates/cr-ajax-product-reviews.php:144
     347#: templates/cr-ajax-product-reviews.php:145
    348348msgid "Add photos or video to your review"
    349349msgstr ""
    350350
    351 #: includes/blocks/class-cr-all-reviews.php:1190
     351#: includes/blocks/class-cr-all-reviews.php:1192
    352352msgid "Data validation error"
    353353msgstr ""
    354354
    355 #: includes/blocks/class-cr-all-reviews.php:1191
     355#: includes/blocks/class-cr-all-reviews.php:1193
    356356#: includes/qna/class-cr-admin-menu-qna.php:190
    357357#: includes/qna/class-cr-qna.php:179
     
    361361msgstr ""
    362362
    363 #: includes/blocks/class-cr-all-reviews.php:1198
     363#: includes/blocks/class-cr-all-reviews.php:1200
    364364#: templates/cr-review-form.php:78
    365365msgid "Currently, we are not accepting new reviews"
    366366msgstr ""
    367367
    368 #: includes/blocks/class-cr-all-reviews.php:1222
     368#: includes/blocks/class-cr-all-reviews.php:1224
    369369#: templates/cr-review-form.php:61
    370370msgid "You must be logged in to post a review"
    371371msgstr ""
    372372
    373 #: includes/blocks/class-cr-all-reviews.php:1252
     373#: includes/blocks/class-cr-all-reviews.php:1254
    374374msgid "Only customers who have purchased this product may leave a review. Please use the same email address as in your order for this product."
    375375msgstr ""
    376376
    377 #: includes/blocks/class-cr-all-reviews.php:1276
     377#: includes/blocks/class-cr-all-reviews.php:1278
    378378msgid "Your review could not be added"
    379379msgstr ""
    380380
    381 #: includes/blocks/class-cr-all-reviews.php:1277
     381#: includes/blocks/class-cr-all-reviews.php:1279
    382382#: includes/qna/class-cr-admin-menu-qna.php:189
    383383#: includes/qna/class-cr-qna.php:181
     
    386386msgstr ""
    387387
    388 #: includes/blocks/class-cr-all-reviews.php:1278
     388#: includes/blocks/class-cr-all-reviews.php:1280
    389389msgid "Your review has been successfully added"
    390390msgstr ""
    391391
    392 #: includes/blocks/class-cr-all-reviews.php:1279
     392#: includes/blocks/class-cr-all-reviews.php:1281
    393393#: includes/qna/class-cr-qna.php:182
    394394#: templates/cr-review-form.php:201
     
    398398msgstr ""
    399399
    400 #: includes/blocks/class-cr-all-reviews.php:1306
     400#: includes/blocks/class-cr-all-reviews.php:1308
    401401msgid "Error: no shop page configured in WooCommerce settings (WooCommerce > Settings > Products > Shop page)"
    402402msgstr ""
    403403
    404 #: includes/blocks/class-cr-all-reviews.php:1308
     404#: includes/blocks/class-cr-all-reviews.php:1310
    405405msgid "Error: no product with ID %d found"
    406406msgstr ""
    407407
    408 #: includes/blocks/class-cr-all-reviews.php:1348
     408#: includes/blocks/class-cr-all-reviews.php:1350
    409409#: includes/reminders/class-cr-local-forms-ajax.php:99
    410410#: includes/reminders/class-cr-local-forms.php:154
    411 #: includes/reviews/class-cr-reviews.php:396
     411#: includes/reviews/class-cr-reviews.php:394
    412412msgid "The file cannot be uploaded because its size exceeds the limit of %d MB"
    413413msgstr ""
    414414
    415 #: includes/blocks/class-cr-all-reviews.php:1357
     415#: includes/blocks/class-cr-all-reviews.php:1359
    416416#: includes/reminders/class-cr-local-forms-ajax.php:108
    417417#: includes/reminders/class-cr-local-forms.php:155
    418 #: includes/reviews/class-cr-reviews.php:394
    419 #: includes/reviews/class-cr-reviews.php:1497
     418#: includes/reviews/class-cr-reviews.php:392
     419#: includes/reviews/class-cr-reviews.php:1495
    420420msgid "Error: accepted file types are PNG, JPG, JPEG, GIF, MP4, MPEG, OGG, WEBM, MOV, AVI"
    421421msgstr ""
    422422
    423 #: includes/blocks/class-cr-reviews-grid.php:390
     423#: includes/blocks/class-cr-reviews-grid.php:386
    424424#: includes/blocks/class-cr-reviews-slider.php:257
    425425#: includes/reviews/class-cr-admin-menu-reviews.php:620
     
    429429msgstr ""
    430430
    431 #: includes/blocks/class-cr-reviews-grid.php:394
    432 #: includes/blocks/class-cr-reviews-grid.php:396
    433 #: includes/blocks/class-cr-reviews-grid.php:401
    434 #: includes/blocks/class-cr-reviews-grid.php:403
     431#: includes/blocks/class-cr-reviews-grid.php:390
     432#: includes/blocks/class-cr-reviews-grid.php:392
     433#: includes/blocks/class-cr-reviews-grid.php:397
     434#: includes/blocks/class-cr-reviews-grid.php:399
    435435#: includes/blocks/class-cr-reviews-slider.php:261
    436436#: includes/blocks/class-cr-reviews-slider.php:263
     
    438438#: includes/blocks/class-cr-reviews-slider.php:270
    439439#: includes/reviews/class-cr-reviews-list-table.php:665
     440#: includes/reviews/class-cr-reviews.php:1106
    440441#: includes/reviews/class-cr-reviews.php:1108
    441 #: includes/reviews/class-cr-reviews.php:1110
     442#: includes/reviews/class-cr-reviews.php:1164
    442443#: includes/reviews/class-cr-reviews.php:1166
    443 #: includes/reviews/class-cr-reviews.php:1168
    444444msgid "Verified review"
    445445msgstr ""
    446446
    447 #: includes/blocks/class-cr-reviews-grid.php:397
    448 #: includes/blocks/class-cr-reviews-grid.php:404
     447#: includes/blocks/class-cr-reviews-grid.php:393
     448#: includes/blocks/class-cr-reviews-grid.php:400
    449449#: includes/blocks/class-cr-reviews-slider.php:264
    450450#: includes/blocks/class-cr-reviews-slider.php:271
    451 #: includes/reviews/class-cr-reviews.php:1119
    452 #: includes/reviews/class-cr-reviews.php:1177
     451#: includes/reviews/class-cr-reviews.php:1117
     452#: includes/reviews/class-cr-reviews.php:1175
    453453msgid "view original"
    454454msgstr ""
    455455
    456 #: includes/blocks/class-cr-reviews-grid.php:1072
    457 #: includes/reviews/class-cr-reviews.php:603
     456#: includes/blocks/class-cr-reviews-grid.php:1063
     457#: includes/reviews/class-cr-reviews.php:601
    458458msgid "Showing %1$d of %2$d review (%3$d star). "
    459459msgid_plural "Showing %1$d of %2$d reviews (%3$d star). "
     
    461461msgstr[1] ""
    462462
    463 #: includes/blocks/class-cr-reviews-rating.php:71
     463#: includes/blocks/class-cr-reviews-rating.php:69
    464464msgid "Error: if no valid product ID was provided as a parameter, [cusrev_reviews_rating] shortcode works only on WooCommerce single product pages"
    465465msgstr ""
     
    13841384#: includes/reviews/class-cr-reviews-media-meta-box.php:54
    13851385#: includes/reviews/class-cr-reviews-media-meta-box.php:97
    1386 #: includes/reviews/class-cr-reviews.php:246
    1387 #: includes/reviews/class-cr-reviews.php:263
     1386#: includes/reviews/class-cr-reviews.php:244
     1387#: includes/reviews/class-cr-reviews.php:261
    13881388#: templates/reviews-grid.php:83
    13891389#: templates/reviews-grid.php:90
     
    22722272#: includes/reminders/class-cr-local-forms.php:183
    22732273#: includes/reviews/class-cr-custom-questions.php:450
    2274 #: includes/reviews/class-cr-reviews.php:1700
     2274#: includes/reviews/class-cr-reviews.php:1698
    22752275#: includes/settings/class-cr-settings-forms-rating.php:64
    22762276#: includes/settings/class-cr-settings-forms-rating.php:161
     
    27602760msgstr ""
    27612761
    2762 #: includes/reviews/class-cr-ajax-reviews.php:757
     2762#: includes/reviews/class-cr-ajax-reviews.php:760
    27632763msgid "Search"
    27642764msgstr ""
    27652765
    2766 #: includes/reviews/class-cr-ajax-reviews.php:766
     2766#: includes/reviews/class-cr-ajax-reviews.php:769
    27672767msgid "Search customer reviews"
    27682768msgstr ""
     
    29052905
    29062906#: includes/reviews/class-cr-reviews-list-table.php:984
    2907 #: includes/reviews/class-cr-reviews.php:1191
     2907#: includes/reviews/class-cr-reviews.php:1189
    29082908#: templates/cr-review.php:131
    29092909msgid "Featured Review"
     
    29182918#: includes/reviews/class-cr-reviews-media-meta-box.php:70
    29192919#: includes/reviews/class-cr-reviews-media-meta-box.php:129
    2920 #: includes/reviews/class-cr-reviews.php:282
    2921 #: includes/reviews/class-cr-reviews.php:301
    2922 #: includes/reviews/class-cr-reviews.php:1271
    2923 #: includes/reviews/class-cr-reviews.php:1285
     2920#: includes/reviews/class-cr-reviews.php:280
     2921#: includes/reviews/class-cr-reviews.php:299
     2922#: includes/reviews/class-cr-reviews.php:1269
     2923#: includes/reviews/class-cr-reviews.php:1283
    29242924#: templates/reviews-grid.php:74
    29252925#: templates/reviews-grid.php:76
     
    29322932#: includes/reviews/class-cr-reviews-media-meta-box.php:71
    29332933#: includes/reviews/class-cr-reviews-media-meta-box.php:130
    2934 #: includes/reviews/class-cr-reviews.php:283
    2935 #: includes/reviews/class-cr-reviews.php:302
    2936 #: includes/reviews/class-cr-reviews.php:1374
     2934#: includes/reviews/class-cr-reviews.php:281
     2935#: includes/reviews/class-cr-reviews.php:300
     2936#: includes/reviews/class-cr-reviews.php:1372
    29372937msgid "Close"
    29382938msgstr ""
     
    29952995msgstr ""
    29962996
    2997 #: includes/reviews/class-cr-reviews.php:136
     2997#: includes/reviews/class-cr-reviews.php:134
     2998#: includes/reviews/class-cr-reviews.php:391
     2999msgid "Upload up to %d images or videos"
     3000msgstr ""
     3001
     3002#: includes/reviews/class-cr-reviews.php:162
     3003msgid "* Please confirm that you are not a robot"
     3004msgstr ""
     3005
     3006#: includes/reviews/class-cr-reviews.php:189
     3007msgid "Error: You tried to upload too many files. The maximum number of files that you can upload is %d."
     3008msgstr ""
     3009
     3010#: includes/reviews/class-cr-reviews.php:190
     3011msgid "Go back to: %s"
     3012msgstr ""
     3013
    29983014#: includes/reviews/class-cr-reviews.php:393
    2999 msgid "Upload up to %d images or videos"
    3000 msgstr ""
    3001 
    3002 #: includes/reviews/class-cr-reviews.php:164
    3003 msgid "* Please confirm that you are not a robot"
    3004 msgstr ""
    3005 
    3006 #: includes/reviews/class-cr-reviews.php:191
    3007 msgid "Error: You tried to upload too many files. The maximum number of files that you can upload is %d."
    3008 msgstr ""
    3009 
    3010 #: includes/reviews/class-cr-reviews.php:192
    3011 msgid "Go back to: %s"
    3012 msgstr ""
    3013 
    3014 #: includes/reviews/class-cr-reviews.php:395
    30153015msgid "Error: You tried to upload too many files. The maximum number of files that can be uploaded is %d."
    30163016msgstr ""
    30173017
    3018 #: includes/reviews/class-cr-reviews.php:437
     3018#: includes/reviews/class-cr-reviews.php:435
    30193019msgid "reCAPTCHA vertification failed and your review cannot be saved."
    30203020msgstr ""
    30213021
    3022 #: includes/reviews/class-cr-reviews.php:437
     3022#: includes/reviews/class-cr-reviews.php:435
    30233023msgid "Add Review Error"
    30243024msgstr ""
    30253025
    3026 #: includes/reviews/class-cr-reviews.php:1120
    3027 #: includes/reviews/class-cr-reviews.php:1178
     3026#: includes/reviews/class-cr-reviews.php:1118
     3027#: includes/reviews/class-cr-reviews.php:1176
    30283028msgid "External link"
    30293029msgstr ""
    30303030
    3031 #: includes/reviews/class-cr-reviews.php:1243
    3032 #: includes/reviews/class-cr-reviews.php:1257
     3031#: includes/reviews/class-cr-reviews.php:1241
     3032#: includes/reviews/class-cr-reviews.php:1255
    30333033msgid "Image #%1$d from %2$s"
    30343034msgstr ""
    30353035
    3036 #: includes/reviews/class-cr-reviews.php:1299
     3036#: includes/reviews/class-cr-reviews.php:1297
    30373037msgid "Customer Images"
    30383038msgstr ""
    30393039
    3040 #: includes/reviews/class-cr-reviews.php:1479
     3040#: includes/reviews/class-cr-reviews.php:1477
    30413041msgid "Error: please solve the CAPTCHA before uploading files"
    30423042msgstr ""
    30433043
    3044 #: includes/reviews/class-cr-reviews.php:1488
     3044#: includes/reviews/class-cr-reviews.php:1486
    30453045msgid "Error: the file(s) is too large"
    30463046msgstr ""
    30473047
    3048 #: includes/reviews/class-cr-reviews.php:1627
     3048#: includes/reviews/class-cr-reviews.php:1625
    30493049msgid "Highest Rating"
    30503050msgstr ""
    30513051
    3052 #: includes/reviews/class-cr-reviews.php:1630
     3052#: includes/reviews/class-cr-reviews.php:1628
    30533053msgid "Lowest Rating"
    30543054msgstr ""
     
    49994999msgstr ""
    50005000
    5001 #: includes/settings/class-cr-settings-shortcodes.php:56
     5001#: includes/settings/class-cr-settings-shortcodes.php:57
    50025002msgid "Shortcodes and Blocks"
    50035003msgstr ""
    50045004
    5005 #: includes/settings/class-cr-settings-shortcodes.php:58
     5005#: includes/settings/class-cr-settings-shortcodes.php:59
    50065006msgid "The plugin provides several shortcodes and Gutenberg blocks that you can use to display reviews in various places on your website. You can find the list of available shortcodes and their parameters below."
    50075007msgstr ""
    50085008
    5009 #: includes/settings/class-cr-settings-shortcodes.php:62
    5010 msgid "Reviews Shortcodes"
    5011 msgstr ""
    5012 
    5013 #: includes/settings/class-cr-settings-shortcodes.php:63
    5014 msgid "Enable shortcodes and Gutenberg blocks"
     5009#: includes/settings/class-cr-settings-shortcodes.php:79
     5010msgid "Use this shortcode to display a list of all reviews on any page or post. Here are the default parameters of the shortcode:"
     5011msgstr ""
     5012
     5013#: includes/settings/class-cr-settings-shortcodes.php:82
     5014#: includes/settings/class-cr-settings-shortcodes.php:110
     5015#: includes/settings/class-cr-settings-shortcodes.php:142
     5016#: includes/settings/class-cr-settings-shortcodes.php:174
     5017#: includes/settings/class-cr-settings-shortcodes.php:183
     5018msgid "Parameters:"
     5019msgstr ""
     5020
     5021#: includes/settings/class-cr-settings-shortcodes.php:84
     5022msgid "%1$s argument defines how reviews are sorted. Possible values are %2$s and %3$s."
    50155023msgstr ""
    50165024
    50175025#: includes/settings/class-cr-settings-shortcodes.php:85
    5018 msgid "Use this shortcode to display a list of all reviews on any page or post. Here are the default parameters of the shortcode:"
     5026msgid "%1$s argument accepts %2$s to sort reviews by date and %3$s to sort reviews by upvotes."
     5027msgstr ""
     5028
     5029#: includes/settings/class-cr-settings-shortcodes.php:86
     5030msgid "%1$s argument defines how many reviews will be shown at once. This argument is ignored when %2$s argument is greater than %3$s."
     5031msgstr ""
     5032
     5033#: includes/settings/class-cr-settings-shortcodes.php:87
     5034#: includes/settings/class-cr-settings-shortcodes.php:133
     5035msgid "%1$s argument accepts %2$s or %3$s and specifies if a summary bar should be shown on top of the reviews."
    50195036msgstr ""
    50205037
    50215038#: includes/settings/class-cr-settings-shortcodes.php:88
     5039msgid "%1$s parameter accepts %2$s or %3$s and specifies if media files uploaded by customers should be shown in an area above the reviews."
     5040msgstr ""
     5041
     5042#: includes/settings/class-cr-settings-shortcodes.php:89
     5043msgid "%1$s argument accepts %2$s or %3$s and specifies if product names along with product thumbnails should be shown for each review."
     5044msgstr ""
     5045
     5046#: includes/settings/class-cr-settings-shortcodes.php:90
     5047#: includes/settings/class-cr-settings-shortcodes.php:117
     5048#: includes/settings/class-cr-settings-shortcodes.php:150
     5049msgid "%1$s argument accepts a comma-separated list of <a href=\"%2$s\">product categories IDs</a> to show only reviews corresponding to specified categories of products."
     5050msgstr ""
     5051
     5052#: includes/settings/class-cr-settings-shortcodes.php:91
     5053#: includes/settings/class-cr-settings-shortcodes.php:118
     5054#: includes/settings/class-cr-settings-shortcodes.php:151
     5055msgid "%1$s argument accepts a comma-separated list of <a href=\"%2$s\">product tags</a>. Use this argument to show reviews from products associated with specific tags only."
     5056msgstr ""
     5057
     5058#: includes/settings/class-cr-settings-shortcodes.php:92
     5059#: includes/settings/class-cr-settings-shortcodes.php:119
     5060#: includes/settings/class-cr-settings-shortcodes.php:152
     5061msgid "%1$s argument accepts a comma-separated list of <a href=\"%2$s\">review tags</a>. Use this argument to show reviews associated with specific tags only."
     5062msgstr ""
     5063
     5064#: includes/settings/class-cr-settings-shortcodes.php:93
     5065#: includes/settings/class-cr-settings-shortcodes.php:120
     5066#: includes/settings/class-cr-settings-shortcodes.php:153
     5067msgid "%1$s parameter accepts %2$s or a comma-separated list of <a href=\"%3$s\">product IDs</a>. Use this parameter to show reviews of the current product only or reviews corresponding to product IDs from the comma-separated list. If you provide an empty list of product IDs like %4$s, the shortcode will display reviews of all products."
     5068msgstr ""
     5069
     5070#: includes/settings/class-cr-settings-shortcodes.php:94
     5071msgid "%1$s argument accepts %2$s or %3$s and specifies if product reviews will be shown."
     5072msgstr ""
     5073
     5074#: includes/settings/class-cr-settings-shortcodes.php:95
     5075#: includes/settings/class-cr-settings-shortcodes.php:127
     5076#: includes/settings/class-cr-settings-shortcodes.php:160
     5077msgid "%1$s argument accepts %2$s or %3$s and specifies if general shop reviews will be shown."
     5078msgstr ""
     5079
     5080#: includes/settings/class-cr-settings-shortcodes.php:96
     5081#: includes/settings/class-cr-settings-shortcodes.php:129
     5082#: includes/settings/class-cr-settings-shortcodes.php:162
     5083msgid "%1$s argument accepts %2$s or %3$s and specifies if reviews corresponding to unpublished products will be shown."
     5084msgstr ""
     5085
     5086#: includes/settings/class-cr-settings-shortcodes.php:97
     5087msgid "%1$s argument accepts %2$s or %3$s and specifies if replies to reviews will be shown."
     5088msgstr ""
     5089
     5090#: includes/settings/class-cr-settings-shortcodes.php:98
     5091msgid "%1$s argument defines the number of additional reviews to display after a user presses the 'Show more' button. If this argument is %2$s, then 'Show more' button will be hidden and the standard WordPress pagination will be used."
     5092msgstr ""
     5093
     5094#: includes/settings/class-cr-settings-shortcodes.php:99
     5095#: includes/settings/class-cr-settings-shortcodes.php:132
     5096#: includes/settings/class-cr-settings-shortcodes.php:166
     5097msgid "%1$s argument defines the minimum number of characters that a review must have to be displayed. If this argument is %2$s, then all reviews (including rating-only reviews) will be displayed."
     5098msgstr ""
     5099
     5100#: includes/settings/class-cr-settings-shortcodes.php:100
     5101#: includes/settings/class-cr-settings-shortcodes.php:130
     5102#: includes/settings/class-cr-settings-shortcodes.php:164
     5103msgid "%1$s argument accepts %2$s, %3$s or %4$s and defines how avatars of customers will be displayed on reviews."
     5104msgstr ""
     5105
     5106#: includes/settings/class-cr-settings-shortcodes.php:101
     5107msgid "%1$s parameter accepts %2$s or %3$s. Use it to display reviews written by anyone or only the current WordPress user."
     5108msgstr ""
     5109
     5110#: includes/settings/class-cr-settings-shortcodes.php:102
     5111#: includes/settings/class-cr-settings-shortcodes.php:134
     5112msgid "%1$s parameter accepts %2$s, %3$s or a product ID. Use it to display a form to write a new review. If the shortcode is placed on a page of a product and the parameter is set to %2$s, the review form will correspond to that product. If the shortocode is placed on a non-product page and the parameter is set to %2$s, the review form will collect shop reviews. If the parameter is set to a product ID, the review form will correspond to a product with that ID."
     5113msgstr ""
     5114
     5115#: includes/settings/class-cr-settings-shortcodes.php:106
     5116msgid "Use this shortcode to display a grid of reviews on any page or post. Here are the default parameters of the shortcode:"
     5117msgstr ""
     5118
     5119#: includes/settings/class-cr-settings-shortcodes.php:112
     5120msgid "%1$s argument defines the number of product reviews to show. It is recommended to keep it between %2$s and %3$s."
     5121msgstr ""
     5122
     5123#: includes/settings/class-cr-settings-shortcodes.php:113
     5124#: includes/settings/class-cr-settings-shortcodes.php:146
     5125msgid "%1$s argument accepts %2$s or %3$s and defines if pictures and names of products corresponding to the review will be shown below the review."
     5126msgstr ""
     5127
     5128#: includes/settings/class-cr-settings-shortcodes.php:114
     5129#: includes/settings/class-cr-settings-shortcodes.php:147
     5130msgid "%1$s argument accepts %2$s or %3$s and defines if product names will include links to product pages."
     5131msgstr ""
     5132
     5133#: includes/settings/class-cr-settings-shortcodes.php:115
     5134msgid "%1$s argument accepts %2$s to sort reviews by date, %3$s to sort reviews by rating, and %4$s to sort reviews by the number of attached images."
     5135msgstr ""
     5136
    50225137#: includes/settings/class-cr-settings-shortcodes.php:116
    5023 #: includes/settings/class-cr-settings-shortcodes.php:148
    5024 #: includes/settings/class-cr-settings-shortcodes.php:180
    5025 #: includes/settings/class-cr-settings-shortcodes.php:189
    5026 msgid "Parameters:"
    5027 msgstr ""
    5028 
    5029 #: includes/settings/class-cr-settings-shortcodes.php:90
    5030 msgid "%1$s argument defines how reviews are sorted. Possible values are %2$s and %3$s."
    5031 msgstr ""
    5032 
    5033 #: includes/settings/class-cr-settings-shortcodes.php:91
    5034 msgid "%1$s argument accepts %2$s to sort reviews by date and %3$s to sort reviews by upvotes."
    5035 msgstr ""
    5036 
    5037 #: includes/settings/class-cr-settings-shortcodes.php:92
    5038 msgid "%1$s argument defines how many reviews will be shown at once. This argument is ignored when %2$s argument is greater than %3$s."
    5039 msgstr ""
    5040 
    5041 #: includes/settings/class-cr-settings-shortcodes.php:93
    5042 #: includes/settings/class-cr-settings-shortcodes.php:139
    5043 msgid "%1$s argument accepts %2$s or %3$s and specifies if a summary bar should be shown on top of the reviews."
    5044 msgstr ""
    5045 
    5046 #: includes/settings/class-cr-settings-shortcodes.php:94
    5047 msgid "%1$s parameter accepts %2$s or %3$s and specifies if media files uploaded by customers should be shown in an area above the reviews."
    5048 msgstr ""
    5049 
    5050 #: includes/settings/class-cr-settings-shortcodes.php:95
    5051 msgid "%1$s argument accepts %2$s or %3$s and specifies if product names along with product thumbnails should be shown for each review."
    5052 msgstr ""
    5053 
    5054 #: includes/settings/class-cr-settings-shortcodes.php:96
     5138#: includes/settings/class-cr-settings-shortcodes.php:149
     5139msgid "%1$s argument defines how reviews are sorted. Possible values are %2$s, %3$s and %4$s."
     5140msgstr ""
     5141
     5142#: includes/settings/class-cr-settings-shortcodes.php:121
     5143msgid "%1$s argument is a hex color code of the external border around the grid of reviews."
     5144msgstr ""
     5145
     5146#: includes/settings/class-cr-settings-shortcodes.php:122
     5147#: includes/settings/class-cr-settings-shortcodes.php:155
     5148msgid "%1$s argument is a hex color code of the border around review cards."
     5149msgstr ""
     5150
    50555151#: includes/settings/class-cr-settings-shortcodes.php:123
    5056 #: includes/settings/class-cr-settings-shortcodes.php:156
    5057 msgid "%1$s argument accepts a comma-separated list of <a href=\"%2$s\">product categories IDs</a> to show only reviews corresponding to specified categories of products."
    5058 msgstr ""
    5059 
    5060 #: includes/settings/class-cr-settings-shortcodes.php:97
     5152msgid "%1$s argument is a hex color code of the external background of the grid."
     5153msgstr ""
     5154
    50615155#: includes/settings/class-cr-settings-shortcodes.php:124
    50625156#: includes/settings/class-cr-settings-shortcodes.php:157
    5063 msgid "%1$s argument accepts a comma-separated list of <a href=\"%2$s\">product tags</a>. Use this argument to show reviews from products associated with specific tags only."
    5064 msgstr ""
    5065 
    5066 #: includes/settings/class-cr-settings-shortcodes.php:98
     5157msgid "%1$s argument is a hex color code of the background of review cards."
     5158msgstr ""
     5159
    50675160#: includes/settings/class-cr-settings-shortcodes.php:125
    50685161#: includes/settings/class-cr-settings-shortcodes.php:158
    5069 msgid "%1$s argument accepts a comma-separated list of <a href=\"%2$s\">review tags</a>. Use this argument to show reviews associated with specific tags only."
    5070 msgstr ""
    5071 
    5072 #: includes/settings/class-cr-settings-shortcodes.php:99
     5162msgid "%1$s argument is a hex color code of the background color of product areas on review cards."
     5163msgstr ""
     5164
    50735165#: includes/settings/class-cr-settings-shortcodes.php:126
    50745166#: includes/settings/class-cr-settings-shortcodes.php:159
    5075 msgid "%1$s parameter accepts %2$s or a comma-separated list of <a href=\"%3$s\">product IDs</a>. Use this parameter to show reviews of the current product only or reviews corresponding to product IDs from the comma-separated list. If you provide an empty list of product IDs like %4$s, the shortcode will display reviews of all products."
    5076 msgstr ""
    5077 
    5078 #: includes/settings/class-cr-settings-shortcodes.php:100
    5079 msgid "%1$s argument accepts %2$s or %3$s and specifies if product reviews will be shown."
    5080 msgstr ""
    5081 
    5082 #: includes/settings/class-cr-settings-shortcodes.php:101
    5083 #: includes/settings/class-cr-settings-shortcodes.php:133
    5084 #: includes/settings/class-cr-settings-shortcodes.php:166
    5085 msgid "%1$s argument accepts %2$s or %3$s and specifies if general shop reviews will be shown."
    5086 msgstr ""
    5087 
    5088 #: includes/settings/class-cr-settings-shortcodes.php:102
    5089 #: includes/settings/class-cr-settings-shortcodes.php:135
    5090 #: includes/settings/class-cr-settings-shortcodes.php:168
    5091 msgid "%1$s argument accepts %2$s or %3$s and specifies if reviews corresponding to unpublished products will be shown."
    5092 msgstr ""
    5093 
    5094 #: includes/settings/class-cr-settings-shortcodes.php:103
    5095 msgid "%1$s argument accepts %2$s or %3$s and specifies if replies to reviews will be shown."
    5096 msgstr ""
    5097 
    5098 #: includes/settings/class-cr-settings-shortcodes.php:104
    5099 msgid "%1$s argument defines the number of additional reviews to display after a user presses the 'Show more' button. If this argument is %2$s, then 'Show more' button will be hidden and the standard WordPress pagination will be used."
    5100 msgstr ""
    5101 
    5102 #: includes/settings/class-cr-settings-shortcodes.php:105
    5103 #: includes/settings/class-cr-settings-shortcodes.php:138
    5104 #: includes/settings/class-cr-settings-shortcodes.php:172
    5105 msgid "%1$s argument defines the minimum number of characters that a review must have to be displayed. If this argument is %2$s, then all reviews (including rating-only reviews) will be displayed."
    5106 msgstr ""
    5107 
    5108 #: includes/settings/class-cr-settings-shortcodes.php:106
    5109 #: includes/settings/class-cr-settings-shortcodes.php:136
    5110 #: includes/settings/class-cr-settings-shortcodes.php:170
    5111 msgid "%1$s argument accepts %2$s, %3$s or %4$s and defines how avatars of customers will be displayed on reviews."
    5112 msgstr ""
    5113 
    5114 #: includes/settings/class-cr-settings-shortcodes.php:107
    5115 msgid "%1$s parameter accepts %2$s or %3$s. Use it to display reviews written by anyone or only the current WordPress user."
    5116 msgstr ""
    5117 
    5118 #: includes/settings/class-cr-settings-shortcodes.php:108
    5119 #: includes/settings/class-cr-settings-shortcodes.php:140
    5120 msgid "%1$s parameter accepts %2$s, %3$s or a product ID. Use it to display a form to write a new review. If the shortcode is placed on a page of a product and the parameter is set to %2$s, the review form will correspond to that product. If the shortocode is placed on a non-product page and the parameter is set to %2$s, the review form will collect shop reviews. If the parameter is set to a product ID, the review form will correspond to a product with that ID."
    5121 msgstr ""
    5122 
    5123 #: includes/settings/class-cr-settings-shortcodes.php:112
    5124 msgid "Use this shortcode to display a grid of reviews on any page or post. Here are the default parameters of the shortcode:"
    5125 msgstr ""
    5126 
    5127 #: includes/settings/class-cr-settings-shortcodes.php:118
    5128 msgid "%1$s argument defines the number of product reviews to show. It is recommended to keep it between %2$s and %3$s."
    5129 msgstr ""
    5130 
    5131 #: includes/settings/class-cr-settings-shortcodes.php:119
    5132 #: includes/settings/class-cr-settings-shortcodes.php:152
    5133 msgid "%1$s argument accepts %2$s or %3$s and defines if pictures and names of products corresponding to the review will be shown below the review."
    5134 msgstr ""
    5135 
    5136 #: includes/settings/class-cr-settings-shortcodes.php:120
    5137 #: includes/settings/class-cr-settings-shortcodes.php:153
    5138 msgid "%1$s argument accepts %2$s or %3$s and defines if product names will include links to product pages."
    5139 msgstr ""
    5140 
    5141 #: includes/settings/class-cr-settings-shortcodes.php:121
    5142 msgid "%1$s argument accepts %2$s to sort reviews by date, %3$s to sort reviews by rating, and %4$s to sort reviews by the number of attached images."
    5143 msgstr ""
    5144 
    5145 #: includes/settings/class-cr-settings-shortcodes.php:122
    5146 #: includes/settings/class-cr-settings-shortcodes.php:155
    5147 msgid "%1$s argument defines how reviews are sorted. Possible values are %2$s, %3$s and %4$s."
    5148 msgstr ""
    5149 
    5150 #: includes/settings/class-cr-settings-shortcodes.php:127
    5151 msgid "%1$s argument is a hex color code of the external border around the grid of reviews."
     5167msgid "%1$s argument is a hex color code of rating stars on review cards."
    51525168msgstr ""
    51535169
    51545170#: includes/settings/class-cr-settings-shortcodes.php:128
    51555171#: includes/settings/class-cr-settings-shortcodes.php:161
    5156 msgid "%1$s argument is a hex color code of the border around review cards."
    5157 msgstr ""
    5158 
    5159 #: includes/settings/class-cr-settings-shortcodes.php:129
    5160 msgid "%1$s argument is a hex color code of the external background of the grid."
    5161 msgstr ""
    5162 
    5163 #: includes/settings/class-cr-settings-shortcodes.php:130
     5172msgid "%1$s argument defines the total number of shop reviews to show. It is recommended to keep it between %2$s and %3$s."
     5173msgstr ""
     5174
     5175#: includes/settings/class-cr-settings-shortcodes.php:131
     5176msgid "%1$s argument defines the number of additional reviews to display after a user presses the 'Show more' button. If this argument is %2$s, then 'Show more' button will be hidden."
     5177msgstr ""
     5178
     5179#: includes/settings/class-cr-settings-shortcodes.php:136
     5180msgid "%1$s shortcode is also available as <strong>Reviews Grid</strong> block in the new WordPress Gutenberg page editor (blocks require WordPress 5.0 or newer)."
     5181msgstr ""
     5182
     5183#: includes/settings/class-cr-settings-shortcodes.php:139
     5184msgid "Use this shortcode to display a slider with reviews on any page or post. Here are the default parameters of the shortcode:"
     5185msgstr ""
     5186
     5187#: includes/settings/class-cr-settings-shortcodes.php:144
     5188msgid "%1$s argument defines the number of product reviews to show. It is recommended to keep it between %2$s and %3$s. If you do not want to show product reviews, set it to %4$s and enable shop reviews (see the parameters below)."
     5189msgstr ""
     5190
     5191#: includes/settings/class-cr-settings-shortcodes.php:145
     5192msgid "%1$s argument defines the number of slides to show. It is recommended to keep it between %2$s and %3$s."
     5193msgstr ""
     5194
     5195#: includes/settings/class-cr-settings-shortcodes.php:148
     5196msgid "%1$s argument accepts %2$s to sort reviews by date and %3$s to sort reviews by rating."
     5197msgstr ""
     5198
     5199#: includes/settings/class-cr-settings-shortcodes.php:154
     5200msgid "%1$s argument is a hex color code of the external border around the slider."
     5201msgstr ""
     5202
     5203#: includes/settings/class-cr-settings-shortcodes.php:156
     5204msgid "%1$s argument is a hex color code of the external background of the slider."
     5205msgstr ""
     5206
    51645207#: includes/settings/class-cr-settings-shortcodes.php:163
    5165 msgid "%1$s argument is a hex color code of the background of review cards."
    5166 msgstr ""
    5167 
    5168 #: includes/settings/class-cr-settings-shortcodes.php:131
    5169 #: includes/settings/class-cr-settings-shortcodes.php:164
    5170 msgid "%1$s argument is a hex color code of the background color of product areas on review cards."
    5171 msgstr ""
    5172 
    5173 #: includes/settings/class-cr-settings-shortcodes.php:132
     5208msgid "%1$s argument accepts %2$s or %3$s and defines if the slider will slide automatically."
     5209msgstr ""
     5210
    51745211#: includes/settings/class-cr-settings-shortcodes.php:165
    5175 msgid "%1$s argument is a hex color code of rating stars on review cards."
    5176 msgstr ""
    5177 
    5178 #: includes/settings/class-cr-settings-shortcodes.php:134
     5212msgid "%1$s argument limits the number of characters that are displayed by default for each review. A 'Show More' button will be added to display the remaining content for reviews that exceed this limit. If you do not want to limit the number of characters to display, set this argument to %2$s."
     5213msgstr ""
     5214
    51795215#: includes/settings/class-cr-settings-shortcodes.php:167
    5180 msgid "%1$s argument defines the total number of shop reviews to show. It is recommended to keep it between %2$s and %3$s."
    5181 msgstr ""
    5182 
    5183 #: includes/settings/class-cr-settings-shortcodes.php:137
    5184 msgid "%1$s argument defines the number of additional reviews to display after a user presses the 'Show more' button. If this argument is %2$s, then 'Show more' button will be hidden."
    5185 msgstr ""
    5186 
    5187 #: includes/settings/class-cr-settings-shortcodes.php:142
    5188 msgid "%1$s shortcode is also available as <strong>Reviews Grid</strong> block in the new WordPress Gutenberg page editor (blocks require WordPress 5.0 or newer)."
    5189 msgstr ""
    5190 
    5191 #: includes/settings/class-cr-settings-shortcodes.php:145
    5192 msgid "Use this shortcode to display a slider with reviews on any page or post. Here are the default parameters of the shortcode:"
    5193 msgstr ""
    5194 
    5195 #: includes/settings/class-cr-settings-shortcodes.php:150
    5196 msgid "%1$s argument defines the number of product reviews to show. It is recommended to keep it between %2$s and %3$s. If you do not want to show product reviews, set it to %4$s and enable shop reviews (see the parameters below)."
    5197 msgstr ""
    5198 
    5199 #: includes/settings/class-cr-settings-shortcodes.php:151
    5200 msgid "%1$s argument defines the number of slides to show. It is recommended to keep it between %2$s and %3$s."
    5201 msgstr ""
    5202 
    5203 #: includes/settings/class-cr-settings-shortcodes.php:154
    5204 msgid "%1$s argument accepts %2$s to sort reviews by date and %3$s to sort reviews by rating."
    5205 msgstr ""
    5206 
    5207 #: includes/settings/class-cr-settings-shortcodes.php:160
    5208 msgid "%1$s argument is a hex color code of the external border around the slider."
    5209 msgstr ""
    5210 
    5211 #: includes/settings/class-cr-settings-shortcodes.php:162
    5212 msgid "%1$s argument is a hex color code of the external background of the slider."
     5216msgid "%1$s argument accepts %2$s or %3$s and specifies if dot indicators will be shown."
    52135217msgstr ""
    52145218
    52155219#: includes/settings/class-cr-settings-shortcodes.php:169
    5216 msgid "%1$s argument accepts %2$s or %3$s and defines if the slider will slide automatically."
    5217 msgstr ""
    5218 
    5219 #: includes/settings/class-cr-settings-shortcodes.php:171
    5220 msgid "%1$s argument limits the number of characters that are displayed by default for each review. A 'Show More' button will be added to display the remaining content for reviews that exceed this limit. If you do not want to limit the number of characters to display, set this argument to %2$s."
    5221 msgstr ""
    5222 
    5223 #: includes/settings/class-cr-settings-shortcodes.php:173
    5224 msgid "%1$s argument accepts %2$s or %3$s and specifies if dot indicators will be shown."
    5225 msgstr ""
    5226 
    5227 #: includes/settings/class-cr-settings-shortcodes.php:175
    52285220msgid "%1$s shortcode is also available as <strong>Reviews Slider</strong> block in the new WordPress Gutenberg page editor (blocks require WordPress 5.0 or newer)."
    52295221msgstr ""
    52305222
    5231 #: includes/settings/class-cr-settings-shortcodes.php:178
     5223#: includes/settings/class-cr-settings-shortcodes.php:172
    52325224msgid "Use this shortcode to display a widget with rating stars on any single WooCommerce product page. Here are the default parameters of the shortcode:"
    52335225msgstr ""
    52345226
    5235 #: includes/settings/class-cr-settings-shortcodes.php:182
     5227#: includes/settings/class-cr-settings-shortcodes.php:176
    52365228msgid "%1$s parameter is a hex color code of rating stars."
    52375229msgstr ""
    52385230
    5239 #: includes/settings/class-cr-settings-shortcodes.php:183
     5231#: includes/settings/class-cr-settings-shortcodes.php:177
    52405232msgid "%1$s parameter accepts a product ID. Use this parameter to show rating stars of a specific product. If you provide an empty parameter like %2$s and place the shortcode on a WooCommerce product page, it will display a rating of that product."
    52415233msgstr ""
    52425234
    5243 #: includes/settings/class-cr-settings-shortcodes.php:187
     5235#: includes/settings/class-cr-settings-shortcodes.php:181
    52445236msgid "Use this shortcode to display a block with Questions and Answers on any page or post. Here are the default parameters of the shortcode:"
    52455237msgstr ""
    52465238
    5247 #: includes/settings/class-cr-settings-shortcodes.php:191
     5239#: includes/settings/class-cr-settings-shortcodes.php:185
    52485240msgid "%1$s parameter accepts a comma-separated list of product IDs or %2$s. If product IDs are provided, the block will display Q & A linked to the corresponding products. If the parameter is equal to %3$s, the block will display Q & A for all products in the store."
    52495241msgstr ""
    52505242
    5251 #: includes/settings/class-cr-settings-shortcodes.php:192
     5243#: includes/settings/class-cr-settings-shortcodes.php:186
    52525244msgid "%1$s parameter accepts a comma-separated list of non-product pages (e.g., regular WordPress pages or posts) or %2$s. If non-product page IDs are provided, the block will display Q & A linked to the corresponding non-product pages. If the parameter is equal to %3$s, the block will display Q & A for all non-product pages in the store."
    52535245msgstr ""
     
    56035595msgstr ""
    56045596
    5605 #: ivole.php:166
     5597#: ivole.php:160
    56065598msgid "It looks like this site has moved or is a duplicate site. %1$sCustomer Reviews for WooCommerce%2$s has disabled sending automatic review reminder emails on this site to prevent duplicate reminders from a staging or test environment."
    56075599msgstr ""
    56085600
    5609 #: ivole.php:168
     5601#: ivole.php:162
    56105602msgid "Hide this message (but don't enable automatic review reminders)"
    56115603msgstr ""
    56125604
    5613 #: ivole.php:169
     5605#: ivole.php:163
    56145606msgid "Enable automatic review reminders"
    56155607msgstr ""
     
    56405632msgstr ""
    56415633
    5642 #: templates/cr-ajax-product-reviews.php:125
     5634#: templates/cr-ajax-product-reviews.php:126
    56435635#: templates/cr-shortcode-rating.php:49
    56445636#: templates/cr-single-product-reviews.php:74
  • customer-reviews-woocommerce/trunk/readme.txt

    r3304077 r3315486  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 5.78.1
     7Stable tag: 5.79.0
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl.html
     
    2121The **Customer Reviews for WooCommerce** plugin helps you increase engagement, build loyalty, improve SEO, and get more sales with social proof.
    2222
    23 **Localized to 30 languages and installed on over 70,000 stores!**
     23**Localized to 30 languages and installed on over 80,000 stores!**
    2424
    2525The plugin includes an optional integration with an external service to verify customer reviews. **CusRev** collects reviews from customers and verifies their authenticity.
     
    234234== Changelog ==
    235235
     236= 5.79.0 =
     237* Improvement: removal of the checkbox to enable/disable shortcodes to avoid confusion
     238* Improvement: compatibility with websites that have disabled threaded comments
     239* Bug fix: unnecessary captcha verification for logged-in users on upload of media files
    236240= 5.78.1 =
    237241* Improvement: CSS rules to improve compatibility with different browsers
  • customer-reviews-woocommerce/trunk/templates/cr-ajax-product-reviews.php

    r3276987 r3315486  
    8989                        array(
    9090                            'callback' => array( 'CR_Reviews', 'callback_comments' ),
     91                            'max_depth' => 5,
    9192                            'reverse_top_level' => false,
    9293                            'per_page' => $cr_per_page,
Note: See TracChangeset for help on using the changeset viewer.