Blaz K.
Forum Replies Created
-
Hi,
I think you want the lowest point on the right? Now, the lowest point is on the left and the highest is on the right (one star, two stars, three stars, four stars, five stars). I guess this could also be solved with custom CSS but I have to test it first. If you would put direction rtl on the container of the stars. More about the direction property here: https://css-tricks.com/almanac/properties/d/direction/
Blaz
how to resolve this issue is described here: https://wordpress.org/support/topic/browser-notification-authentication-required/
You have password protect for admin-ajax.php in place, but this file is used by both admin and public side of the website. In the topic above you will find more information.
Regards,
Blazthat’s a good question 🙂 To be honest I don’t know much about rtl and I’ll have too look into it. I guess the stars should be from right to left so that the lowest rating is on the right side and the highest on the left side? Is that correct? I’ll add a fix in the next version.
Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Unable to click starsHi @hoakinn25,
Rate my Post relies heavily on jQuery, although this will be changed in future versions. You can read more about noConflict here: https://www.w3schools.com/jquery/jquery_noconflict.asp
I guess, it would be easier to figure out why soundjs is not working without noConflict. I checked their documentation and haven’t noticed anything about noConflict being required.
Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Unable to click starsGlad to hear that @upmusic! 🙂 I’m closing this topic as we solved the issues and with @nilsondias we are in touch via email.
Blaz
Forum: Plugins
In reply to: [Amazon Link] Images not appearing all of suddenI created a plugin that picks up shortcodes from Amazon link and is compatible with PA API 5. More about this here: https://wordpress.org/support/topic/product-advertising-api-5-migration/
Developers are welcome to contribute on GitHub.
Blaz
Forum: Plugins
In reply to: [Amazon Link] Product Advertising API 5 – MigrationHi @philetdanyboulanger, sorry for my late reply. I’m quite sure that Amazon PA API provides prices, but in this particular project they weren’t required. Maybe I’ll add the functionality in the future, depending on the interest 🙂
Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Unable to click stars@nilsondias, I answered you via email 🙂
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Unable to click stars@upmusic, on your website rate-my-post.js is not loaded. This almost always happen because jquery handle is missing. The plugin lists jquery as a dependency in wp_register_script function and WordPress simply doesn’t add the script if the dependency is not present on the website.
Nevertheless, your website uses jQuery and thus I recommend checking what’s going on with the jquery handle. I had a similar ticket here a while ago and we figured out that the theme was deregistering jquery and then enqueueing the script under a different handle.
To be sure that this is causing the issue you can edit public/class-rate-my-post-public.php on line 50 from:
wp_register_script( $this->rate_my_post, plugin_dir_url( __FILE__ ) . 'js/rate-my-post.js', array( 'jquery' ), $this->version, true );to
wp_register_script( $this->rate_my_post, plugin_dir_url( __FILE__ ) . 'js/rate-my-post.js', array(), $this->version, true );Let me know what you figure out.
Blaz
Forum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] The best rating pluginThank you @nilsondias 🙂
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Unable to click starsHi,
can you please share a link to a page on your website where I can find the rating widget. It’s hard to debug this without seeing the actual website 🙂
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Unable to click starsHi @nilsondias,
is the “learning management system” system a plugin? Does this also happen on regular posts? If it happens everywhere, it’s usually because the jquery handle is not registered. However most themes do use jquery and this is rarely a problem. If it only happens inside another plugin, it’s probably a conflict and I need to test it.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] STats Page shows errorthe best way to debug this, is to check the PHP error log. You should be able to find the exact error there. Nevertheless, could it be that you have memory limit set really low? This could cause 500 error. So, I recommend also checking memory limit.
Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Significant DeficiencyHi @pesimist57,
that would bring a lot of trouble in terms of GDPR compliance 🙂 The feedback widget can anyway be disabled and if you think that you are getting negative ratings by mistake, you can enable “Prevent accidental votes” which requires a button to be clicked to confirm the rating. I use the plugin on a production website and in my case most of the ratings seem to be valid and intentional. I also often get good suggestions through the feedback form 🙂
Blaz
Forum: Plugins
In reply to: [Amazon Link] Product Advertising API 5 – Migration@philetdanyboulanger I made it for a website that was using Amazon Link plugin and had to urgently migrate 🙂 Let me know if you have any questions, and if you are a developer feel free to contribute. The plugin is easy to extend.
Blaz