Admin - Configuration - Minimum Values - Review Text Min Length - Catalog
From Zen Cart(tm) Wiki
Menu: Admin - Configuration - Minimum Values - Review Text Min Length - Catalog
/path/to/your/shop/includes/languages/english.php
| Line #166 : define('JS_REVIEW_TEXT', '* Please add a few more words to your comments. The review needs to have at least ' . REVIEW_TEXT_MIN_LENGTH . ' characters.'); |
/path/to/your/shop/includes/modules/pages/product_reviews_write/header_php.php
| Line #54 : if (strlen($review_text) < REVIEW_TEXT_MIN_LENGTH) { |
/path/to/your/shop/includes/modules/pages/product_reviews_write/jscript_main.php
| Line #73 : check_input('review_text',"<?php echo REVIEW_TEXT_MIN_LENGTH; ?>","<?php echo JS_REVIEW_TEXT; ?>"); |
