Lukasz
Forum Replies Created
-
Forum: Plugins
In reply to: [Disable Lazy Load] disable specific classI was looking for same thing, you need to search for string wp-post-image using this filter ‘wp_img_tag_add_loading_attr’
Wrote a example here:
https://developer.ww.wp.xz.cn/reference/functions/wp_img_tag_add_loading_attr/#user-contributed-notesForum: Plugins
In reply to: [Gutenberg] block styles not inlining with filter load_separate_block_assetsClosing this, I was helped out by the Gutenberg Gods https://github.com/WordPress/gutenberg/issues/31013
Forum: Localhost Installs
In reply to: WordPress could not establish a secure connection to ww.wp.xz.cnI stand corrected, my workplace uses netskope cloud security, this is what caused my issues once I disabled it.
At first I thought it was the VPN since I could update immediately after disabling the VPN. But what happened is when I disabled the VPN, it would temporary disable netskope client, during that time I would perform updates in WP but then after issues would resurface later on when it re-enabled itself. phew.
Forum: Localhost Installs
In reply to: WordPress could not establish a secure connection to ww.wp.xz.cnOMG- Steven, it was my company VPN blocking the requests..I disconnected from the VPN and was able to successfully update plugins and themes…
Check your VPN!…thanks again Steven for you attention on this, I hope this helps others in the future.
- This reply was modified 5 years, 4 months ago by Lukasz.
Forum: Localhost Installs
In reply to: WordPress could not establish a secure connection to ww.wp.xz.cnJust updating anyone who stumbles across this.
I tried localwp, but had the same exact issue. So it seems this is beyond laragon and localwp.
Here’s a more specific error I’m getting:
Update Failed: Download failed. cURL error 60: SSL certificate problem: self signed certificate in certificate chainForum: Plugins
In reply to: [Contact Form 7] aria-describedby conflict, value being overwrittenI ran out of time, and just left the line commented out, next maintenance will look into another solution.
Forum: Plugins
In reply to: [Contact Form 7] Need To Send Form Submission To 200+ RecipientsTrying to send that many at once may end up in spam, you will probably need a service to do that like Mailchimp:
Forum: Localhost Installs
In reply to: WordPress could not establish a secure connection to ww.wp.xz.cnThanks for the help and suggestions, I have no tried local by flywheel yet, worried it may be slower than laragon, which is very fast compared to xampp.
I tried connecting securely through laragon using 443 port and error occurred, doubled checked with google and same error showed:
Ran this command
openssl s_client -connect api.ww.wp.xz.cn:443Error:
SSL handshake has read 3778 bytes and written 392 bytes
Verification error: self signed certificate in certificate chainCan at least single out that it is not WordPress that is causing the issue.
Going to check the TLS and openSSL libraries as well and see support at laragon forums as well, thank you for the help!
Forum: Localhost Installs
In reply to: WordPress could not establish a secure connection to ww.wp.xz.cnYes, localhost using laragon, thanks for looking into it!
Pings successfully:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 28ms, Maximum = 33ms, Average = 30msForum: Plugins
In reply to: [Contact Form 7] Prevent submitting when pressing ‘enter’You can google and find tons of solutions for this:
https://stackoverflow.com/questions/30384571/prevent-form-submission-on-hitting-enter-key-for-text/30385515I would not recommend it though since it’s unnatural and possibly accessibility issues.
Forum: Plugins
In reply to: [Contact Form 7] SMTP emails not getting signed / DKIMCF7 has nothing to do with signed emails.
It looks like the problem is with MXROUTE or WP-SMTP, you should open ticket with them instead to investigate.Fantastic, thank you! on my todo list to update 🙂
Forum: Plugins
In reply to: [Contact Form 7] wpcf7_before_send_mail $posted_data not working anymoreAlso the way it shows in the article works as well:
$recipient_email = $submission->get_posted_data( 'email' ); // Cast to array and join the array elements with a comma. $recipient_email = implode( ', ', (array) $recipient_email );Forum: Plugins
In reply to: [Contact Form 7] wpcf7_before_send_mail $posted_data not working anymoreThank you @takayukister !
I found that article after I posted..in my case it was returning an array of strings, quick fix was to use with index key “$posted_data[‘your-recipient’][0] ===” which allows me to compare the strings!
Thank you for the timely response.
Awesome, thank you!