Plugin Directory

Changeset 2366462


Ignore:
Timestamp:
08/21/2020 11:18:51 AM (5 years ago)
Author:
codeinwp
Message:

Release v3.7.11

Location:
wp-product-review
Files:
1476 added
1 deleted
17 edited

Legend:

Unmodified
Added
Removed
  • wp-product-review/trunk/CHANGELOG.md

    r2343852 r2366462  
    11
    2  ### v3.7.10 - 2020-07-21
    3  **Changes:**
    4  
     2 ### v3.7.11 - 2020-08-21
     3 **Changes:**
     4 * [Fix] Compatibility with WP 5.5
     5* [Fix] Compatibility with AMP for WP plugin
     6 
    57 ### v3.7.10 - 2020-06-24
    68 **Changes:**
  • wp-product-review/trunk/includes/class-wppr.php

    r2329824 r2366462  
    6868    public function __construct() {
    6969        $this->plugin_name = 'wppr';
    70         $this->version     = '3.7.10';
     70        $this->version     = '3.7.11';
    7171
    7272        $this->load_dependencies();
  • wp-product-review/trunk/includes/gutenberg/class-wppr-gutenberg.php

    r2329824 r2366462  
    134134                    ),
    135135                ),
     136                'permission_callback' => function () {
     137                    return current_user_can( 'edit_posts' );
     138                },
    136139            )
    137140        );
  • wp-product-review/trunk/includes/public/class-wppr-public.php

    r2329824 r2366462  
    171171
    172172    /**
     173     * Is this an AMP page?
     174     */
     175    private function is_amp_page() {
     176        if ( ! function_exists( 'ampforwp_is_amp_endpoint' ) || ! function_exists( 'is_amp_endpoint' ) ) {
     177            return false;
     178        }
     179        if ( ! ampforwp_is_amp_endpoint() || ! is_amp_endpoint() ) {
     180            return false;
     181        }
     182        return true;
     183    }
     184
     185    /**
    173186     * Load AMP logic.
    174187     */
     
    177190            return;
    178191        }
    179         if ( ! function_exists( 'ampforwp_is_amp_endpoint' ) || ! function_exists( 'is_amp_endpoint' ) ) {
    180             return;
    181         }
    182         if ( ! ampforwp_is_amp_endpoint() || ! is_amp_endpoint() ) {
     192
     193        if ( ! $this->is_amp_page() ) {
    183194            return;
    184195        }
     
    486497        }
    487498
    488         if ( $this->review->is_active() && is_singular() && in_the_loop() ) {
     499        if ( $this->review->is_active() && is_singular() && ( $this->is_amp_page() || in_the_loop() ) ) {
    489500            $output        = '';
    490501            $review_object = $this->review;
  • wp-product-review/trunk/package-lock.json

    r2343852 r2366462  
    11{
    22  "name": "wp-product-review",
    3   "version": "3.7.10",
     3  "version": "3.7.11",
    44  "lockfileVersion": 1,
    55  "requires": true,
     
    2828      "optional": true
    2929    },
     30    "@types/color-name": {
     31      "version": "1.1.1",
     32      "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
     33      "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
     34      "dev": true
     35    },
    3036    "@types/q": {
    3137      "version": "1.5.4",
     
    4248    },
    4349    "ajv": {
    44       "version": "6.12.3",
    45       "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz",
    46       "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==",
     50      "version": "6.12.4",
     51      "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz",
     52      "integrity": "sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==",
    4753      "dev": true,
    4854      "requires": {
     
    6066    },
    6167    "ansi-styles": {
    62       "version": "3.2.1",
    63       "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
    64       "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
    65       "dev": true,
    66       "requires": {
    67         "color-convert": "1.9.3"
     68      "version": "4.2.1",
     69      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
     70      "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
     71      "dev": true,
     72      "requires": {
     73        "@types/color-name": "1.1.1",
     74        "color-convert": "2.0.1"
    6875      }
    6976    },
     
    110117        "buffer-crc32": "0.2.13",
    111118        "glob": "7.1.6",
    112         "lodash": "4.17.19",
     119        "lodash": "4.17.20",
    113120        "readable-stream": "2.3.7",
    114121        "tar-stream": "1.6.2",
     
    123130          "dev": true,
    124131          "requires": {
    125             "lodash": "4.17.19"
     132            "lodash": "4.17.20"
    126133          }
    127134        }
     
    137144        "graceful-fs": "4.2.4",
    138145        "lazystream": "1.0.0",
    139         "lodash": "4.17.19",
     146        "lodash": "4.17.20",
    140147        "normalize-path": "2.1.1",
    141148        "readable-stream": "2.3.7"
     
    278285    },
    279286    "autoprefixer": {
    280       "version": "9.8.5",
    281       "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.5.tgz",
    282       "integrity": "sha512-C2p5KkumJlsTHoNv9w31NrBRgXhf6eCMteJuHZi2xhkgC+5Vm40MEtCKPhc0qdgAOhox0YPy1SQHTAky05UoKg==",
    283       "dev": true,
    284       "requires": {
    285         "browserslist": "4.13.0",
    286         "caniuse-lite": "1.0.30001104",
     287      "version": "9.8.6",
     288      "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz",
     289      "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==",
     290      "dev": true,
     291      "requires": {
     292        "browserslist": "4.14.0",
     293        "caniuse-lite": "1.0.30001117",
    287294        "colorette": "1.2.1",
    288295        "normalize-range": "0.1.2",
     
    299306    },
    300307    "aws4": {
    301       "version": "1.10.0",
    302       "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz",
    303       "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==",
     308      "version": "1.10.1",
     309      "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.1.tgz",
     310      "integrity": "sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==",
    304311      "dev": true
    305312    },
     
    699706    },
    700707    "browserslist": {
    701       "version": "4.13.0",
    702       "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.13.0.tgz",
    703       "integrity": "sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ==",
    704       "dev": true,
    705       "requires": {
    706         "caniuse-lite": "1.0.30001104",
    707         "electron-to-chromium": "1.3.502",
     708      "version": "4.14.0",
     709      "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz",
     710      "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==",
     711      "dev": true,
     712      "requires": {
     713        "caniuse-lite": "1.0.30001117",
     714        "electron-to-chromium": "1.3.540",
    708715        "escalade": "3.0.2",
    709         "node-releases": "1.1.59"
     716        "node-releases": "1.1.60"
    710717      }
    711718    },
     
    851858    },
    852859    "caniuse-lite": {
    853       "version": "1.0.30001104",
    854       "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001104.tgz",
    855       "integrity": "sha512-pkpCg7dmI/a7WcqM2yfdOiT4Xx5tzyoHAXWsX5/HxZ3TemwDZs0QXdqbE0UPLPVy/7BeK7693YfzfRYfu1YVpg==",
     860      "version": "1.0.30001117",
     861      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001117.tgz",
     862      "integrity": "sha512-4tY0Fatzdx59kYjQs+bNxUwZB03ZEBgVmJ1UkFPz/Q8OLiUUbjct2EdpnXj0fvFTPej2EkbPIG0w8BWsjAyk1Q==",
    856863      "dev": true
    857864    },
     
    875882    },
    876883    "chalk": {
    877       "version": "2.4.2",
    878       "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
    879       "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
    880       "dev": true,
    881       "requires": {
    882         "ansi-styles": "3.2.1",
    883         "escape-string-regexp": "1.0.5",
    884         "supports-color": "5.5.0"
     884      "version": "4.1.0",
     885      "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
     886      "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
     887      "dev": true,
     888      "requires": {
     889        "ansi-styles": "4.2.1",
     890        "supports-color": "7.1.0"
    885891      }
    886892    },
     
    954960        "chalk": "2.4.2",
    955961        "q": "1.5.1"
     962      },
     963      "dependencies": {
     964        "ansi-styles": {
     965          "version": "3.2.1",
     966          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
     967          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
     968          "dev": true,
     969          "optional": true,
     970          "requires": {
     971            "color-convert": "1.9.3"
     972          }
     973        },
     974        "chalk": {
     975          "version": "2.4.2",
     976          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
     977          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
     978          "dev": true,
     979          "optional": true,
     980          "requires": {
     981            "ansi-styles": "3.2.1",
     982            "escape-string-regexp": "1.0.5",
     983            "supports-color": "5.5.0"
     984          }
     985        },
     986        "color-convert": {
     987          "version": "1.9.3",
     988          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
     989          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
     990          "dev": true,
     991          "optional": true,
     992          "requires": {
     993            "color-name": "1.1.3"
     994          }
     995        },
     996        "color-name": {
     997          "version": "1.1.3",
     998          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
     999          "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
     1000          "dev": true,
     1001          "optional": true
     1002        },
     1003        "has-flag": {
     1004          "version": "3.0.0",
     1005          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
     1006          "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
     1007          "dev": true,
     1008          "optional": true
     1009        },
     1010        "supports-color": {
     1011          "version": "5.5.0",
     1012          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
     1013          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
     1014          "dev": true,
     1015          "optional": true,
     1016          "requires": {
     1017            "has-flag": "3.0.0"
     1018          }
     1019        }
    9561020      }
    9571021    },
     
    9791043    },
    9801044    "color-convert": {
    981       "version": "1.9.3",
    982       "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
    983       "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
    984       "dev": true,
    985       "requires": {
    986         "color-name": "1.1.3"
     1045      "version": "2.0.1",
     1046      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
     1047      "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
     1048      "dev": true,
     1049      "requires": {
     1050        "color-name": "1.1.4"
    9871051      }
    9881052    },
    9891053    "color-name": {
    990       "version": "1.1.3",
    991       "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
    992       "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
     1054      "version": "1.1.4",
     1055      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
     1056      "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
    9931057      "dev": true
    9941058    },
     
    10151079    },
    10161080    "commander": {
    1017       "version": "2.8.1",
    1018       "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
    1019       "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=",
    1020       "dev": true,
    1021       "requires": {
    1022         "graceful-readlink": "1.0.1"
    1023       }
     1081      "version": "2.20.3",
     1082      "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
     1083      "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
     1084      "dev": true
    10241085    },
    10251086    "component-emitter": {
     
    14281489        "file-type": "6.2.0",
    14291490        "is-stream": "1.1.0",
    1430         "seek-bzip": "1.0.5",
     1491        "seek-bzip": "1.0.6",
    14311492        "unbzip2-stream": "1.4.3"
    14321493      },
     
    17281789    },
    17291790    "electron-to-chromium": {
    1730       "version": "1.3.502",
    1731       "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.502.tgz",
    1732       "integrity": "sha512-TIeXOaHAvfP7FemGUtAJxStmOc1YFGWFNqdey/4Nk41L9b1nMmDVDGNMIWhZJvOfJxix6Cv5FGEnBK+yvw3UTg==",
     1791      "version": "1.3.540",
     1792      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.540.tgz",
     1793      "integrity": "sha512-IoGiZb8SMqTtkDYJtP8EtCdvv3VMtd1QoTlypO2RUBxRq/Wk0rU5IzhzhMckPaC9XxDqUvWsL0XKOBhTiYVN3w==",
    17331794      "dev": true
    17341795    },
     
    18031864        "has-symbols": "1.0.1",
    18041865        "is-callable": "1.2.0",
    1805         "is-regex": "1.1.0",
     1866        "is-regex": "1.1.1",
    18061867        "object-inspect": "1.8.0",
    18071868        "object-keys": "1.1.1",
     
    25932654      "requires": {
    25942655        "glob": "7.1.6",
    2595         "lodash": "4.17.19",
     2656        "lodash": "4.17.20",
    25962657        "minimatch": "3.0.4"
    25972658      }
     
    26512712      "dev": true
    26522713    },
    2653     "graceful-readlink": {
    2654       "version": "1.0.1",
    2655       "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
    2656       "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
    2657       "dev": true
    2658     },
    26592714    "grunt": {
    2660       "version": "1.2.1",
    2661       "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.2.1.tgz",
    2662       "integrity": "sha512-zgJjn9N56tScvRt/y0+1QA+zDBnKTrkpyeSBqQPLcZvbqTD/oyGMrdZQXmm6I3828s+FmPvxc3Xv+lgKFtudOw==",
     2715      "version": "1.3.0",
     2716      "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.3.0.tgz",
     2717      "integrity": "sha512-6ILlMXv11/4cxuhSMfSU+SfvbxrPuqZrAtLN64+tZpQ3DAKfSQPQHRbTjSbdtxfyQhGZPtN0bDZJ/LdCM5WXXA==",
    26632718      "dev": true,
    26642719      "requires": {
     
    26702725        "grunt-cli": "1.3.2",
    26712726        "grunt-known-options": "1.1.1",
    2672         "grunt-legacy-log": "2.0.0",
    2673         "grunt-legacy-util": "1.1.1",
     2727        "grunt-legacy-log": "3.0.0",
     2728        "grunt-legacy-util": "2.0.0",
    26742729        "iconv-lite": "0.4.24",
    26752730        "js-yaml": "3.14.0",
     
    27502805        "chalk": "1.1.3",
    27512806        "iltorb": "2.4.5",
    2752         "lodash": "4.17.19",
     2807        "lodash": "4.17.20",
    27532808        "pretty-bytes": "4.0.2",
    27542809        "stream-buffers": "2.2.0"
     
    28362891      },
    28372892      "dependencies": {
     2893        "ansi-styles": {
     2894          "version": "3.2.1",
     2895          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
     2896          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
     2897          "dev": true,
     2898          "requires": {
     2899            "color-convert": "1.9.3"
     2900          }
     2901        },
     2902        "chalk": {
     2903          "version": "2.4.2",
     2904          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
     2905          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
     2906          "dev": true,
     2907          "requires": {
     2908            "ansi-styles": "3.2.1",
     2909            "escape-string-regexp": "1.0.5",
     2910            "supports-color": "5.5.0"
     2911          }
     2912        },
     2913        "color-convert": {
     2914          "version": "1.9.3",
     2915          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
     2916          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
     2917          "dev": true,
     2918          "requires": {
     2919            "color-name": "1.1.3"
     2920          }
     2921        },
     2922        "color-name": {
     2923          "version": "1.1.3",
     2924          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
     2925          "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
     2926          "dev": true
     2927        },
     2928        "has-flag": {
     2929          "version": "3.0.0",
     2930          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
     2931          "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
     2932          "dev": true
     2933        },
    28382934        "pretty-bytes": {
    28392935          "version": "5.3.0",
     
    28412937          "integrity": "sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg==",
    28422938          "dev": true
     2939        },
     2940        "supports-color": {
     2941          "version": "5.5.0",
     2942          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
     2943          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
     2944          "dev": true,
     2945          "requires": {
     2946            "has-flag": "3.0.0"
     2947          }
    28432948        }
    28442949      }
     
    28532958        "hooker": "0.2.3",
    28542959        "jshint": "2.10.3"
     2960      },
     2961      "dependencies": {
     2962        "ansi-styles": {
     2963          "version": "3.2.1",
     2964          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
     2965          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
     2966          "dev": true,
     2967          "requires": {
     2968            "color-convert": "1.9.3"
     2969          }
     2970        },
     2971        "chalk": {
     2972          "version": "2.4.2",
     2973          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
     2974          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
     2975          "dev": true,
     2976          "requires": {
     2977            "ansi-styles": "3.2.1",
     2978            "escape-string-regexp": "1.0.5",
     2979            "supports-color": "5.5.0"
     2980          }
     2981        },
     2982        "color-convert": {
     2983          "version": "1.9.3",
     2984          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
     2985          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
     2986          "dev": true,
     2987          "requires": {
     2988            "color-name": "1.1.3"
     2989          }
     2990        },
     2991        "color-name": {
     2992          "version": "1.1.3",
     2993          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
     2994          "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
     2995          "dev": true
     2996        },
     2997        "has-flag": {
     2998          "version": "3.0.0",
     2999          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
     3000          "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
     3001          "dev": true
     3002        },
     3003        "supports-color": {
     3004          "version": "5.5.0",
     3005          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
     3006          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
     3007          "dev": true,
     3008          "requires": {
     3009            "has-flag": "3.0.0"
     3010          }
     3011        }
    28553012      }
    28563013    },
     
    28633020        "async": "2.6.3",
    28643021        "gaze": "1.1.3",
    2865         "lodash": "4.17.19",
     3022        "lodash": "4.17.20",
    28663023        "tiny-lr": "1.1.1"
    28673024      },
     
    28733030          "dev": true,
    28743031          "requires": {
    2875             "lodash": "4.17.19"
     3032            "lodash": "4.17.20"
    28763033          }
    28773034        }
     
    28913048    },
    28923049    "grunt-legacy-log": {
     3050      "version": "3.0.0",
     3051      "resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz",
     3052      "integrity": "sha512-GHZQzZmhyq0u3hr7aHW4qUH0xDzwp2YXldLPZTCjlOeGscAOWWPftZG3XioW8MasGp+OBRIu39LFx14SLjXRcA==",
     3053      "dev": true,
     3054      "requires": {
     3055        "colors": "1.1.2",
     3056        "grunt-legacy-log-utils": "2.1.0",
     3057        "hooker": "0.2.3",
     3058        "lodash": "4.17.20"
     3059      }
     3060    },
     3061    "grunt-legacy-log-utils": {
     3062      "version": "2.1.0",
     3063      "resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz",
     3064      "integrity": "sha512-lwquaPXJtKQk0rUM1IQAop5noEpwFqOXasVoedLeNzaibf/OPWjKYvvdqnEHNmU+0T0CaReAXIbGo747ZD+Aaw==",
     3065      "dev": true,
     3066      "requires": {
     3067        "chalk": "4.1.0",
     3068        "lodash": "4.17.20"
     3069      }
     3070    },
     3071    "grunt-legacy-util": {
    28933072      "version": "2.0.0",
    2894       "resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz",
    2895       "integrity": "sha512-1m3+5QvDYfR1ltr8hjiaiNjddxGdQWcH0rw1iKKiQnF0+xtgTazirSTGu68RchPyh1OBng1bBUjLmX8q9NpoCw==",
    2896       "dev": true,
    2897       "requires": {
    2898         "colors": "1.1.2",
    2899         "grunt-legacy-log-utils": "2.0.1",
    2900         "hooker": "0.2.3",
    2901         "lodash": "4.17.19"
    2902       }
    2903     },
    2904     "grunt-legacy-log-utils": {
    2905       "version": "2.0.1",
    2906       "resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz",
    2907       "integrity": "sha512-o7uHyO/J+i2tXG8r2bZNlVk20vlIFJ9IEYyHMCQGfWYru8Jv3wTqKZzvV30YW9rWEjq0eP3cflQ1qWojIe9VFA==",
    2908       "dev": true,
    2909       "requires": {
    2910         "chalk": "2.4.2",
    2911         "lodash": "4.17.19"
    2912       }
    2913     },
    2914     "grunt-legacy-util": {
    2915       "version": "1.1.1",
    2916       "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz",
    2917       "integrity": "sha512-9zyA29w/fBe6BIfjGENndwoe1Uy31BIXxTH3s8mga0Z5Bz2Sp4UCjkeyv2tI449ymkx3x26B+46FV4fXEddl5A==",
     3073      "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.0.tgz",
     3074      "integrity": "sha512-ZEmYFB44bblwPE2oz3q3ygfF6hseQja9tx8I3UZIwbUik32FMWewA+d1qSFicMFB+8dNXDkh35HcDCWlpRsGlA==",
    29183075      "dev": true,
    29193076      "requires": {
     
    29223079        "getobject": "0.1.0",
    29233080        "hooker": "0.2.3",
    2924         "lodash": "4.17.19",
     3081        "lodash": "4.17.20",
    29253082        "underscore.string": "3.3.5",
    29263083        "which": "1.3.1"
     
    32593416      "dev": true,
    32603417      "requires": {
    3261         "autoprefixer": "9.8.5",
     3418        "autoprefixer": "9.8.6",
    32623419        "grunt": "1.0.4",
    32633420        "grunt-cachebuster": "0.1.7",
     
    32863443      },
    32873444      "dependencies": {
     3445        "ansi-styles": {
     3446          "version": "3.2.1",
     3447          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
     3448          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
     3449          "dev": true,
     3450          "requires": {
     3451            "color-convert": "1.9.3"
     3452          }
     3453        },
     3454        "chalk": {
     3455          "version": "2.4.2",
     3456          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
     3457          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
     3458          "dev": true,
     3459          "requires": {
     3460            "ansi-styles": "3.2.1",
     3461            "escape-string-regexp": "1.0.5",
     3462            "supports-color": "5.5.0"
     3463          }
     3464        },
     3465        "color-convert": {
     3466          "version": "1.9.3",
     3467          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
     3468          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
     3469          "dev": true,
     3470          "requires": {
     3471            "color-name": "1.1.3"
     3472          }
     3473        },
     3474        "color-name": {
     3475          "version": "1.1.3",
     3476          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
     3477          "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
     3478          "dev": true
     3479        },
    32883480        "dateformat": {
    32893481          "version": "1.0.12",
     
    33493541          }
    33503542        },
     3543        "grunt-legacy-log": {
     3544          "version": "2.0.0",
     3545          "resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz",
     3546          "integrity": "sha512-1m3+5QvDYfR1ltr8hjiaiNjddxGdQWcH0rw1iKKiQnF0+xtgTazirSTGu68RchPyh1OBng1bBUjLmX8q9NpoCw==",
     3547          "dev": true,
     3548          "requires": {
     3549            "colors": "1.1.2",
     3550            "grunt-legacy-log-utils": "2.0.1",
     3551            "hooker": "0.2.3",
     3552            "lodash": "4.17.20"
     3553          }
     3554        },
     3555        "grunt-legacy-log-utils": {
     3556          "version": "2.0.1",
     3557          "resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz",
     3558          "integrity": "sha512-o7uHyO/J+i2tXG8r2bZNlVk20vlIFJ9IEYyHMCQGfWYru8Jv3wTqKZzvV30YW9rWEjq0eP3cflQ1qWojIe9VFA==",
     3559          "dev": true,
     3560          "requires": {
     3561            "chalk": "2.4.2",
     3562            "lodash": "4.17.20"
     3563          }
     3564        },
     3565        "grunt-legacy-util": {
     3566          "version": "1.1.1",
     3567          "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz",
     3568          "integrity": "sha512-9zyA29w/fBe6BIfjGENndwoe1Uy31BIXxTH3s8mga0Z5Bz2Sp4UCjkeyv2tI449ymkx3x26B+46FV4fXEddl5A==",
     3569          "dev": true,
     3570          "requires": {
     3571            "async": "1.5.2",
     3572            "exit": "0.1.2",
     3573            "getobject": "0.1.0",
     3574            "hooker": "0.2.3",
     3575            "lodash": "4.17.20",
     3576            "underscore.string": "3.3.5",
     3577            "which": "1.3.1"
     3578          }
     3579        },
     3580        "has-flag": {
     3581          "version": "3.0.0",
     3582          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
     3583          "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
     3584          "dev": true
     3585        },
    33513586        "js-yaml": {
    33523587          "version": "3.13.1",
     
    33983633            }
    33993634          }
     3635        },
     3636        "supports-color": {
     3637          "version": "5.5.0",
     3638          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
     3639          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
     3640          "dev": true,
     3641          "requires": {
     3642            "has-flag": "3.0.0"
     3643          }
    34003644        }
    34013645      }
     
    34123656      },
    34133657      "dependencies": {
     3658        "ansi-styles": {
     3659          "version": "3.2.1",
     3660          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
     3661          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
     3662          "dev": true,
     3663          "requires": {
     3664            "color-convert": "1.9.3"
     3665          }
     3666        },
     3667        "chalk": {
     3668          "version": "2.4.2",
     3669          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
     3670          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
     3671          "dev": true,
     3672          "requires": {
     3673            "ansi-styles": "3.2.1",
     3674            "escape-string-regexp": "1.0.5",
     3675            "supports-color": "5.5.0"
     3676          }
     3677        },
     3678        "color-convert": {
     3679          "version": "1.9.3",
     3680          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
     3681          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
     3682          "dev": true,
     3683          "requires": {
     3684            "color-name": "1.1.3"
     3685          }
     3686        },
     3687        "color-name": {
     3688          "version": "1.1.3",
     3689          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
     3690          "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
     3691          "dev": true
     3692        },
     3693        "has-flag": {
     3694          "version": "3.0.0",
     3695          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
     3696          "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
     3697          "dev": true
     3698        },
    34143699        "postcss": {
    34153700          "version": "6.0.23",
     
    34283713          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
    34293714          "dev": true
     3715        },
     3716        "supports-color": {
     3717          "version": "5.5.0",
     3718          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
     3719          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
     3720          "dev": true,
     3721          "requires": {
     3722            "has-flag": "3.0.0"
     3723          }
    34303724        }
    34313725      }
     
    34633757      "dev": true,
    34643758      "requires": {
    3465         "grunt": "1.2.1",
     3759        "grunt": "1.3.0",
    34663760        "semver": "6.3.0"
    34673761      },
     
    34833777        "cssbeautify": "0.3.1",
    34843778        "csscomb": "3.1.8",
    3485         "lodash": "4.17.19"
     3779        "lodash": "4.17.20"
    34863780      }
    34873781    },
     
    34923786      "dev": true,
    34933787      "requires": {
    3494         "grunt": "1.2.1",
     3788        "grunt": "1.3.0",
    34953789        "node-wp-i18n": "1.2.3"
    34963790      }
     
    35093803    },
    35103804    "har-validator": {
    3511       "version": "5.1.3",
    3512       "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
    3513       "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
    3514       "dev": true,
    3515       "requires": {
    3516         "ajv": "6.12.3",
     3805      "version": "5.1.5",
     3806      "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
     3807      "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
     3808      "dev": true,
     3809      "requires": {
     3810        "ajv": "6.12.4",
    35173811        "har-schema": "2.0.0"
    35183812      }
     
    35433837    },
    35443838    "has-flag": {
    3545       "version": "3.0.0",
    3546       "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
    3547       "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
     3839      "version": "4.0.0",
     3840      "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
     3841      "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
    35483842      "dev": true
    35493843    },
     
    40864380    },
    40874381    "is-regex": {
    4088       "version": "1.1.0",
    4089       "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.0.tgz",
    4090       "integrity": "sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw==",
     4382      "version": "1.1.1",
     4383      "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
     4384      "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
    40914385      "dev": true,
    40924386      "requires": {
     
    42394533        "exit": "0.1.2",
    42404534        "htmlparser2": "3.8.3",
    4241         "lodash": "4.17.19",
     4535        "lodash": "4.17.20",
    42424536        "minimatch": "3.0.4",
    42434537        "shelljs": "0.3.0",
     
    44564750    },
    44574751    "lodash": {
    4458       "version": "4.17.19",
    4459       "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
    4460       "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
     4752      "version": "4.17.20",
     4753      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
     4754      "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==",
    44614755      "dev": true
    44624756    },
     
    47525046    },
    47535047    "node-abi": {
    4754       "version": "2.18.0",
    4755       "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.18.0.tgz",
    4756       "integrity": "sha512-yi05ZoiuNNEbyT/xXfSySZE+yVnQW6fxPZuFbLyS1s6b5Kw3HzV2PHOM4XR+nsjzkHxByK+2Wg+yCQbe35l8dw==",
     5048      "version": "2.19.0",
     5049      "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.19.0.tgz",
     5050      "integrity": "sha512-rpKqVe24p9GvMTgtqUXdLR1WQJBGVlkYPU10qHKv9/1i9V/k04MmFLVK2WcHBf1WKKY+ZsdvARPi8F4tfJ4opA==",
    47575051      "dev": true,
    47585052      "optional": true,
     
    47625056    },
    47635057    "node-releases": {
    4764       "version": "1.1.59",
    4765       "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.59.tgz",
    4766       "integrity": "sha512-H3JrdUczbdiwxN5FuJPyCHnGHIFqQ0wWxo+9j1kAXAzqNMAHlo+4I/sYYxpyK0irQ73HgdiyzD32oqQDcU2Osw==",
     5058      "version": "1.1.60",
     5059      "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz",
     5060      "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==",
    47675061      "dev": true
    47685062    },
     
    47825076        "gettext-parser": "3.1.1",
    47835077        "glob": "7.1.6",
    4784         "lodash": "4.17.19",
     5078        "lodash": "4.17.20",
    47855079        "minimist": "1.2.5",
    47865080        "mkdirp": "0.5.5",
     
    53515645      },
    53525646      "dependencies": {
     5647        "ansi-styles": {
     5648          "version": "3.2.1",
     5649          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
     5650          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
     5651          "dev": true,
     5652          "requires": {
     5653            "color-convert": "1.9.3"
     5654          }
     5655        },
     5656        "chalk": {
     5657          "version": "2.4.2",
     5658          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
     5659          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
     5660          "dev": true,
     5661          "requires": {
     5662            "ansi-styles": "3.2.1",
     5663            "escape-string-regexp": "1.0.5",
     5664            "supports-color": "5.5.0"
     5665          },
     5666          "dependencies": {
     5667            "supports-color": {
     5668              "version": "5.5.0",
     5669              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
     5670              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
     5671              "dev": true,
     5672              "requires": {
     5673                "has-flag": "3.0.0"
     5674              }
     5675            }
     5676          }
     5677        },
     5678        "color-convert": {
     5679          "version": "1.9.3",
     5680          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
     5681          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
     5682          "dev": true,
     5683          "requires": {
     5684            "color-name": "1.1.3"
     5685          }
     5686        },
     5687        "color-name": {
     5688          "version": "1.1.3",
     5689          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
     5690          "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
     5691          "dev": true
     5692        },
     5693        "has-flag": {
     5694          "version": "3.0.0",
     5695          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
     5696          "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
     5697          "dev": true
     5698        },
    53535699        "source-map": {
    53545700          "version": "0.6.1",
     
    53875733        "mkdirp": "0.5.5",
    53885734        "napi-build-utils": "1.0.2",
    5389         "node-abi": "2.18.0",
     5735        "node-abi": "2.19.0",
    53905736        "noop-logger": "0.1.1",
    53915737        "npmlog": "4.1.2",
     
    56435989      "requires": {
    56445990        "aws-sign2": "0.7.0",
    5645         "aws4": "1.10.0",
     5991        "aws4": "1.10.1",
    56465992        "caseless": "0.12.0",
    56475993        "combined-stream": "1.0.8",
     
    56495995        "forever-agent": "0.6.1",
    56505996        "form-data": "2.3.3",
    5651         "har-validator": "5.1.3",
     5997        "har-validator": "5.1.5",
    56525998        "http-signature": "1.2.0",
    56535999        "is-typedarray": "1.0.0",
     
    57826128    },
    57836129    "seek-bzip": {
    5784       "version": "1.0.5",
    5785       "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz",
    5786       "integrity": "sha1-z+kXyz0nS8/6x5J1ivUxc+sfq9w=",
    5787       "dev": true,
    5788       "requires": {
    5789         "commander": "2.8.1"
     6130      "version": "1.0.6",
     6131      "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz",
     6132      "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==",
     6133      "dev": true,
     6134      "requires": {
     6135        "commander": "2.20.3"
    57906136      }
    57916137    },
     
    63026648    },
    63036649    "supports-color": {
    6304       "version": "5.5.0",
    6305       "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
    6306       "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
    6307       "dev": true,
    6308       "requires": {
    6309         "has-flag": "3.0.0"
     6650      "version": "7.1.0",
     6651      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
     6652      "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
     6653      "dev": true,
     6654      "requires": {
     6655        "has-flag": "4.0.0"
    63106656      }
    63116657    },
     
    63326678      },
    63336679      "dependencies": {
     6680        "ansi-styles": {
     6681          "version": "3.2.1",
     6682          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
     6683          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
     6684          "dev": true,
     6685          "optional": true,
     6686          "requires": {
     6687            "color-convert": "1.9.3"
     6688          }
     6689        },
     6690        "chalk": {
     6691          "version": "2.4.2",
     6692          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
     6693          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
     6694          "dev": true,
     6695          "optional": true,
     6696          "requires": {
     6697            "ansi-styles": "3.2.1",
     6698            "escape-string-regexp": "1.0.5",
     6699            "supports-color": "5.5.0"
     6700          }
     6701        },
     6702        "color-convert": {
     6703          "version": "1.9.3",
     6704          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
     6705          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
     6706          "dev": true,
     6707          "optional": true,
     6708          "requires": {
     6709            "color-name": "1.1.3"
     6710          }
     6711        },
     6712        "color-name": {
     6713          "version": "1.1.3",
     6714          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
     6715          "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
     6716          "dev": true,
     6717          "optional": true
     6718        },
     6719        "has-flag": {
     6720          "version": "3.0.0",
     6721          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
     6722          "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
     6723          "dev": true,
     6724          "optional": true
     6725        },
    63346726        "mkdirp": {
    63356727          "version": "0.5.5",
     
    63406732          "requires": {
    63416733            "minimist": "1.2.5"
     6734          }
     6735        },
     6736        "supports-color": {
     6737          "version": "5.5.0",
     6738          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
     6739          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
     6740          "dev": true,
     6741          "optional": true,
     6742          "requires": {
     6743            "has-flag": "3.0.0"
    63426744          }
    63436745        }
     
    69577359        "archiver-utils": "1.3.0",
    69587360        "compress-commons": "1.2.2",
    6959         "lodash": "4.17.19",
     7361        "lodash": "4.17.20",
    69607362        "readable-stream": "2.3.7"
    69617363      }
  • wp-product-review/trunk/readme.md

    r2343852 r2366462  
    44**Author URI:** http://themeisle.com 
    55**Requires at least:** 3.5 
    6 **Tested up to:** 5.4 
     6**Tested up to:** 5.5 
    77**Stable tag:** trunk 
    88**License:** GPLv2 or later 
     
    3838
    3939## Changelog ##
     40### 3.7.11 - 2020-08-21  ###
     41
     42* [Fix] Compatibility with WP 5.5
     43* [Fix] Compatibility with AMP for WP plugin
     44
     45
     46
    4047### 3.7.10 - 2020-06-24  ###
    4148
     
    7077* [Fix] Comments area layout in the TwentyTwenty theme
    7178* [Fix] Pros and Cons texts not translatable with Polylang
    72 * [Fix] Image missing link in the Top Products Widget 
     79* [Fix] Image missing link in the Top Products Widget
    7380* [Fix] Bulk activation of plugin aborts activation of subsequent plugins
    7481
     
    243250
    244251* Adds support for custom post-type  and taxonomies in widgets.
    245 * Adds control for time-frame in top reviews widget. 
    246 * Improves responsiveness and removes dependency of pie-chart.js 
     252* Adds control for time-frame in top reviews widget.
     253* Improves responsiveness and removes dependency of pie-chart.js
    247254* Improves notifications when Disqus and Jetpack comments are used.
    248255
     
    250257### 3.1.0 - 2017-09-22  ###
    251258
    252 * Fix for some edge cases when the review box was gone. 
     259* Fix for some edge cases when the review box was gone.
    253260* Improvements assets loading, removed redundant files.
    254 * Improvements perfomance of review query. 
     261* Improvements perfomance of review query.
    255262* Various bug fixes reported by clients.
    256263
     
    316323* Fix for link of the review in the widgets.
    317324* Fix for click link behavior on review picture.
    318 * Fix widget titles default values. 
     325* Fix widget titles default values.
    319326* Fix review rating when comments influence is on.
    320327* Improved security.
     
    341348### 3.0.0 - 2017-08-23  ###
    342349
    343 * Major code refactor ( Please test before update ) 
     350* Major code refactor ( Please test before update )
    344351* Added JSON-LD support
    345352* Improved compatibility with themes
     
    632639
    633640### WP Product Review Documentation ###
    634  [http://docs.themeisle.com/article/173-wp-product-review-documentation](http://docs.themeisle.com/article/173-wp-product-review-documentation) 
    635 
    636  = WP Product Review Shortcode Documentation = 
    637  [http://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation](http://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation) 
    638 
    639  = WP Product Review Comparison Table Documentation = 
    640  [http://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation](http://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation) 
    641 
    642  = Enable user reviews in WP Product Review = 
    643  [http://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie](http://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie) 
    644 
    645  = How to create a listing grid of reviews in WP Product Review = 
    646  [http://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review](http://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review) 
    647 
    648  = Rich Snippets not showing in search results = 
    649  [http://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results](http://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results) 
    650 
    651  = How to add a top products widget in WP Product Review = 
    652  [http://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review](http://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review) 
    653 
    654  = How to remove rich snippets in WP Product Review = 
    655  [http://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review](http://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review) 
    656 
    657  = How to remove Pros/Cons list in WP Product Review = 
    658  [http://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review](http://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review) 
    659 
    660  = How to change the default rating icon in WP Product Review = 
    661  [http://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review](http://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review) 
    662 
    663  = How the visitors rating are influencing the review rating in WP Product Review = 
    664  [http://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review](http://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review) 
    665 
    666  = How to change the rating colours in WP Product Review = 
    667  [http://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review](http://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review) 
    668 
    669  = How to increase number of review options, pros or cons in WP Product Review = 
    670  [http://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review](http://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review) 
    671 
    672  = What actions and filters are available in WP Product Review = 
    673  [http://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review](http://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review) 
    674 
    675  = WP Product Review Documentation = 
    676  [https://docs.themeisle.com/article/173-wp-product-review-documentation](https://docs.themeisle.com/article/173-wp-product-review-documentation) 
    677 
    678  = WP Product Review Shortcode Documentation = 
    679  [https://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation](https://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation) 
    680 
    681  = How to change dynamically the image size for review = 
    682  [https://docs.themeisle.com/article/135-how-to-change-dynamically-the-image-size-for-review](https://docs.themeisle.com/article/135-how-to-change-dynamically-the-image-size-for-review) 
    683 
    684  = How to change dynamically the pros/cons heading text = 
    685  [https://docs.themeisle.com/article/133-how-to-change-dynamically-the-proscons-heading-text](https://docs.themeisle.com/article/133-how-to-change-dynamically-the-proscons-heading-text) 
    686 
    687  = WP Product Review Comparison Table Documentation = 
    688  [https://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation](https://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation) 
    689 
    690  = How to change dynamically the option name format = 
    691  [https://docs.themeisle.com/article/132-how-to-change-dynamically-the-option-name-format](https://docs.themeisle.com/article/132-how-to-change-dynamically-the-option-name-format) 
    692 
    693  = How to make Comment Review option work in any theme = 
    694  [https://docs.themeisle.com/article/54-how-to-make-comment-review-option-work-in-any-theme](https://docs.themeisle.com/article/54-how-to-make-comment-review-option-work-in-any-theme) 
    695 
    696  = Prevent users from posting multiple review on a single post in WP Product Review = 
    697  [https://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review](https://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review) 
    698 
    699  = How to create a listing grid of reviews in WP Product Review = 
    700  [https://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review](https://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review) 
    701 
    702  = Enable user reviews in WP Product Review = 
    703  [https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-review](https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-review) 
    704 
    705  = Rich Snippets not showing in search results = 
    706  [https://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results](https://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results) 
    707 
    708  = What actions and filters are available in WP Product Review = 
    709  [https://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review](https://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review) 
    710 
    711  = How to add a top products widget in WP Product Review = 
    712  [https://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review](https://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review) 
    713 
    714  = How to change the default rating icon in WP Product Review = 
    715  [https://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review](https://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review) 
    716 
    717  = How to remove Pros/Cons list in WP Product Review = 
    718  [https://docs.themeisle.com/article/762-how-to-remove-proscons-list-in-wp-product-review](https://docs.themeisle.com/article/762-how-to-remove-proscons-list-in-wp-product-review) 
    719 
    720  = How to increase number of review options, pros or cons in WP Product Review = 
    721  [https://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review](https://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review) 
    722 
    723  = How to change the rating colours in WP Product Review = 
    724  [https://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review](https://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review) 
    725 
    726  = How to remove rich snippets in WP Product Review = 
    727  [https://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review](https://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review) 
    728 
    729  = How the visitors rating are influencing the review rating in WP Product Review = 
    730  [https://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review](https://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review) 
    731 
    732  = WP Product Review how to change dynamically the image size for review = 
    733  [https://docs.themeisle.com/article/135-wp-product-review-how-to-change-dynamically-the-image-size-for-review](https://docs.themeisle.com/article/135-wp-product-review-how-to-change-dynamically-the-image-size-for-review) 
    734 
    735  = WP Product Review how to change dynamically the option name format = 
    736  [https://docs.themeisle.com/article/132-wp-product-review-how-to-change-dynamically-the-option-name-format](https://docs.themeisle.com/article/132-wp-product-review-how-to-change-dynamically-the-option-name-format) 
    737 
    738  = How to have a whole number ratings in WP Product Review = 
    739  [https://docs.themeisle.com/article/849-how-to-have-a-whole-number-ratings-in-wp-product-review](https://docs.themeisle.com/article/849-how-to-have-a-whole-number-ratings-in-wp-product-review) 
    740 
    741  = How to enable review post types = 
    742  [https://docs.themeisle.com/article/858-how-to-enable-review-post-types](https://docs.themeisle.com/article/858-how-to-enable-review-post-types) 
    743 
    744  = How users can leave review comments without rating = 
    745  [https://docs.themeisle.com/article/862-how-users-can-leave-review-comments-without-rating](https://docs.themeisle.com/article/862-how-users-can-leave-review-comments-without-rating) 
    746 
    747  = How to force description into comparison table = 
    748  [https://docs.themeisle.com/article/859-how-to-force-description-into-comparision-table](https://docs.themeisle.com/article/859-how-to-force-description-into-comparision-table) 
    749 
    750  = How the before/after/manual review box placement works = 
    751  [https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-works](https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-works) 
    752 
    753  = How to dynamically change the name of the review = 
    754  [https://docs.themeisle.com/article/874-how-to-dynamically-change-the-name-of-the-review](https://docs.themeisle.com/article/874-how-to-dynamically-change-the-name-of-the-review) 
    755 
    756  = How to change the status of the review = 
    757  [https://docs.themeisle.com/article/905-how-to-change-the-status-of-the-review](https://docs.themeisle.com/article/905-how-to-change-the-status-of-the-review) 
    758 
    759  = How to disable the review for particular posts = 
    760  [https://docs.themeisle.com/article/904-how-to-disable-the-review-for-particular-posts](https://docs.themeisle.com/article/904-how-to-disable-the-review-for-particular-posts) 
    761 
    762  = How to manually change the rating of a review = 
    763  [https://docs.themeisle.com/article/903-how-to-manually-change-the-rating-of-a-review](https://docs.themeisle.com/article/903-how-to-manually-change-the-rating-of-a-review) 
    764 
    765  = How to dynamically change the price of the review for particular posts = 
    766  [https://docs.themeisle.com/article/906-how-to-dynamically-change-the-price-of-the-review-for-particular-posts](https://docs.themeisle.com/article/906-how-to-dynamically-change-the-price-of-the-review-for-particular-posts) 
    767 
    768  = Amazon Integration Documentation = 
    769  [https://docs.themeisle.com/article/448-amazon-integration-documentation](https://docs.themeisle.com/article/448-amazon-integration-documentation) 
    770 
    771  = In WPPR, how do I,. = 
    772  [https://docs.themeisle.com/article/969-in-wppr-how-do-i](https://docs.themeisle.com/article/969-in-wppr-how-do-i) 
    773 
    774  = How to display product title and image both in review comparison table = 
    775  [https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table) 
    776 
    777  = How To Use WP Product Review Shortcodes = 
    778  [https://docs.themeisle.com/article/449-how-to-use-wp-product-review-shortcodes](https://docs.themeisle.com/article/449-how-to-use-wp-product-review-shortcodes) 
    779 
    780  = How the before/after/manual review box placement option works = 
    781  [https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-option-works](https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-option-works) 
    782 
    783  = How to display both the product title and image in the review comparison table = 
    784  [https://docs.themeisle.com/article/981-how-to-display-both-the-product-title-and-image-in-the-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-both-the-product-title-and-image-in-the-review-comparison-table) 
    785 
    786  = How to change the widget image size in WP Product Review = 
    787  [https://docs.themeisle.com/article/1056-how-to-change-the-widget-image-size-in-wp-product-review](https://docs.themeisle.com/article/1056-how-to-change-the-widget-image-size-in-wp-product-review) 
    788 
    789  = How to make Comment Review option work in any theme = 
    790  [https://docs.themeisle.com/article/54-why-comment-review-option-is-not-working-with-my-theme](https://docs.themeisle.com/article/54-why-comment-review-option-is-not-working-with-my-theme) 
    791 
    792  = Enable user reviews in WP Product Review = 
    793  [https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie](https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie) 
    794 
    795  = How to remove Pros/Cons list in WP Product Review = 
    796  [https://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review](https://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review) 
    797 
    798  = How the before/after/manual review box placement option works = 
    799  [https://docs.themeisle.com/article/865-how-the-before-after-manual-review-box-placement-works](https://docs.themeisle.com/article/865-how-the-before-after-manual-review-box-placement-works) 
    800 
    801  = How to display both the product title and image in the review comparison table = 
    802  [https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-table) 
    803 
    804  = Add specific "Service" types for schema.org in WP Product Review = 
    805  [https://docs.themeisle.com/article/1071-add-specific-service-types-for-schema-org](https://docs.themeisle.com/article/1071-add-specific-service-types-for-schema-org) 
    806 
    807  = How to install the PRO version of WP Product Review = 
    808  [https://docs.themeisle.com/article/785-install-and-use-the-pro-version-of-wp-product-review](https://docs.themeisle.com/article/785-install-and-use-the-pro-version-of-wp-product-review) 
     641 [http://docs.themeisle.com/article/173-wp-product-review-documentation](http://docs.themeisle.com/article/173-wp-product-review-documentation)
     642
     643 = WP Product Review Shortcode Documentation =
     644 [http://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation](http://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation)
     645
     646 = WP Product Review Comparison Table Documentation =
     647 [http://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation](http://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation)
     648
     649 = Enable user reviews in WP Product Review =
     650 [http://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie](http://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie)
     651
     652 = How to create a listing grid of reviews in WP Product Review =
     653 [http://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review](http://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review)
     654
     655 = Rich Snippets not showing in search results =
     656 [http://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results](http://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results)
     657
     658 = How to add a top products widget in WP Product Review =
     659 [http://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review](http://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review)
     660
     661 = How to remove rich snippets in WP Product Review =
     662 [http://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review](http://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review)
     663
     664 = How to remove Pros/Cons list in WP Product Review =
     665 [http://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review](http://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review)
     666
     667 = How to change the default rating icon in WP Product Review =
     668 [http://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review](http://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review)
     669
     670 = How the visitors rating are influencing the review rating in WP Product Review =
     671 [http://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review](http://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review)
     672
     673 = How to change the rating colours in WP Product Review =
     674 [http://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review](http://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review)
     675
     676 = How to increase number of review options, pros or cons in WP Product Review =
     677 [http://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review](http://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review)
     678
     679 = What actions and filters are available in WP Product Review =
     680 [http://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review](http://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review)
     681
     682 = WP Product Review Documentation =
     683 [https://docs.themeisle.com/article/173-wp-product-review-documentation](https://docs.themeisle.com/article/173-wp-product-review-documentation)
     684
     685 = WP Product Review Shortcode Documentation =
     686 [https://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation](https://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation)
     687
     688 = How to change dynamically the image size for review =
     689 [https://docs.themeisle.com/article/135-how-to-change-dynamically-the-image-size-for-review](https://docs.themeisle.com/article/135-how-to-change-dynamically-the-image-size-for-review)
     690
     691 = How to change dynamically the pros/cons heading text =
     692 [https://docs.themeisle.com/article/133-how-to-change-dynamically-the-proscons-heading-text](https://docs.themeisle.com/article/133-how-to-change-dynamically-the-proscons-heading-text)
     693
     694 = WP Product Review Comparison Table Documentation =
     695 [https://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation](https://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation)
     696
     697 = How to change dynamically the option name format =
     698 [https://docs.themeisle.com/article/132-how-to-change-dynamically-the-option-name-format](https://docs.themeisle.com/article/132-how-to-change-dynamically-the-option-name-format)
     699
     700 = How to make Comment Review option work in any theme =
     701 [https://docs.themeisle.com/article/54-how-to-make-comment-review-option-work-in-any-theme](https://docs.themeisle.com/article/54-how-to-make-comment-review-option-work-in-any-theme)
     702
     703 = Prevent users from posting multiple review on a single post in WP Product Review =
     704 [https://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review](https://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review)
     705
     706 = How to create a listing grid of reviews in WP Product Review =
     707 [https://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review](https://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review)
     708
     709 = Enable user reviews in WP Product Review =
     710 [https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-review](https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-review)
     711
     712 = Rich Snippets not showing in search results =
     713 [https://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results](https://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results)
     714
     715 = What actions and filters are available in WP Product Review =
     716 [https://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review](https://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review)
     717
     718 = How to add a top products widget in WP Product Review =
     719 [https://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review](https://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review)
     720
     721 = How to change the default rating icon in WP Product Review =
     722 [https://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review](https://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review)
     723
     724 = How to remove Pros/Cons list in WP Product Review =
     725 [https://docs.themeisle.com/article/762-how-to-remove-proscons-list-in-wp-product-review](https://docs.themeisle.com/article/762-how-to-remove-proscons-list-in-wp-product-review)
     726
     727 = How to increase number of review options, pros or cons in WP Product Review =
     728 [https://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review](https://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review)
     729
     730 = How to change the rating colours in WP Product Review =
     731 [https://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review](https://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review)
     732
     733 = How to remove rich snippets in WP Product Review =
     734 [https://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review](https://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review)
     735
     736 = How the visitors rating are influencing the review rating in WP Product Review =
     737 [https://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review](https://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review)
     738
     739 = WP Product Review how to change dynamically the image size for review =
     740 [https://docs.themeisle.com/article/135-wp-product-review-how-to-change-dynamically-the-image-size-for-review](https://docs.themeisle.com/article/135-wp-product-review-how-to-change-dynamically-the-image-size-for-review)
     741
     742 = WP Product Review how to change dynamically the option name format =
     743 [https://docs.themeisle.com/article/132-wp-product-review-how-to-change-dynamically-the-option-name-format](https://docs.themeisle.com/article/132-wp-product-review-how-to-change-dynamically-the-option-name-format)
     744
     745 = How to have a whole number ratings in WP Product Review =
     746 [https://docs.themeisle.com/article/849-how-to-have-a-whole-number-ratings-in-wp-product-review](https://docs.themeisle.com/article/849-how-to-have-a-whole-number-ratings-in-wp-product-review)
     747
     748 = How to enable review post types =
     749 [https://docs.themeisle.com/article/858-how-to-enable-review-post-types](https://docs.themeisle.com/article/858-how-to-enable-review-post-types)
     750
     751 = How users can leave review comments without rating =
     752 [https://docs.themeisle.com/article/862-how-users-can-leave-review-comments-without-rating](https://docs.themeisle.com/article/862-how-users-can-leave-review-comments-without-rating)
     753
     754 = How to force description into comparison table =
     755 [https://docs.themeisle.com/article/859-how-to-force-description-into-comparision-table](https://docs.themeisle.com/article/859-how-to-force-description-into-comparision-table)
     756
     757 = How the before/after/manual review box placement works =
     758 [https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-works](https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-works)
     759
     760 = How to dynamically change the name of the review =
     761 [https://docs.themeisle.com/article/874-how-to-dynamically-change-the-name-of-the-review](https://docs.themeisle.com/article/874-how-to-dynamically-change-the-name-of-the-review)
     762
     763 = How to change the status of the review =
     764 [https://docs.themeisle.com/article/905-how-to-change-the-status-of-the-review](https://docs.themeisle.com/article/905-how-to-change-the-status-of-the-review)
     765
     766 = How to disable the review for particular posts =
     767 [https://docs.themeisle.com/article/904-how-to-disable-the-review-for-particular-posts](https://docs.themeisle.com/article/904-how-to-disable-the-review-for-particular-posts)
     768
     769 = How to manually change the rating of a review =
     770 [https://docs.themeisle.com/article/903-how-to-manually-change-the-rating-of-a-review](https://docs.themeisle.com/article/903-how-to-manually-change-the-rating-of-a-review)
     771
     772 = How to dynamically change the price of the review for particular posts =
     773 [https://docs.themeisle.com/article/906-how-to-dynamically-change-the-price-of-the-review-for-particular-posts](https://docs.themeisle.com/article/906-how-to-dynamically-change-the-price-of-the-review-for-particular-posts)
     774
     775 = Amazon Integration Documentation =
     776 [https://docs.themeisle.com/article/448-amazon-integration-documentation](https://docs.themeisle.com/article/448-amazon-integration-documentation)
     777
     778 = In WPPR, how do I,. =
     779 [https://docs.themeisle.com/article/969-in-wppr-how-do-i](https://docs.themeisle.com/article/969-in-wppr-how-do-i)
     780
     781 = How to display product title and image both in review comparison table =
     782 [https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table)
     783
     784 = How To Use WP Product Review Shortcodes =
     785 [https://docs.themeisle.com/article/449-how-to-use-wp-product-review-shortcodes](https://docs.themeisle.com/article/449-how-to-use-wp-product-review-shortcodes)
     786
     787 = How the before/after/manual review box placement option works =
     788 [https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-option-works](https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-option-works)
     789
     790 = How to display both the product title and image in the review comparison table =
     791 [https://docs.themeisle.com/article/981-how-to-display-both-the-product-title-and-image-in-the-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-both-the-product-title-and-image-in-the-review-comparison-table)
     792
     793 = How to change the widget image size in WP Product Review =
     794 [https://docs.themeisle.com/article/1056-how-to-change-the-widget-image-size-in-wp-product-review](https://docs.themeisle.com/article/1056-how-to-change-the-widget-image-size-in-wp-product-review)
     795
     796 = How to make Comment Review option work in any theme =
     797 [https://docs.themeisle.com/article/54-why-comment-review-option-is-not-working-with-my-theme](https://docs.themeisle.com/article/54-why-comment-review-option-is-not-working-with-my-theme)
     798
     799 = Enable user reviews in WP Product Review =
     800 [https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie](https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie)
     801
     802 = How to remove Pros/Cons list in WP Product Review =
     803 [https://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review](https://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review)
     804
     805 = How the before/after/manual review box placement option works =
     806 [https://docs.themeisle.com/article/865-how-the-before-after-manual-review-box-placement-works](https://docs.themeisle.com/article/865-how-the-before-after-manual-review-box-placement-works)
     807
     808 = How to display both the product title and image in the review comparison table =
     809 [https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-table)
     810
     811 = Add specific "Service" types for schema.org in WP Product Review =
     812 [https://docs.themeisle.com/article/1071-add-specific-service-types-for-schema-org](https://docs.themeisle.com/article/1071-add-specific-service-types-for-schema-org)
     813
     814 = How to install the PRO version of WP Product Review =
     815 [https://docs.themeisle.com/article/785-install-and-use-the-pro-version-of-wp-product-review](https://docs.themeisle.com/article/785-install-and-use-the-pro-version-of-wp-product-review)
    809816
    810817 == Upgrade Notice ==
  • wp-product-review/trunk/readme.txt

    r2343852 r2366462  
    44Author URI: http://themeisle.com
    55Requires at least: 3.5
    6 Tested up to: 5.4
     6Tested up to: 5.5
    77Stable tag: trunk
    88License: GPLv2 or later
     
    3838
    3939== Changelog ==
     40= 3.7.11 - 2020-08-21  =
     41
     42* [Fix] Compatibility with WP 5.5
     43* [Fix] Compatibility with AMP for WP plugin
     44
     45
     46
    4047= 3.7.10 - 2020-06-24  =
    4148
     
    5158
    5259
    53 = 3.7.8 - 2020-05-22  = 
     60= 3.7.8 - 2020-05-22  =
    5461
    5562* [Fix] Sanitize values
    5663
    5764
    58 = 3.7.7 - 2020-05-21  = 
     65= 3.7.7 - 2020-05-21  =
    5966
    6067* [Fix] Security vulnerability
    6168
    6269
    63 = 3.7.6 - 2020-05-14  = 
     70= 3.7.6 - 2020-05-14  =
    6471
    6572* - [Fix] Security vulnerability
    6673
    6774
    68 = 3.7.5 - 2020-05-08  = 
     75= 3.7.5 - 2020-05-08  =
    6976
    7077* [Fix] Comments area layout in the TwentyTwenty theme
    7178* [Fix] Pros and Cons texts not translatable with Polylang
    72 * [Fix] Image missing link in the Top Products Widget 
     79* [Fix] Image missing link in the Top Products Widget
    7380* [Fix] Bulk activation of plugin aborts activation of subsequent plugins
    7481
    7582
    76 = 3.7.4 - 2020-03-31  = 
     83= 3.7.4 - 2020-03-31  =
    7784
    7885* Tested up to WordPress 5.4
    7986
    8087
    81 = 3.7.3 - 2020-02-24  = 
     88= 3.7.3 - 2020-02-24  =
    8289
    8390* Removed PRO mentions
    8491
    8592
    86 = 3.7.2 - 2019-11-13  = 
     93= 3.7.2 - 2019-11-13  =
    8794
    8895* Tested up to WordPress 5.3
     
    9198
    9299
    93 = 3.7.1 - 2019-08-24  = 
     100= 3.7.1 - 2019-08-24  =
    94101
    95102* Improve UI for AMP requests
     
    98105
    99106
    100 = 3.7.0 - 2019-07-04  = 
     107= 3.7.0 - 2019-07-04  =
    101108
    102109* Add rating scale out of 5
     
    106113
    107114
    108 = 3.6.1 - 2019-05-22  = 
     115= 3.6.1 - 2019-05-22  =
    109116
    110117* Fix error in structured data
     
    112119
    113120
    114 = 3.6.0 - 2019-05-14  = 
     121= 3.6.0 - 2019-05-14  =
    115122
    116123* Add support for more schema types
     
    120127
    121128
    122 = 3.5.2 - 2019-02-28  = 
     129= 3.5.2 - 2019-02-28  =
    123130
    124131* Fix issues with Gutenberg
     
    126133
    127134
    128 = 3.5.1 - 2019-02-13  = 
     135= 3.5.1 - 2019-02-13  =
    129136
    130137* Fix issue with option not showing to add a review in the post editor screen
    131138
    132139
    133 = 3.5.0 - 2019-02-11  = 
     140= 3.5.0 - 2019-02-11  =
    134141
    135142* Fix issue with Gutenberg
     
    142149
    143150
    144 = 3.4.10 - 2018-12-06  = 
     151= 3.4.10 - 2018-12-06  =
    145152
    146153* Add filter to change schema information
     
    150157
    151158
    152 = 3.4.9 - 2018-10-24  = 
     159= 3.4.9 - 2018-10-24  =
    153160
    154161* Add support for review post type in preloader, shortcode and category archive page
     
    156163
    157164
    158 = 3.4.8 - 2018-08-02  = 
     165= 3.4.8 - 2018-08-02  =
    159166
    160167* Added a new custom image of 50x50 for the custom WPPR widgets
     
    162169
    163170
    164 = 3.4.7 - 2018-07-18  = 
     171= 3.4.7 - 2018-07-18  =
    165172
    166173* Fixed alignment issue with the price on the first template
    167174
    168175
    169 = 3.4.6 - 2018-07-12  = 
     176= 3.4.6 - 2018-07-12  =
    170177
    171178* Added RTL compatibility
     
    175182
    176183
    177 = 3.4.5 - 2018-06-18  = 
     184= 3.4.5 - 2018-06-18  =
    178185
    179186* Fixed problem with product price alignment on the first template
    180187
    181188
    182 = 3.4.4 - 2018-06-11  = 
     189= 3.4.4 - 2018-06-11  =
    183190
    184191* Fixed issue with HTML tag not being closed
     
    191198
    192199
    193 = 3.4.3 - 2018-03-20  = 
     200= 3.4.3 - 2018-03-20  =
    194201
    195202* Fix FontAwesome icon issue in custom templates.
     
    198205
    199206
    200 = 3.4.2 - 2018-02-22  = 
     207= 3.4.2 - 2018-02-22  =
    201208
    202209* Fix AMP issue which was causing an issue with Google AMP validation.
    203210
    204211
    205 = 3.4.1 - 2018-02-21  = 
     212= 3.4.1 - 2018-02-21  =
    206213
    207214* Fix issue with category filtering when querying reviews.
    208215
    209216
    210 = 3.4.0 - 2018-02-20  = 
     217= 3.4.0 - 2018-02-20  =
    211218
    212219* Adds AMP support for the review box.
     
    215222
    216223
    217 = 3.3.2 - 2018-01-05  = 
     224= 3.3.2 - 2018-01-05  =
    218225
    219226* Adds filtering option for posts/page admin listing page.
     
    222229
    223230
    224 = 3.3.1 - 2017-12-11  = 
     231= 3.3.1 - 2017-12-11  =
    225232
    226233* Fix for comments rating if not all the options are provided.
     
    228235
    229236
    230 = 3.3.0 - 2017-11-27  = 
     237= 3.3.0 - 2017-11-27  =
    231238
    232239* Fix individual rating influenced by comments.
     
    235242
    236243
    237 = 3.2.1 - 2017-11-16  = 
     244= 3.2.1 - 2017-11-16  =
    238245
    239246* Adds compatibility with WordPress 4.9
    240247
    241248
    242 = 3.2.0 - 2017-11-06  = 
     249= 3.2.0 - 2017-11-06  =
    243250
    244251* Adds support for custom post-type  and taxonomies in widgets.
    245 * Adds control for time-frame in top reviews widget. 
    246 * Improves responsiveness and removes dependency of pie-chart.js 
     252* Adds control for time-frame in top reviews widget.
     253* Improves responsiveness and removes dependency of pie-chart.js
    247254* Improves notifications when Disqus and Jetpack comments are used.
    248255
    249256
    250 = 3.1.0 - 2017-09-22  = 
    251 
    252 * Fix for some edge cases when the review box was gone. 
     257= 3.1.0 - 2017-09-22  =
     258
     259* Fix for some edge cases when the review box was gone.
    253260* Improvements assets loading, removed redundant files.
    254 * Improvements perfomance of review query. 
     261* Improvements perfomance of review query.
    255262* Various bug fixes reported by clients.
    256263
    257264
    258 = 3.0.12 - 2017-09-17  = 
     265= 3.0.12 - 2017-09-17  =
    259266
    260267* Fix for review box issues.
    261268
    262269
    263 = 3.0.11 - 2017-09-15  = 
     270= 3.0.11 - 2017-09-15  =
    264271
    265272* Fix for issue of hidden review box and widget area.
    266273
    267274
    268 = 3.0.10 - 2017-09-12  = 
     275= 3.0.10 - 2017-09-12  =
    269276
    270277* Fix for decimal separator in rich snippet.
     
    273280
    274281
    275 = 3.0.9 - 2017-09-07  = 
     282= 3.0.9 - 2017-09-07  =
    276283
    277284* Improved JSON-LD scheme.
     
    282289
    283290
    284 = 3.0.8 - 2017-09-01  = 
     291= 3.0.8 - 2017-09-01  =
    285292
    286293* Fix for out of memory errors.
     
    290297
    291298
    292 = 3.0.7 - 2017-08-29  = 
     299= 3.0.7 - 2017-08-29  =
    293300
    294301* Fixed empty links for reviews.
     
    296303
    297304
    298 = 3.0.6 - 2017-08-29  = 
     305= 3.0.6 - 2017-08-29  =
    299306
    300307* Fix for category name matching when filtering reviews.
     
    302309
    303310
    304 = 3.0.5 - 2017-08-26  = 
     311= 3.0.5 - 2017-08-26  =
    305312
    306313* Fix for review links opening issue.
     
    308315
    309316
    310 = 3.0.4 - 2017-08-25  = 
     317= 3.0.4 - 2017-08-25  =
    311318
    312319* Fix for rich snippets schema.
     
    316323* Fix for link of the review in the widgets.
    317324* Fix for click link behavior on review picture.
    318 * Fix widget titles default values. 
     325* Fix widget titles default values.
    319326* Fix review rating when comments influence is on.
    320327* Improved security.
    321328
    322329
    323 = 3.0.3 - 2017-08-24  = 
     330= 3.0.3 - 2017-08-24  =
    324331
    325332* Fixed widget assets loading error.
    326333
    327334
    328 = 3.0.2 - 2017-08-24  = 
     335= 3.0.2 - 2017-08-24  =
    329336
    330337* Fixed fatal error with is_active method.
     
    333340
    334341
    335 = 3.0.1 - 2017-08-23  = 
     342= 3.0.1 - 2017-08-23  =
    336343
    337344* Fixed backwards compatibility when using cwppos_show_review.
     
    339346
    340347
    341 = 3.0.0 - 2017-08-23  = 
    342 
    343 * Major code refactor ( Please test before update ) 
     348= 3.0.0 - 2017-08-23  =
     349
     350* Major code refactor ( Please test before update )
    344351* Added JSON-LD support
    345352* Improved compatibility with themes
     
    631638[http://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review](http://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review)
    632639
    633 = WP Product Review Documentation = 
    634  [http://docs.themeisle.com/article/173-wp-product-review-documentation](http://docs.themeisle.com/article/173-wp-product-review-documentation) 
    635 
    636  = WP Product Review Shortcode Documentation = 
    637  [http://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation](http://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation) 
    638 
    639  = WP Product Review Comparison Table Documentation = 
    640  [http://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation](http://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation) 
    641 
    642  = Enable user reviews in WP Product Review = 
    643  [http://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie](http://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie) 
    644 
    645  = How to create a listing grid of reviews in WP Product Review = 
    646  [http://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review](http://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review) 
    647 
    648  = Rich Snippets not showing in search results = 
    649  [http://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results](http://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results) 
    650 
    651  = How to add a top products widget in WP Product Review = 
    652  [http://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review](http://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review) 
    653 
    654  = How to remove rich snippets in WP Product Review = 
    655  [http://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review](http://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review) 
    656 
    657  = How to remove Pros/Cons list in WP Product Review = 
    658  [http://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review](http://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review) 
    659 
    660  = How to change the default rating icon in WP Product Review = 
    661  [http://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review](http://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review) 
    662 
    663  = How the visitors rating are influencing the review rating in WP Product Review = 
    664  [http://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review](http://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review) 
    665 
    666  = How to change the rating colours in WP Product Review = 
    667  [http://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review](http://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review) 
    668 
    669  = How to increase number of review options, pros or cons in WP Product Review = 
    670  [http://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review](http://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review) 
    671 
    672  = What actions and filters are available in WP Product Review = 
    673  [http://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review](http://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review) 
    674 
    675  = WP Product Review Documentation = 
    676  [https://docs.themeisle.com/article/173-wp-product-review-documentation](https://docs.themeisle.com/article/173-wp-product-review-documentation) 
    677 
    678  = WP Product Review Shortcode Documentation = 
    679  [https://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation](https://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation) 
    680 
    681  = How to change dynamically the image size for review = 
    682  [https://docs.themeisle.com/article/135-how-to-change-dynamically-the-image-size-for-review](https://docs.themeisle.com/article/135-how-to-change-dynamically-the-image-size-for-review) 
    683 
    684  = How to change dynamically the pros/cons heading text = 
    685  [https://docs.themeisle.com/article/133-how-to-change-dynamically-the-proscons-heading-text](https://docs.themeisle.com/article/133-how-to-change-dynamically-the-proscons-heading-text) 
    686 
    687  = WP Product Review Comparison Table Documentation = 
    688  [https://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation](https://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation) 
    689 
    690  = How to change dynamically the option name format = 
    691  [https://docs.themeisle.com/article/132-how-to-change-dynamically-the-option-name-format](https://docs.themeisle.com/article/132-how-to-change-dynamically-the-option-name-format) 
    692 
    693  = How to make Comment Review option work in any theme = 
    694  [https://docs.themeisle.com/article/54-how-to-make-comment-review-option-work-in-any-theme](https://docs.themeisle.com/article/54-how-to-make-comment-review-option-work-in-any-theme) 
    695 
    696  = Prevent users from posting multiple review on a single post in WP Product Review = 
    697  [https://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review](https://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review) 
    698 
    699  = How to create a listing grid of reviews in WP Product Review = 
    700  [https://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review](https://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review) 
    701 
    702  = Enable user reviews in WP Product Review = 
    703  [https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-review](https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-review) 
    704 
    705  = Rich Snippets not showing in search results = 
    706  [https://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results](https://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results) 
    707 
    708  = What actions and filters are available in WP Product Review = 
    709  [https://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review](https://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review) 
    710 
    711  = How to add a top products widget in WP Product Review = 
    712  [https://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review](https://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review) 
    713 
    714  = How to change the default rating icon in WP Product Review = 
    715  [https://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review](https://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review) 
    716 
    717  = How to remove Pros/Cons list in WP Product Review = 
    718  [https://docs.themeisle.com/article/762-how-to-remove-proscons-list-in-wp-product-review](https://docs.themeisle.com/article/762-how-to-remove-proscons-list-in-wp-product-review) 
    719 
    720  = How to increase number of review options, pros or cons in WP Product Review = 
    721  [https://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review](https://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review) 
    722 
    723  = How to change the rating colours in WP Product Review = 
    724  [https://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review](https://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review) 
    725 
    726  = How to remove rich snippets in WP Product Review = 
    727  [https://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review](https://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review) 
    728 
    729  = How the visitors rating are influencing the review rating in WP Product Review = 
    730  [https://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review](https://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review) 
    731 
    732  = WP Product Review how to change dynamically the image size for review = 
    733  [https://docs.themeisle.com/article/135-wp-product-review-how-to-change-dynamically-the-image-size-for-review](https://docs.themeisle.com/article/135-wp-product-review-how-to-change-dynamically-the-image-size-for-review) 
    734 
    735  = WP Product Review how to change dynamically the option name format = 
    736  [https://docs.themeisle.com/article/132-wp-product-review-how-to-change-dynamically-the-option-name-format](https://docs.themeisle.com/article/132-wp-product-review-how-to-change-dynamically-the-option-name-format) 
    737 
    738  = How to have a whole number ratings in WP Product Review = 
    739  [https://docs.themeisle.com/article/849-how-to-have-a-whole-number-ratings-in-wp-product-review](https://docs.themeisle.com/article/849-how-to-have-a-whole-number-ratings-in-wp-product-review) 
    740 
    741  = How to enable review post types = 
    742  [https://docs.themeisle.com/article/858-how-to-enable-review-post-types](https://docs.themeisle.com/article/858-how-to-enable-review-post-types) 
    743 
    744  = How users can leave review comments without rating = 
    745  [https://docs.themeisle.com/article/862-how-users-can-leave-review-comments-without-rating](https://docs.themeisle.com/article/862-how-users-can-leave-review-comments-without-rating) 
    746 
    747  = How to force description into comparison table = 
    748  [https://docs.themeisle.com/article/859-how-to-force-description-into-comparision-table](https://docs.themeisle.com/article/859-how-to-force-description-into-comparision-table) 
    749 
    750  = How the before/after/manual review box placement works = 
    751  [https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-works](https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-works) 
    752 
    753  = How to dynamically change the name of the review = 
    754  [https://docs.themeisle.com/article/874-how-to-dynamically-change-the-name-of-the-review](https://docs.themeisle.com/article/874-how-to-dynamically-change-the-name-of-the-review) 
    755 
    756  = How to change the status of the review = 
    757  [https://docs.themeisle.com/article/905-how-to-change-the-status-of-the-review](https://docs.themeisle.com/article/905-how-to-change-the-status-of-the-review) 
    758 
    759  = How to disable the review for particular posts = 
    760  [https://docs.themeisle.com/article/904-how-to-disable-the-review-for-particular-posts](https://docs.themeisle.com/article/904-how-to-disable-the-review-for-particular-posts) 
    761 
    762  = How to manually change the rating of a review = 
    763  [https://docs.themeisle.com/article/903-how-to-manually-change-the-rating-of-a-review](https://docs.themeisle.com/article/903-how-to-manually-change-the-rating-of-a-review) 
    764 
    765  = How to dynamically change the price of the review for particular posts = 
    766  [https://docs.themeisle.com/article/906-how-to-dynamically-change-the-price-of-the-review-for-particular-posts](https://docs.themeisle.com/article/906-how-to-dynamically-change-the-price-of-the-review-for-particular-posts) 
    767 
    768  = Amazon Integration Documentation = 
    769  [https://docs.themeisle.com/article/448-amazon-integration-documentation](https://docs.themeisle.com/article/448-amazon-integration-documentation) 
    770 
    771  = In WPPR, how do I,. = 
    772  [https://docs.themeisle.com/article/969-in-wppr-how-do-i](https://docs.themeisle.com/article/969-in-wppr-how-do-i) 
    773 
    774  = How to display product title and image both in review comparison table = 
    775  [https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table) 
    776 
    777  = How To Use WP Product Review Shortcodes = 
    778  [https://docs.themeisle.com/article/449-how-to-use-wp-product-review-shortcodes](https://docs.themeisle.com/article/449-how-to-use-wp-product-review-shortcodes) 
    779 
    780  = How the before/after/manual review box placement option works = 
    781  [https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-option-works](https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-option-works) 
    782 
    783  = How to display both the product title and image in the review comparison table = 
    784  [https://docs.themeisle.com/article/981-how-to-display-both-the-product-title-and-image-in-the-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-both-the-product-title-and-image-in-the-review-comparison-table) 
    785 
    786  = How to change the widget image size in WP Product Review = 
    787  [https://docs.themeisle.com/article/1056-how-to-change-the-widget-image-size-in-wp-product-review](https://docs.themeisle.com/article/1056-how-to-change-the-widget-image-size-in-wp-product-review) 
    788 
    789  = How to make Comment Review option work in any theme = 
    790  [https://docs.themeisle.com/article/54-why-comment-review-option-is-not-working-with-my-theme](https://docs.themeisle.com/article/54-why-comment-review-option-is-not-working-with-my-theme) 
    791 
    792  = Enable user reviews in WP Product Review = 
    793  [https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie](https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie) 
    794 
    795  = How to remove Pros/Cons list in WP Product Review = 
    796  [https://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review](https://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review) 
    797 
    798  = How the before/after/manual review box placement option works = 
    799  [https://docs.themeisle.com/article/865-how-the-before-after-manual-review-box-placement-works](https://docs.themeisle.com/article/865-how-the-before-after-manual-review-box-placement-works) 
    800 
    801  = How to display both the product title and image in the review comparison table = 
    802  [https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-table) 
    803 
    804  = Add specific "Service" types for schema.org in WP Product Review = 
    805  [https://docs.themeisle.com/article/1071-add-specific-service-types-for-schema-org](https://docs.themeisle.com/article/1071-add-specific-service-types-for-schema-org) 
    806 
    807  = How to install the PRO version of WP Product Review = 
    808  [https://docs.themeisle.com/article/785-install-and-use-the-pro-version-of-wp-product-review](https://docs.themeisle.com/article/785-install-and-use-the-pro-version-of-wp-product-review) 
     640= WP Product Review Documentation =
     641 [http://docs.themeisle.com/article/173-wp-product-review-documentation](http://docs.themeisle.com/article/173-wp-product-review-documentation)
     642
     643 = WP Product Review Shortcode Documentation =
     644 [http://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation](http://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation)
     645
     646 = WP Product Review Comparison Table Documentation =
     647 [http://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation](http://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation)
     648
     649 = Enable user reviews in WP Product Review =
     650 [http://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie](http://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie)
     651
     652 = How to create a listing grid of reviews in WP Product Review =
     653 [http://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review](http://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review)
     654
     655 = Rich Snippets not showing in search results =
     656 [http://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results](http://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results)
     657
     658 = How to add a top products widget in WP Product Review =
     659 [http://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review](http://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review)
     660
     661 = How to remove rich snippets in WP Product Review =
     662 [http://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review](http://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review)
     663
     664 = How to remove Pros/Cons list in WP Product Review =
     665 [http://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review](http://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review)
     666
     667 = How to change the default rating icon in WP Product Review =
     668 [http://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review](http://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review)
     669
     670 = How the visitors rating are influencing the review rating in WP Product Review =
     671 [http://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review](http://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review)
     672
     673 = How to change the rating colours in WP Product Review =
     674 [http://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review](http://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review)
     675
     676 = How to increase number of review options, pros or cons in WP Product Review =
     677 [http://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review](http://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review)
     678
     679 = What actions and filters are available in WP Product Review =
     680 [http://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review](http://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review)
     681
     682 = WP Product Review Documentation =
     683 [https://docs.themeisle.com/article/173-wp-product-review-documentation](https://docs.themeisle.com/article/173-wp-product-review-documentation)
     684
     685 = WP Product Review Shortcode Documentation =
     686 [https://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation](https://docs.themeisle.com/article/449-wp-product-review-shortcode-documentation)
     687
     688 = How to change dynamically the image size for review =
     689 [https://docs.themeisle.com/article/135-how-to-change-dynamically-the-image-size-for-review](https://docs.themeisle.com/article/135-how-to-change-dynamically-the-image-size-for-review)
     690
     691 = How to change dynamically the pros/cons heading text =
     692 [https://docs.themeisle.com/article/133-how-to-change-dynamically-the-proscons-heading-text](https://docs.themeisle.com/article/133-how-to-change-dynamically-the-proscons-heading-text)
     693
     694 = WP Product Review Comparison Table Documentation =
     695 [https://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation](https://docs.themeisle.com/article/424-wp-product-review-comparison-table-documentation)
     696
     697 = How to change dynamically the option name format =
     698 [https://docs.themeisle.com/article/132-how-to-change-dynamically-the-option-name-format](https://docs.themeisle.com/article/132-how-to-change-dynamically-the-option-name-format)
     699
     700 = How to make Comment Review option work in any theme =
     701 [https://docs.themeisle.com/article/54-how-to-make-comment-review-option-work-in-any-theme](https://docs.themeisle.com/article/54-how-to-make-comment-review-option-work-in-any-theme)
     702
     703 = Prevent users from posting multiple review on a single post in WP Product Review =
     704 [https://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review](https://docs.themeisle.com/article/578-prevent-users-from-posting-multiple-review-on-a-single-post-in-wp-product-review)
     705
     706 = How to create a listing grid of reviews in WP Product Review =
     707 [https://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review](https://docs.themeisle.com/article/764-how-to-create-a-listing-grid-of-reviews-in-wp-product-review)
     708
     709 = Enable user reviews in WP Product Review =
     710 [https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-review](https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-review)
     711
     712 = Rich Snippets not showing in search results =
     713 [https://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results](https://docs.themeisle.com/article/756-rich-snippets-not-showing-in-search-results)
     714
     715 = What actions and filters are available in WP Product Review =
     716 [https://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review](https://docs.themeisle.com/article/770-what-actions-and-filters-are-available-in-wp-product-review)
     717
     718 = How to add a top products widget in WP Product Review =
     719 [https://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review](https://docs.themeisle.com/article/763-how-to-add-a-top-products-widget-in-wp-product-review)
     720
     721 = How to change the default rating icon in WP Product Review =
     722 [https://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review](https://docs.themeisle.com/article/757-how-to-change-the-default-rating-icon-in-wp-product-review)
     723
     724 = How to remove Pros/Cons list in WP Product Review =
     725 [https://docs.themeisle.com/article/762-how-to-remove-proscons-list-in-wp-product-review](https://docs.themeisle.com/article/762-how-to-remove-proscons-list-in-wp-product-review)
     726
     727 = How to increase number of review options, pros or cons in WP Product Review =
     728 [https://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review](https://docs.themeisle.com/article/758-how-to-increase-number-of-review-options-pros-or-cons-in-wp-product-review)
     729
     730 = How to change the rating colours in WP Product Review =
     731 [https://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review](https://docs.themeisle.com/article/761-how-to-change-the-rating-colours-in-wp-product-review)
     732
     733 = How to remove rich snippets in WP Product Review =
     734 [https://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review](https://docs.themeisle.com/article/755-how-to-remove-rich-snippets-in-wp-product-review)
     735
     736 = How the visitors rating are influencing the review rating in WP Product Review =
     737 [https://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review](https://docs.themeisle.com/article/760-how-the-visitors-rating-are-influencing-the-review-rating-in-wp-product-review)
     738
     739 = WP Product Review how to change dynamically the image size for review =
     740 [https://docs.themeisle.com/article/135-wp-product-review-how-to-change-dynamically-the-image-size-for-review](https://docs.themeisle.com/article/135-wp-product-review-how-to-change-dynamically-the-image-size-for-review)
     741
     742 = WP Product Review how to change dynamically the option name format =
     743 [https://docs.themeisle.com/article/132-wp-product-review-how-to-change-dynamically-the-option-name-format](https://docs.themeisle.com/article/132-wp-product-review-how-to-change-dynamically-the-option-name-format)
     744
     745 = How to have a whole number ratings in WP Product Review =
     746 [https://docs.themeisle.com/article/849-how-to-have-a-whole-number-ratings-in-wp-product-review](https://docs.themeisle.com/article/849-how-to-have-a-whole-number-ratings-in-wp-product-review)
     747
     748 = How to enable review post types =
     749 [https://docs.themeisle.com/article/858-how-to-enable-review-post-types](https://docs.themeisle.com/article/858-how-to-enable-review-post-types)
     750
     751 = How users can leave review comments without rating =
     752 [https://docs.themeisle.com/article/862-how-users-can-leave-review-comments-without-rating](https://docs.themeisle.com/article/862-how-users-can-leave-review-comments-without-rating)
     753
     754 = How to force description into comparison table =
     755 [https://docs.themeisle.com/article/859-how-to-force-description-into-comparision-table](https://docs.themeisle.com/article/859-how-to-force-description-into-comparision-table)
     756
     757 = How the before/after/manual review box placement works =
     758 [https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-works](https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-works)
     759
     760 = How to dynamically change the name of the review =
     761 [https://docs.themeisle.com/article/874-how-to-dynamically-change-the-name-of-the-review](https://docs.themeisle.com/article/874-how-to-dynamically-change-the-name-of-the-review)
     762
     763 = How to change the status of the review =
     764 [https://docs.themeisle.com/article/905-how-to-change-the-status-of-the-review](https://docs.themeisle.com/article/905-how-to-change-the-status-of-the-review)
     765
     766 = How to disable the review for particular posts =
     767 [https://docs.themeisle.com/article/904-how-to-disable-the-review-for-particular-posts](https://docs.themeisle.com/article/904-how-to-disable-the-review-for-particular-posts)
     768
     769 = How to manually change the rating of a review =
     770 [https://docs.themeisle.com/article/903-how-to-manually-change-the-rating-of-a-review](https://docs.themeisle.com/article/903-how-to-manually-change-the-rating-of-a-review)
     771
     772 = How to dynamically change the price of the review for particular posts =
     773 [https://docs.themeisle.com/article/906-how-to-dynamically-change-the-price-of-the-review-for-particular-posts](https://docs.themeisle.com/article/906-how-to-dynamically-change-the-price-of-the-review-for-particular-posts)
     774
     775 = Amazon Integration Documentation =
     776 [https://docs.themeisle.com/article/448-amazon-integration-documentation](https://docs.themeisle.com/article/448-amazon-integration-documentation)
     777
     778 = In WPPR, how do I,. =
     779 [https://docs.themeisle.com/article/969-in-wppr-how-do-i](https://docs.themeisle.com/article/969-in-wppr-how-do-i)
     780
     781 = How to display product title and image both in review comparison table =
     782 [https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table)
     783
     784 = How To Use WP Product Review Shortcodes =
     785 [https://docs.themeisle.com/article/449-how-to-use-wp-product-review-shortcodes](https://docs.themeisle.com/article/449-how-to-use-wp-product-review-shortcodes)
     786
     787 = How the before/after/manual review box placement option works =
     788 [https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-option-works](https://docs.themeisle.com/article/865-how-the-beforeaftermanual-review-box-placement-option-works)
     789
     790 = How to display both the product title and image in the review comparison table =
     791 [https://docs.themeisle.com/article/981-how-to-display-both-the-product-title-and-image-in-the-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-both-the-product-title-and-image-in-the-review-comparison-table)
     792
     793 = How to change the widget image size in WP Product Review =
     794 [https://docs.themeisle.com/article/1056-how-to-change-the-widget-image-size-in-wp-product-review](https://docs.themeisle.com/article/1056-how-to-change-the-widget-image-size-in-wp-product-review)
     795
     796 = How to make Comment Review option work in any theme =
     797 [https://docs.themeisle.com/article/54-why-comment-review-option-is-not-working-with-my-theme](https://docs.themeisle.com/article/54-why-comment-review-option-is-not-working-with-my-theme)
     798
     799 = Enable user reviews in WP Product Review =
     800 [https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie](https://docs.themeisle.com/article/759-enable-user-reviews-in-wp-product-revie)
     801
     802 = How to remove Pros/Cons list in WP Product Review =
     803 [https://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review](https://docs.themeisle.com/article/762-how-to-remove-pros-cons-list-in-wp-product-review)
     804
     805 = How the before/after/manual review box placement option works =
     806 [https://docs.themeisle.com/article/865-how-the-before-after-manual-review-box-placement-works](https://docs.themeisle.com/article/865-how-the-before-after-manual-review-box-placement-works)
     807
     808 = How to display both the product title and image in the review comparison table =
     809 [https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-table)
     810
     811 = Add specific "Service" types for schema.org in WP Product Review =
     812 [https://docs.themeisle.com/article/1071-add-specific-service-types-for-schema-org](https://docs.themeisle.com/article/1071-add-specific-service-types-for-schema-org)
     813
     814 = How to install the PRO version of WP Product Review =
     815 [https://docs.themeisle.com/article/785-install-and-use-the-pro-version-of-wp-product-review](https://docs.themeisle.com/article/785-install-and-use-the-pro-version-of-wp-product-review)
    809816
    810817 == Upgrade Notice ==
  • wp-product-review/trunk/themeisle-hash.json

    r2329824 r2366462  
    1 {"class-wppr-autoloader.php":"c7f7f3dd52445edb5f7367ba7b31281f","class-wppr-recursive-filter.php":"6c74b0e7c04529d797ae9689d9a44c8d","index.php":"c76772901fa1b2b14aa3ba32d7773c8a","uninstall.php":"7c6d36652e8dcf013f2c246f4a289acf","wp-product-review.php":"014e63887b2d6a83f17dfef87ca9ff7b"}
     1{"class-wppr-autoloader.php":"c7f7f3dd52445edb5f7367ba7b31281f","class-wppr-recursive-filter.php":"6c74b0e7c04529d797ae9689d9a44c8d","index.php":"c76772901fa1b2b14aa3ba32d7773c8a","uninstall.php":"7c6d36652e8dcf013f2c246f4a289acf","wp-product-review.php":"c4e84766e07b67379e02cae355f3dd39"}
  • wp-product-review/trunk/vendor/autoload.php

    r2343852 r2366462  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInit1db2d309a004db78e14e0be46d1fccc0::getLoader();
     7return ComposerAutoloaderInite87fce79aa74742d8b7a5043cba7f46a::getLoader();
  • wp-product-review/trunk/vendor/autoload_52.php

    r2343852 r2366462  
    55require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
    66
    7 return ComposerAutoloaderInit6ed738e5975ab224f2715f1f60d3824e::getLoader();
     7return ComposerAutoloaderInitd8dbdb760ddb4c18ab8401a56e77829c::getLoader();
  • wp-product-review/trunk/vendor/codeinwp/themeisle-sdk/CHANGELOG.md

    r2324465 r2366462  
     1##### [Version 3.2.15](https://github.com/Codeinwp/themeisle-sdk/compare/v3.2.14...v3.2.15) (2020-07-23)
     2
     3* remove no redundant module
     4
    15##### [Version 3.2.14](https://github.com/Codeinwp/themeisle-sdk/compare/v3.2.13...v3.2.14) (2020-06-10)
    26
  • wp-product-review/trunk/vendor/codeinwp/themeisle-sdk/load.php

    r2324465 r2366462  
    1515}
    1616// Current SDK version and path.
    17 $themeisle_sdk_version = '3.2.14';
     17$themeisle_sdk_version = '3.2.15';
    1818$themeisle_sdk_path    = dirname( __FILE__ );
    1919
  • wp-product-review/trunk/vendor/codeinwp/themeisle-sdk/src/Loader.php

    r2271591 r2366462  
    5151        'uninstall_feedback',
    5252        'licenser',
    53         'endpoint',
    5453        'logger',
    5554        'translate',
  • wp-product-review/trunk/vendor/composer/autoload_real.php

    r2343852 r2366462  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit1db2d309a004db78e14e0be46d1fccc0
     5class ComposerAutoloaderInite87fce79aa74742d8b7a5043cba7f46a
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit1db2d309a004db78e14e0be46d1fccc0', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInite87fce79aa74742d8b7a5043cba7f46a', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit1db2d309a004db78e14e0be46d1fccc0', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInite87fce79aa74742d8b7a5043cba7f46a', 'loadClassLoader'));
    2525
    2626        $map = require __DIR__ . '/autoload_namespaces.php';
     
    4343        $includeFiles = require __DIR__ . '/autoload_files.php';
    4444        foreach ($includeFiles as $fileIdentifier => $file) {
    45             composerRequire1db2d309a004db78e14e0be46d1fccc0($fileIdentifier, $file);
     45            composerRequiree87fce79aa74742d8b7a5043cba7f46a($fileIdentifier, $file);
    4646        }
    4747
     
    5050}
    5151
    52 function composerRequire1db2d309a004db78e14e0be46d1fccc0($fileIdentifier, $file)
     52function composerRequiree87fce79aa74742d8b7a5043cba7f46a($fileIdentifier, $file)
    5353{
    5454    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • wp-product-review/trunk/vendor/composer/autoload_real_52.php

    r2343852 r2366462  
    33// autoload_real_52.php generated by xrstf/composer-php52
    44
    5 class ComposerAutoloaderInit6ed738e5975ab224f2715f1f60d3824e {
     5class ComposerAutoloaderInitd8dbdb760ddb4c18ab8401a56e77829c {
    66    private static $loader;
    77
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit6ed738e5975ab224f2715f1f60d3824e', 'loadClassLoader'), true /*, true */);
     22        spl_autoload_register(array('ComposerAutoloaderInitd8dbdb760ddb4c18ab8401a56e77829c', 'loadClassLoader'), true /*, true */);
    2323        self::$loader = $loader = new xrstf_Composer52_ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit6ed738e5975ab224f2715f1f60d3824e', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInitd8dbdb760ddb4c18ab8401a56e77829c', 'loadClassLoader'));
    2525
    2626        $vendorDir = dirname(dirname(__FILE__));
  • wp-product-review/trunk/vendor/composer/installed.json

    r2324465 r2366462  
    3535    {
    3636        "name": "codeinwp/themeisle-sdk",
    37         "version": "3.2.14",
    38         "version_normalized": "3.2.14.0",
     37        "version": "3.2.15",
     38        "version_normalized": "3.2.15.0",
    3939        "source": {
    4040            "type": "git",
    4141            "url": "https://github.com/Codeinwp/themeisle-sdk.git",
    42             "reference": "992f5e8347836e325ffc50760da1d550b79831c4"
     42            "reference": "95b7447a5f4faba410c281c4bf278fbd740fed71"
    4343        },
    4444        "dist": {
    4545            "type": "zip",
    46             "url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/992f5e8347836e325ffc50760da1d550b79831c4",
    47             "reference": "992f5e8347836e325ffc50760da1d550b79831c4",
     46            "url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/95b7447a5f4faba410c281c4bf278fbd740fed71",
     47            "reference": "95b7447a5f4faba410c281c4bf278fbd740fed71",
    4848            "shasum": ""
    4949        },
     
    5353            "wp-coding-standards/wpcs": "^1.0.0"
    5454        },
    55         "time": "2020-06-10 16:25:09",
     55        "time": "2020-07-23 15:02:10",
    5656        "type": "library",
    5757        "installation-source": "dist",
  • wp-product-review/trunk/wp-product-review.php

    r2329824 r2366462  
    1616 * Plugin URI:        https://themeisle.com/plugins/wp-product-review/
    1717 * Description:       The highest rated and most complete review plugin, now with rich snippets support. Easily turn your basic posts into in-depth reviews.
    18  * Version:           3.7.10
     18 * Version:           3.7.11
    1919 * Author:            ThemeIsle
    2020 * Author URI:        https://themeisle.com/
     
    6767function run_wppr() {
    6868
    69     define( 'WPPR_LITE_VERSION', '3.7.10' );
     69    define( 'WPPR_LITE_VERSION', '3.7.11' );
    7070    define( 'WPPR_PATH', dirname( __FILE__ ) );
    7171    define( 'WPPR_SLUG', 'wppr' );
Note: See TracChangeset for help on using the changeset viewer.