Sakthivel
Forum Replies Created
-
Hi @sasiddiqui ,
Thanks for the help. I have given feature requests on Github.
Provided code is working fine on the page URL like,
https://www.example.com/blog?ver=1619437815%27%7Ctimeout+%2FT+15But that’s not works for the below CSS file URL, can you please let me know why this not works for this case.
https://www.example.com/wp-content/cache/autoptimize/css/autoptimize_single_462157d56066e48c0613a5ac8e33853c.css?ver=1619437815%27%7Ctimeout+%2FT+15Thanks,
SaravananHi @sasiddiqui ,
It’s not working when the file url has special characters like <>,
Please share the idea to fix the issue.
.css
.jsRegards,
Saravanan- This reply was modified 3 years, 5 months ago by Sakthivel.
Hi @sasiddiqui ,
Please tell me is there any hook is available to add the below special character to include a list to block these items from the url,
‘
;
~
+
=
/
”
$
%
*`Regards,
SaravananHi @sasiddiqui ,
Thanks for your reply,
I think you may have an idea to remove the specific query string from the URL, Can you please share the idea to fix it.
I just want to remove the below parameter from the URL so that we can fix the issue.
ver=1619437815%27%7Ctimeout+%2FT+15
p=41475%27%3Bsleep+15%3B%27https://www.example.com/blog?ver=1619437815%27%7Ctimeout+%2FT+15
https://www.example.com/blog?p=41475%27%3Bsleep+15%3B%27Also,
Please tell me how to remove the below characters from the URL.
~ . ” % @ & * $ – # ~ . ” % + , `Thanks,
SaravananForum: Plugins
In reply to: [Autoptimize] Getting console error due to latest autoptimize pluginThanks for the clarification.
Forum: Plugins
In reply to: [Autoptimize] Getting console error due to latest autoptimize pluginplease let me know what are required domain needs to be added in Content security policy for the Autoptimized plugin? this may help to solve my problem!.
Thanks for the awesome plugin this makes my site too fast.
Forum: Plugins
In reply to: [Autoptimize] Getting console error due to latest autoptimize pluginSorry, don’t get wrong. now I have deactivated the plugin and checked still am getting the same error. now I realized this caused due to other plugins.
Also, please let me know what are required domain needs to be added to the Content security policy for the Autoptimized plugin?
Thanks.- This reply was modified 3 years, 7 months ago by Sakthivel.
Thanks, issue fixed
Hi @tneville
I have updated the app password instead of the normal login password. Now it’s working fine thanks for the reply.
Regards,
SaravananHi @wpo365
Even skip the nonce verification still am getting the same error please check the below link to view the error page,
https://ibb.co/gZVbLXb
Please check the configuration page,
https://ibb.co/qChfSgB
Please share the knowledge to fix this issue.Thanks,
Saravanan- This reply was modified 4 years, 1 month ago by Sakthivel.
Thanks for the quick reply,
Yes, the Plugin is up to date!
we are using the Autoptimize plugin to increase site speed. is this cause the problem?
now I have checked the option to skip nonce validation. is this any problem with security issues?Hi @wpo365
Thanks for the quick reply and you saved my time.Regards,
SaravananForum: Plugins
In reply to: [Elementor Custom Skin] Sorting order is not proper on PaginationNo i have checked on by selecting different skin. But now it’s working. the actual problem is while hook the per_get_posts method in search page i was written below code that was the problem.
Old code:
function searchsorting($query) {
if ( $query->is_search&& !is_admin() ) {
$query->set(‘post_type’,array(‘sfwd-courses’,’sfwd-lessons’,’sfwd-topic’));
$query->set(‘orderby’, ‘post_type’ );
$query->set(‘order’, ‘ASC’ );
}
return $query;
}
add_filter(‘pre_get_posts’,’searchsorting’);New Code:
function searchsorting($query) {
if (is_search()&& !is_admin() ) {
$query->set(‘post_type’,array(‘sfwd-courses’,’sfwd-lessons’,’sfwd-topic’));
$query->set(‘orderby’, ‘post_type’ );
$query->set(‘order’, ‘ASC’ );
}
return $query;
}
add_filter(‘pre_get_posts’,’searchsorting’);Thanks for the reply!
- This reply was modified 4 years, 9 months ago by Sakthivel.