Venkat Raj
Forum Replies Created
-
@sophiehikeseo You could go to Dashboard => WP-Optimize => Minify => Advance tab and see list of processed files. You can click on
show info
link andexclude
your script from being processed.I installed
Elementor
plugin and usedHello Elementor
theme. Here is the stylesheet loading order.
https://prnt.sc/tiUm6N68Cg5l
I enabledminify
in WP-Optimize, excludedfrontend-lite-rtl.min.css
, and here is how the stylesheets are loaded.
https://prnt.sc/W1Ih65P3Mcjh
Here is the content of two minified assets
https://prnt.sc/avCUs-L4nwWn
In short, WP-Optimize doesn’t change the order of enqueued stylesheets. Could you please provide more information (about the theme/plugins used), so we can investigate and fix if needed? Thanks- This reply was modified 3 months ago by Venkat Raj. Reason: more content
Hi
If you turned onServe cached pages to logged in users
option (which tooltip saysEnable this option if you do not have user-specific or restricted content on your website
) You may have see admin bar at the top of page.
Here is what happens, The first visitor to a particular page is a logged in user. The page is cached with admin bar. Then when another user visits the page, the cached page (with admin bar) is served to the user. This is a bug and will be fixed in the next release.
However, you claim that it is a security breach which is not the case. Even though there is admin bar, if you try to visit the profile or dashboard, you’ll be greeted with login page, not restricted page/content.
The only possibility I see is that, you are using the same browser for two or more different user accounts. In that case the login cookies are stored in your browser, so you won’t be greeted with login page because you are already a logged in user according to your browser.Hi @surferking
Thank you for your understanding regarding the unintentional mistake. I appreciate that you took the time to revise your ratings. Your feedback encourages us to improve our plugin and make it more helpful.Hi @surferking,
All caching plugins add a comment to cached pages stating that it was cached by specific plugin. It is not a backlink and is never our intention, it is just an HTML comment.Having said that in version
3.3.0
we made a change to add cache comment irrespective ofWP_DEBUG
value. We add reason for not being cached whenWP_DEBUG
is set totrue
This issue does not happens when you have a
robots.txt
file. Unfortunately, it happens when there is norobots.txt
, WordPress creates one and WP-Optimize caching script adds the comment to newly created file.The issue has been fixed in the latest release
3.3.1
In short, it?was not intentional, and we thank you for pointing it out to us.??Please could you revise your 1* rating? This will really encourage us to continue to improve the product and provide ongoing support.
@andreios It seem like your (auto) updating from version
3.3.0
to3.3.1
is incomplete. WP-Optimize no longer usesWPO_WebP_Cron_Scheduler
class and it seems the update removed that class file successfully, but didn’t update the file that calls it.
Please do a manual overwrite of/wp-content/plugins/wp-optimize
folder or do fresh install@harwooje It seem like your (auto) updating from version
3.3.0
to3.3.1
is incomplete. WP-Optimize no longer usesWPO_WebP_Cron_Scheduler
class and it seems the update removed that class file successfully, but didn’t update the file that calls it.
Please do a manual overwrite of/wp-content/plugins/wp-optimize
folder or do fresh install@tom-pijnenburg You can enable Minify, visit the front end (the page which has lightbox feature). Then in the backend you can just
exclude
the problem causing script/wp-includes/js/dist/interactivity.min.js
Please refer to this screenshot https://prnt.sc/h75AO5EhVT5C
As mentioned this will be fixed in the next release@ov3rfly This has been fixed in release
3.2.20
Hi @pms67
Thanks for reporting this. However, I tried updating today at it works fine? Only the trailing...
in the URL you posted causes404
error
Besides, there are update happening for others. Please check this page
https://www.ads-software.com/plugins/wp-optimize/advanced/
and see the no. of downloads Today / Yesterday.
Let us know, if you still face issues@ads97129 Could you please provide a screenshot of Media Library and Uncompressed images screen?
It is possible that prior to 2022/11, you have used another image compression plugin/service?@jakebradley2001 You could use the following code
add_action( 'acf/save_post', function( $post_id ) { error_log( 'ACF action triggered' ); if ( function_exists( 'WP_Optimize' ) ) { error_log( 'Function exists, clearing cache' ); WP_Optimize()->get_page_cache()->purge(); } else { error_log( 'Didnt find the function' ); } });
Solved in version 3.2.17
@eugene212 It only happens with Colibri page builder. So, I setup a site to test this. Created two pages using Colibri builder. It is true that it seems like identical assets are created, however if you compare the contents of the assets, you can see the difference.
Further digging into that, Colibri adds different inline styles for different pages with same handle. So, since the content is different, WP-Optimize creates separate set for each page.
https://ibb.co/mG8YYDW
https://ibb.co/ZmFpTfp
https://plugins.trac.www.ads-software.com/browser/colibri-page-builder/trunk/extend-builder/assets.php#L352@eugene212 We create a hash based on enqueued assets on a particular page, and use it to create a minified/combined asset name. On subsequent pages, new asset will be created only if the hash it different (i.e. different assets are enqueued).
So, could you please write down the exact steps to reproduce the issue? Thanks!