arbeca
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] stock status had disappearedIt works again on the products list page, no idea why, but it still doesn’t work on the variable product page.
It works ! Thank you so much !
Thank you very much for your answer, I will try this code today and let you know !
Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA for WooCommerce] Checkout page captchaI have exactly the same question !
My users don’t need to login to checkout, so the captcha should be on the checkout page and this plugin doesn’t seem to allow that.
Any recommendation ?Forum: Plugins
In reply to: [Native Emoji] Failed to initialize pluginSolution to the problem!
—I have the message: “Failed to initialize plugin: et_quicktags”—After the update, the editor has also been updated.
You need:
– In the plugin store, find tinyMCE Advanced
– Install it and activate
– In the plugin settings, find the item:
“Replace the Block Editor with the Classic Editor”
and turn it onHello,
I have done this procedure, but it indeeds replaces the Block editor by the Classic editor. I personaly want to keep the block editor and fix this error message. Any solution for this ?
Forum: Plugins
In reply to: [WooCommerce] t.addClass(…).block is not a functionI tried to remove the duplicate line, but I got some other display issues (among which some were worse than the initial issue, eg the broken drop down menu). I resolved some of them with the CSS, but don’t have time for what’s left so I put it back the way it was until I have time, or when someone can solve the bugs for me.
I guess you can mark this as resolved then ??
Thank youForum: Plugins
In reply to: [WooCommerce] t.addClass(…).block is not a functionSorry for the late reply, I didn’t see the notifications for your answer.
I will try to inactivate one of those lines, but I’m surprised since I have been using this theme for several years now and it used to work.
I will let you know if this works. Thank you.
Forum: Plugins
In reply to: [WooCommerce] after upgrade, new shipping zones don't showThank you ademide, this was not intuitive for my website because I only have a main location zone, but different shipping methods. My mistake was to create several shopping zones.
Forum: Plugins
In reply to: [Social Slider Feed] Slider went blankThanks for the patch @oxdeer, it works fine on my website.
Forum: Plugins
In reply to: [WooCommerce] Translation error in French woocommerce Version: 2.5.1Done.
For my local copy, I found out how to modify it. I didn’t know how to, so I tell other users in case they read this post :
– Download and install https://poedit.net/
– Modify the translation with Poedit, file wp-content\languages\plugins\woocommerce-fr_FR.po
– Upload wp-content\languages\plugins\woocommerce-fr_FR.po and wp-content\languages\plugins\woocommerce-fr_FR.moI found out what was my issue with Woocommerce+Si Captcha.
It was not only related to Woocommerce, it was due to the fact that I have different urls in wordpress options.
The “wordpress url” is :
https://mydomain.fr/wordpressdir
The “site url” :
https://www.mydomain.fr
=> Actually, the “www” would mess up the plugin in the end.
I just did a dirty hack :
In si-captcha-for-wordpress/si-captcha.php, in function get_captcha_url_si(), just before it returns the url, I wrote :
$url = preg_replace('|https://www.mydomain.fr|', 'https://mydomain.fr/wordpressdir', $url);
where mydomain and wordpressdir are my personal paths.
I hope the developer can fix the issue properly.
Hello,
I have the same issue and tried to fix it, but with no luck for now.
What’s the error :“Mixed Content: The page at ‘https://…/mon-compte/’ was loaded over HTTPS, but requested an insecure image ‘https://…/wp-content/plugins/si-captcha-for-wordpress/captcha/images/refresh.png’. This content should also be served over HTTPS.”
So this happens because it tries to load a url with http instead of https.
The url is generated in si-captcha.php, in function get_captcha_url_si.
I tried to force this line :
$url = preg_replace('|https://|', 'https://', $url);
But with no luck.
Anyway, I think this happens here at least. Any core developer here ?
Forum: Plugins
In reply to: [WooCommerce Colors] insecure stylesheet for httpsOk, it was not related to Woocommerce colors, though the lines were under the comment <!–/WooCommerce Colors–>.
Still, I give my solution for this issue :
In the file header.php of my theme, I replaced the lines this way :
-- <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,200' rel='stylesheet' type='text/css' /> ++ <link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,200' rel='stylesheet' type='text/css' />
Thanks for the support, I will have time in January, I will get in touch with you.
Thanks for your message. When I would display the public pages of my website, the social buttons/links were not displayed. Nothing was displayed. I understood it was due to adblock plus when I tried to display my website in another browser, I saw that my use of the plugin was correct.