• Resolved mashki

    (@mashki)


    Hi,

    here https://yetanotherstarsrating.com/yasr-shortcodes/ I found information that it is possible to add custom text before and after Overall Rating.

    I can see the option to add custom text before Overall Rating in the “Customize strings” section, but there is no option to add custom text after Overall Rating.

    Can you please help me here?

Viewing 1 replies (of 1 total)
  • Plugin Contributor dudo

    (@dudo)

    Hello!

    You can add this code in your functions.php file:

    add_filter('yasr_overall_rating_shortcode', static function ($shortcode, $attributes) {
        $string = '<div>'.$shortcode;
        $string .= 'YOUR CUSTOM TEXT HERE';
        $string .= '</div>';
    
        return $string;
    },10, 2);

    change YOUR CUSTOM TEXT HERE

    Hope this helps!
    Best,
    Dario

Viewing 1 replies (of 1 total)
  • The topic ‘Custom text after Overall Rating’ is closed to new replies.