bourgesloic
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Order notes not in admin languageHello,
I have a function linked to ‘locale’ filter which changes locale if not in admin (the function get_cookie_stored_user_locale returns customer locale).
public function set_locale($locale) { if ( is_admin() && ! wp_doing_ajax() ) { return $locale; } return $this->get_cookie_stored_user_locale(); }
I hope it helps you to better understand how it works.
Best regards.
Forum: Plugins
In reply to: [WooCommerce] Order notes not in admin languageHello @carolm29
Thanks for your quick answer. To be precise, my website is multilingual. I change the locale for visitors through the filter ‘locale’, not through a plugin (see my test site: https://test-brm.dev.boat-rental-manager.fr/)
And yes, your understanding is correct: when a vistor selects a foreign language (other than french), and make an order, he receives confirmation email in its selected language. But in the same, all orders notes added to the order are in the same language (english, deutsh…). See admin screencap: https://snipboard.io/A8PTc3.jpg
In general settings, language is setted to French. All admin users also (see https://snipboard.io/QqmbRn.jpg and https://snipboard.io/pw7xKj.jpg)
At this stage, I have found a way to avoid this behavior: for all languages, I have overrided some admin messages in foreign languages to french language through gettext filter. But it would be better if there is another solution.
Best regards.
Forum: Plugins
In reply to: [SQLite Object Cache] Incompatibility with Wordfence pluginThanks a lot.
Forum: Plugins
In reply to: [Post Rating and Review] Star issue and how to remove star 0@kyopie I have release a new version (1.3.4) which should fix the issue with mandara theme. Let me know if it’s ok.
Forum: Plugins
In reply to: [Post Rating and Review] Star issue and how to remove star 0About filtering comments by note, I have found the error: it’s because of mandara theme which manipulates comments filter in a way which is not compatible with my plugin.
I will try to find a solution.
Forum: Plugins
In reply to: [Post Rating and Review] The plugin doesn’t seem to be workingThis parameter define the precision of the rate given by a user. For instance, 0.5 will let the possibility to the user to give a rate like 2.5 or 3.5, whereas 1 will limit the rate at 1, 2, 3…
Concerning the text color within the textarea, it is your theme which define this color (see line 1174 in style.css file of your theme). You can override it in your child theme or make a request to theme author.Forum: Plugins
In reply to: [Post Rating and Review] The plugin doesn’t seem to be workingI have a javascript error when I try to make a review. It seems it is because, in the plugin settings, field “Step for rating set” is defined at 0 whereas 0.1 is the minimum.
Forum: Plugins
In reply to: [Post Rating and Review] The plugin doesn’t seem to be workingDone in 1.3.2 release !
Forum: Plugins
In reply to: [Post Rating and Review] The plugin doesn’t seem to be workingAre you talking about the gold border color used to highlight its own review?
Forum: Plugins
In reply to: [Post Rating and Review] Make text at the top and bottom hiddenIn the css file of your child, just add :
#comments.prar-rating-reviews-area h3.prar-rating-reviews-title {display: none;} #comments.prar-rating-reviews-area .no-comments {display: none;}
Forum: Plugins
In reply to: [Post Rating and Review] The plugin doesn’t seem to be workingHello again,
The new release includes the possibility to change stars and chart bar colors.
Let me know if it meets your needs.Forum: Plugins
In reply to: [Post Rating and Review] Make text at the top and bottom hiddenHello,
you should use a child theme as mentionned in another thread (https://developer.www.ads-software.com/themes/advanced-topics/child-themes/)
Then in the css file within your child theme, you will be able to hide texts that you do not want to display.Forum: Plugins
In reply to: [Post Rating and Review] The plugin doesn’t seem to be workingHello,
using plugin files editor or theme files editor is not recommanded because your modifications would be deleted each time you make an update.
Usually, wordpress sites developer create a child theme based on the theme they have chosen. Then they use child theme style.css to make changes.
Are you aware about this?Forum: Plugins
In reply to: [Post Rating and Review] The plugin doesn’t seem to be workingI just tested it on another manga and it works (https://kyoomi.net/series/kaichou-wa-maid-sama/). I tested it also with another user on solo leveling manga and it works also.
I does not work on review created before plugin update. You should delete these comments to start on a clean basis.
Forum: Plugins
In reply to: [Post Rating and Review] The plugin doesn’t seem to be workingI have find issues and I release a new version of my plugin. Please update it in your website, and it should work as expected.
Let me know.