darknessfx
Forum Replies Created
-
Forum: Plugins
In reply to: [WP YouTube Lyte] RSS Feed Youtube not embedThanks for the reply @optimizingmatters . I don’t know what got different, perhaps it was some videos I imported from other RSS feeds that worked while those using lyte don’t and I didn’t noticied before.
I got able to fix this issue, I went into the wp-youtube-lyte.php, at line 394 (after $the_content) I added this code:
if ($lyte_feed) { $the_content = "<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/".$vid."\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture; \" allowfullscreen=\"1\"></iframe><br />Watch this video <a href=\"https://youtu.be/".$vid."\" data-wpel-link=\"external\" target=\"_blank\" rel=\"nofollow external noopener noreferrer\" class=\"wpel-icon-right\">on YouTube<span class=\"wpel-icon wpel-image wpel-icon-6\"></span></a>.<br />"; }
This way it bypass the default $lyte_feed behaviour and forces the feed to embed the YT video directly.
Thank you!
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] EU Cookie Law – Script errorDone:
https://github.com/Automattic/jetpack/issues/16625Thanks!
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] stats.wp.com 404 errorSorry, this is not an error, my bad.
I tested now using a VPN and noticied the URL worked fine, it’s my local ad-blocker that blocked “stats.wp.com” by default settings. I added the “stats.wp.com” to the ad-blocker safe list and returned the code to original state.
Thanks.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] EU Cookie Law – Script errorHi there,
How to replicate:
Open WordPress Admin Dashboard.
Go to Appearance > Widgets.
Add Cookies & Consents Banner (Jetpack) to your primary sidebar.
Set Capture consent & hide the banner to After this amount of time 30 seconds.
Save.
Visit your WP page (maybe using an European VPN?).
The Cookies and Consent banner shows up, click Agree.
Open your browser DevTool, check Console outputs. No errors.
Press F5 (Refresh).
The widget knows you already consent, so it don’t display the banner again. But.
After 30 seconds, the timer script is still active to destroy/remove the banner even if the script never created the banner this time, it fails to find the banner (n.parentNode = null) and throws this error (Cannot read property ‘removeChild’ of null).I can open the issue ans commit suggestion on github, no problems.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] stats.wp.com 404 errorHi there,
I saw this error on Chrome Browser DevTools Console while working on my site. I can open the issue on github, no problem.
Good to know, thanks!
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] EU Cookie Law – Script errorSolved:
Edit /wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js
Column 1391
Replace:
n.parentNode.removeChild(n)
With:
try {n.parentNode.removeChild(n)} catch (error) {}Problem solved:
Disable Health And Troubleshooting pluging.Surprisingly, by disabling this plugin the WP Dashboard got a nice speed improvement.
Thanks to this thread https://www.ads-software.com/support/topic/stats-widget-doesnt-load-on-wp-admin-dashboard/
Forum: Plugins
In reply to: [Category Posts Widget] Empty widget at Home Page (v4.8.5)I update the “Front Page Category” plugin just now and it fixed this problem with the Category Posts Widget… I don’t know if/how it’s possible, but just happened.
Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA] reCAPTCHA v3Hi,
I saw your page and it’s possible to fix the position problem using this CSS commands:
==
#ncr-robot-check > h4 {
display: none;
}#ncr-robot-check {
position: relative;
left: 250px
}Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Bug? Site title translated.Fixed. On Settings > General Settings , just leave the translation fields empty and save the settings.