-
Author
-
May 15, 2017 at 09:04 #161397
PascalP37
ParticipantBonjour,
le thème ne s’affiche pas correctement sous IE11.
Pas de défilement de page.
Site très lent
Remove query string no works
i use
//Supprimer Query Strings
function _remove_script_version( $src ){
$parts = explode( ‘?ver’, $src );
return $parts[0];
}
add_filter( ‘script_loader_src’, ‘_remove_script_version’, 15, 1 );
add_filter( ‘style_loader_src’, ‘_remove_script_version’, 15, 1 );
May 15, 2017 at 23:43 #161530Laura
ModeratorHello, can you explain a bit more in English please? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
May 16, 2017 at 07:49 #161575PascalP37
ParticipantGoogle translate…
https://translate.google.com/Hello,
-The theme is not displayed correctly in IE11.
No page scrolling.
-Very slow site
-Remove query string does not workAttachments:
You must be logged in to view attached files.May 18, 2017 at 00:04 #161821Laura
ModeratorHello, will assign the ticket to a higher support level who can help and advise you in your query.
Thanks! ?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
May 19, 2017 at 20:05 #162137Radu
ModeratorHi,
Related to the slow site, make sure you have latest theme update, in past was some problems with that.
For the remove query strings issue, we have fixed that but you will see that in next theme update,
Until then add this function to wp-content/themes/kleo-child/functions.php
COPY CODEif ( sq_option( 'perf_remove_query', 0 ) == 1 ) { function pre_remove_query_strings_static_resources() { function remove_cssjs_ver($src) { if (strpos($src, '?ver=')) $src = remove_query_arg('ver', $src); return $src; } add_filter('style_loader_src', 'remove_cssjs_ver', 10, 2); add_filter('script_loader_src', 'remove_cssjs_ver', 10, 2); } add_action('init', 'pre_remove_query_strings_static_resources'); }
Just checked in IE11 and i-m able to scroll.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 19, 2017 at 23:00 #162153PascalP37
ParticipantThank you for your answer, and your solution.
I have the latest versionPascal P
May 23, 2017 at 15:15 #162432Radu
ModeratorYou’re welcome
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.