Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor dudo

    (@dudo)

    Hello!

    You can add this code in your child theme

    add_filter('yasr_title_vv_widget', static function ($vv_widget, $stored_votes) {
        if(strpos($vv_widget, 'yasr-vv-stars-title-container') === false) {
            $widget_container = '<div class="yasr-vv-stars-title-container">';
            $widget_container .= $vv_widget;
            $widget_container .= '</div>';
    
            return $widget_container;
        }
    
        return $vv_widget;
    }, 10, 2);

    Let me know!

    Best,
    Dario

    Thread Starter digital-workshop

    (@digital-workshop)

    works perfect with your code, awesome!
    Thanks for your help

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Stars UNDER the title?’ is closed to new replies.