badro0
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP] Incompatible pluginsUnderstood. Thank you !
Forum: Plugins
In reply to: [Broken Link Checker] Password protected site can’t be scannedHi Adam,
Thank you for the prompt feed-back !
Yes, that’s what I thought. But although I’m using the Local (old) version I’m getting this error. Any idea what could be causing this ?
Here is the detail of the response:
Link last checked: May 16, 2024
HTTP code: 401
Response time: 0.007 seconds
Final URL: https://example.com/messagerie/
Redirect count: 0
Instance count: 17
Log: === HTTP code : 401 === Response headers
HTTP/1.1 401 Unauthorized
Date: Thu, 16 May 2024 09:49:33 GMT
Server: Apache
WWW-Authenticate: Basic realm=”Protected ‘public_html'”
Connection: close
Content-Type: text/html; charset=iso-8859-1 Request headers
HEAD /messagerie/ HTTP/1.1
Host: example.com
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36
Accept: /
Referer: https://example.com
Connection: close
Link is valid.Forum: Plugins
In reply to: [WooCommerce] How much time until the cart is resetThank you @corsonr
So if that value is left empty, the cart never expires or does it default to some other value ?Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Not working with WPMLGood to hear it works ??
Have a nice day as well (y)Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Not working with WPML@relos Here are the steps:
1 – Create a gallery in the default language
2 – Change the language from the language switcher in the top admin bar
3 – Create another gallery with the same images (upload them again if you can’t find them)
4 – Add it in the page you created in the other language.This is what worked for me. Give it a try and let me know if it works.
Cheers.
Forum: Plugins
In reply to: [Contact Form 7] Problem with recaptcha v3 and HTTPSYou can use Contact Form 7 – reCaptcha v2 in addition to Contact Form 7. Once installed and configured it offers the same reCaptcha functionality you are used to in previous versions of Contact Form 7 (recommended by CF7 plugin author).
I will use it. Thanks!
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Not working with WPMLIt works. Thanks!
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Not working with WPMLThank you. I will try this.
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Not working with WPMLWhen i inspect the code, i see that in the working page the
<a..>
tag has an href attribute with the image url while in the page that is causing the problem the href attribute is empty:<a title="" data-lightbox="ftg-11" rel="ftg-11" class="tile-inner ftg-lightbox ftg-current" href="">
Forum: Reviews
In reply to: [Classic Editor] WordPress 5.0 is Awesome with Classic EditorI guess Gutenberg is not that bad when it comes to features, the worst thing about it is causing conflicts with other things, and this IMO will improve after a couple of updates. Classic editor is awesome though!
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Conflict with gutenbergI’m not blaming themes and plugin developers, i’m just saying that if a wp version is not compatible with some plugins that doesn’t make it a “pre-mature release”. and developers are responsible for making their resources compatible with latest versions.
PS: ACF developers have fixed the issue in an update released today.
- This reply was modified 6 years, 2 months ago by badro0.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Conflict with gutenbergThis has been fixed in today’s update:
5.7.8
Release Date – 7 December 2018Fix – Fixed vulnerability allowing author role to save unfiltered HTML values.
Fix – Fixed all metaboxes appearing when editing a post in WP 5.0.
i18n – Updated Polish translation thanks to Dariusz Zielonka.
i18n – Updated Czech translation thanks to Veronika Hanzlíková.
i18n – Update Turkish translation thanks to Emre Erkan.
i18n – Updated Portuguese language thanks to Pedro Mendon?a.Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Conflict with gutenbergNot being compatible with some plugins doesn’t make a wordpress release a pre-mature release, it’s up to the themes and plugins developers to make their resources compatible with the core.
Forum: Plugins
In reply to: [Contact Form 7] Trying to capture posted dataAwesome!
They are inWPCF7_Submission
class.
Here is the code if anyone is interested:// define the wpcf7_before_send_mail callback function action_wpcf7_before_send_mail( $contact_form ) { $id = $contact_form->id(); if ($id==128){ $submission = WPCF7_Submission::get_instance(); $posted_data = $submission->get_posted_data(); $uploaded_files = $submission->uploaded_files(); //Process files and data } }; // add the action add_action( 'wpcf7_before_send_mail', 'action_wpcf7_before_send_mail', 10, 1 );
Thanks!
Forum: Plugins
In reply to: [Contact Form 7] default:get not working with checkboxesHello,
Yes it works, but since you have a space in your value you need to url-encode it.
So if you encode “Option 1” it becomes “Option%201” (replaced space with %20).Now in your case try this:
?brochures=Option%201
It should work.