Blaz K.
Forum Replies Created
-
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] A YELLOW POINT APPEARSYou have prevent accidental votes enabled and empty text under Customize -> “Submit rating button text”. Either disable prevent accidental votes or insert the text for the button there 🙂
Blaz
Hi @mp3-post1,
it seems that your website has trouble loading fonts, not just for Rate my Post plugin, but in general (see the console). Rate my Post used FontAwesome (which is included on your website) til version 2.10.0 but now it uses a custom and a lighter font. The best way to debug this would be following the steps here: https://wordpress.org/support/topic/sticky-read-before-posting-%e2%9a%a0%ef%b8%8f/ Especially step 5 and 6, so we figure out what is interfering with what. I wish there would be a more convenient way to do this, but I can’t think of any.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Hide Vote count CSSRate my Post and Tablepress are compatible. Compatible means that they don’t interfere with each other if they are both present on the website. Including the shortcode into Tablepress plugin hasn’t been tested, and to be honest I don’t understand why would you put the shortcode there 🙂
As for the “horizontal stars show with heavy padding between them for a split second” issue, you can fix it the same way as the star alignment – with custom CSS. If you have trouble with that, I recommend hiring a web developer. Sorry but, these small styling issues that are specific to your website are beyond the scope of support for this free plugin 🙂
Blaz
I think it’ll be okay 🙂 you can contact me via my website: https://blazzdev.com/
BTW, I also contacted DIVI to see if they are so nice to share a copy of theme for development environment with me 🙂
Blaz
Oh damn, I hoped that there is some kind of id conflict and this will solve the problem 🙂 Is there any chance you could share the complete js file where that code lives, preferably in a non minified version?
Did you hear back from Divi?
Blaz
Hi @nswm,
thank you for sharing this with me. I know that the Divi theme is fairly popular and thus I would really like to make the plugin compatible with it. But it’s a bit hard because it’s a premium theme 🙂 Is there any chance you could add the above listed JS back and then try changing rate-my-post\public\partials\rmp-star-rating-widget.php on line 88 from:
<p id="voting-results" style="<?php echo $custom_font_sizes['textFontSize']; ?> <?php echo ( !$ajaxLoad && !$avgRating ) ? 'display: none;' : ''; ?>">to
<p id="rmp-voting-results" style="<?php echo $custom_font_sizes['textFontSize']; ?> <?php echo ( !$ajaxLoad && !$avgRating ) ? 'display: none;' : ''; ?>">Just to see if the code still gets printed there (the plugin will not work properly afterwards). If it doesn’t get printed I could modify the plugin accordingly and push out an update.
Alternatively, you could also ask the Divi team if it’s possible to dequeue the script that is interfering.
Let me know what you figure out.
Blaz
Forum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] The best rating pluginThanks you for reviewing the plugin! 🙂
Hi @nswm,
I got very curious about this issue so I took a bit more time to investigate it 🙂 I first scanned the plugin’s code and as I assumed there is no such syntax in the Rate my Post plugin. That is being appended to <p id=”voting-results” style=”font-size:10px; “> by javascript. If you disable JS you will see that the code above is not present. Then I did a check what is pushing that to the paragraph and here is the culprit: https://nswm.co.uk/min/cc2fb.js (search for <p class=”stars”>). Since you are minifying and combining resources it’s hard to say whether it’s the theme or a plugin but you should be able to identify the problem if you temporarily disable minify/combine.
Hope this was helpful 🙂Blaz
@nswm, it explains better but to be honest I have no idea where that is coming from. It certainly doesn’t from the plugin. I recommend disabling other plugins and seeing if there is an incompatible plugin on your website.
Blaz
Hi @nswm,
I don’t completely understand what you mean by: “When I include the {{avgrating}} variable (and if I leave the default)”. You are inserting the shortcode like this [ratemypost] in your posts right?
Blaz
Are you using anything else besides WP Rocket? I did test with wp rocket yesterday and it worked well. I’ll double check this.
Blaz
This seems a caching issue – enable ajax load results in the advanced settings. Which caching plugin are you using?
Blaz
That sounds odd, can you share the link to your website? What about the post editor? Are the votes there correct? I mean the stats section grabs the votes the same way as the frontend.
Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Average Rating ErrorHi @sagar97n5,
I can’t replicate that. Try resetting the settings and customization options and then follow the steps listed here: https://wordpress.org/support/topic/sticky-read-before-posting-%e2%9a%a0%ef%b8%8f/
As for the second, it’s not possible.
Regards,
BlazI assume you want to modify the results widget?
You can increase the size of the stars in the results widget with:
.star-result.rmp-column { font-size: 25px; }and you can position the widget center with:
.rmp-results { display: inline-block; position: relative; left: 50%; transform: translateX(-50%); }Regards,
Blaz