Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey there avsync,

    How are you doing today?

    Not really sure what you’re referring to, would you mind posting a link to the page where I can see this?

    Cheers,
    Bojan

    Thread Starter avsync

    (@avsync)

    Hi Bojan

    Thanks for the response. I don’t have a link to show you, I have disabled the plugin for this reason as the site is live.

    YASR is a star rating plugin, it adds a rating to the bottom of blog posts and products so that users can rate the product or blog post from 1 to 5.

    WordPress PopUp is displaying this star rating on the popups that I create.

    Hope that makes more sense…

    Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey there avsync,

    I’m not really familiar with that specific plugin and I’ve installed it so I can check how it works.

    From what I’ve been able to see I can confirm the issue when “Auto insert options” are being used as Popup is a custom post type as well this plugin is auto inserting rating into it.

    What we could do to change that is simply use CSS to hide the rating only in popup content.

    Please try adding the following CSS code to popup custom CSS tab which can be found in the bottom of the popup page in your admin:

    .wdpu-content .rateit {
        display: none;
    }

    This should remove the rating from the popup.

    Please let me know if this helps ??

    Cheers,
    Bojan

    Thread Starter avsync

    (@avsync)

    Hi Bojan

    The code above unfortunately didn’t work but it pointed me in the right direction! I don’t know much about css but sometimes I get lucky and find the right div. The code below works ??

    .wdpu-content .yasr-visitor-votes {
    display: none;
    }

    I really appreciate the assistance, without it I wouldn’t have known where to start.

    Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey again avsync,

    Awesome, really glad that you figured that one out.

    I did test the code on my sandbox site but I never fully setup YASR plugin and the code was removing the default stars displayed in the popup so it’s possible that there are additional divs that I didn’t see there.

    Anyway thanks for posting the solution here for the sake of other members!

    Have a great day!

    Cheers,
    Bojan

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘YASR Rating appearing on the PopUp’ is closed to new replies.