Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    In the plugin settings:

    Thread Starter tavomenas

    (@tavomenas)

    If I’m not wrong, this way I limit the Excerpt lenght, but the review itself has no lengh limit

    Plugin Author Gemini Labs

    (@geminilabs)

    /**
     * Limit reviews to 100 characters (change the number to your desired length)
     * Paste this in your active theme's functions.php file.
     * @param array $rules
     * @return array
     */
    add_filter( 'site-reviews/validation/rules', function( $rules ) {
        $rules['content'] = 'required|max:100';
        return $rules;
    });
    
    Thread Starter tavomenas

    (@tavomenas)

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Limit review lenght’ is closed to new replies.