Slams
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Remove images from CDNHi @erania-pinnera!
Yes, I did. I chose the ‘Something other than what is listed above’ category, but didn’t receive any notifications or ticket ID.
Should I resubmit the form?
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Remove images from CDNHi @reynierc
I wrote to you through the contact form. Thank you!Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Remove images from CDNHI @reynierc
Thank you very much for your answer! The most interesting thing is that I haven’t used Jetpack for more than 10 years. I don’t quite understand how this feature ended up being enabled. I don’t even remember my account access credentials. If I’m not mistaken, they were stolen during one of the password leaks to the darknet.
Regarding the spammers, I can’t give a quick answer, I need to search through the links. But the picture is as follows:
Image farms are massively stealing and embedding them on their sites.
Since hotlinking prevention are configured on the server, they display images through your CDN.- This reply was modified 2 weeks, 3 days ago by Slams.
Forum: Plugins
In reply to: [Any Mobile Theme Switcher] WordPress 6.4 – The plugin no longer works.@kuchenundkakao Thank you! Your code helped me to fix the same issue with Device Theme Switcher plugin.
@stijnwizarts could you share a solution?
@fesupportteam Unfortunately, it’s not good SEO practice to duplicate the same content twice ??
fastcgi_param HTTP_HOST $host;
Did the same. WordPress also throws same warnings so it’s better to make changes in config.
Have the same issue after update to WordPress 6.0
UPD
Sorry, it was a WordPress issue. Found fix here:
https://raw.githubusercontent.com/WordPress/wordpress-develop/6d89ea8f09cf21ef0d1e1acd6e1b30fba1a72301/src/wp-includes/class-wp-term-query.php- This reply was modified 2 years, 8 months ago by Slams.
Forum: Plugins
In reply to: [Comments - wpDiscuz] WpDiscuz excessive inline JavascriptAbsolutely agreed with MegaZ.
Also, please, get rid of jQuery. Native JS x10 times faster. Google Speed now is very important factor and every detail make sense: minimum DOM tree depth, native JS, less CSS.
You have very good plugin, but very overbloated.
Anyway – thank you very much for your work!
Forum: Plugins
In reply to: [Optimize Images Resizing] Better image resize using ImageMagickI’m talking about processing in general. WordPress uses GD library to process images. Optimize Images Resizing use part of code from WP and use GD. Cropped images are
very blurry.And thank you, I’ll check Auto Smart Thumbnails.
Forum: Plugins
In reply to: [Comments - wpDiscuz] WPDiscuz & AutoptimizeTry to add wc_post_id to js exclude list.
Forum: Plugins
In reply to: [Comments - wpDiscuz] cache compatible@newwper3 With Redis working well.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Change “Notify of new replies to this comment”Agreed. This button is not clear.
Hi,
Favorites are stored in usermeta table.Forum: Plugins
In reply to: [Comments - wpDiscuz] Device Theme Swither (and probably other) bugI’ve move all includes before WpdiscuzCore and all code from __construct() to init() as I’ve wrote above and seems everything work fine for now.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Device Theme Swither (and probably other) bugIf I’m not mistaken, it is a good practice for such includings inside init() function and fire it in constructor
add_action('wp_loaded', array(&$this, 'init'));
- This reply was modified 6 years, 1 month ago by Slams.