• Resolved raulis

    (@raulis)


    Hello,

    Start selection don’t work, could you help me please?

    The page I need help with: [log in to see the link]

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

    (@geminilabs)

    The star rating control is actually a SELECT element that Site Reviews transforms into a star rating control on page load.

    However, your theme uses the jQuery Uniform library which also transforms SELECT elements, and this library is interfering with the star rating transformation.

    You have two options to fix this:

    1. Edit your theme’s javascript file to exclude the star rating SELECT element:

    // This:
    
    if (jQuery.uniform !== undefined) {
        $("select").not(".dynamic_control,.woocommerce select").uniform();
    }
    
    // Becomes this:
    
    if (jQuery.uniform !== undefined) {
        $("select").not(".glsr-star-rating,.dynamic_control,.woocommerce select").uniform();
    }
    

    2. See: https://pastebin.com/ZH0wTv1L

    Thread Starter raulis

    (@raulis)

    Thanks, that helped ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘When leaving review can’t select star rating’ is closed to new replies.