JibsouX
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] New functionWow that’s a big thing !
it would be even better to combine this type of optimization in inline which would completely remove the css file calls and load in the previously cached html with just the css that the displayed page needs to be displayed correctly!Will there be the same type of optimization (get reed of the unused) concerning javascript?
Forum: Plugins
In reply to: [LiteSpeed Cache] Hook to change the wp-content/litespeed folder location ?Thanks a lot i’ll test it.
i think it will be best instead of by default creat wp-content/litespeed folder for the css/js cache to create wp-content/cache/litespeed because many others plugin do this like docket cache, clearfy others ??Forum: Plugins
In reply to: [LiteSpeed Cache] New functionyes that’s right the way Fast velocity minify does.
this plugin has some good optimization techniques that are unfortunately not available here like for the inline google font and some others ??Forum: Plugins
In reply to: [LiteSpeed Cache] Combine external/internal JS bug with GPDRexcuse me actually I think it works fine because by excluding the file is still optimized
Thanks for the tips !
is it possible to have an option in the plugin settings to switch on/off instead of a hook ?Forum: Plugins
In reply to: [Fast Velocity Minify] Fast Velocity works best with which cache plugin?Personnally i dont like all in one plugin because of the lack of flexibility so i use a combo of 3 plugins that work very well :
FVM + Gator Cache + (If needed) EM ObjectCache
Cheers !### UPDATE ###
I improve the filter by using a new hook that the plugin use in the sitemap admin settings :
https://zupimages.net/up/19/47/zqts.pngadd_filter( 'rank_math/sitemap/posts_to_exclude', function( $posts_to_exclude ){ $login_designer_page_ID = Login_Designer()->get_login_designer_page()->ID; $posts_ids = [ $login_designer_page_ID ]; // You can add all the post ids you want to exclude seperated by coma. return array_merge( $posts_to_exclude,$posts_ids ); });
Note : This hook is not yet add in the documentation i have signal the plugins support for this ??
Hello, I applied a patch for the filter it works fine now.
In fact, you were not applying the hook correctlyChange the filter for rankmath in the file : login-designer/includes/filters.php
add_filter( 'rank_math/sitemap/entry', function( $url, $type, $object ) { // Pull the Login Designer page from options. $ldpage = Login_Designer()->get_login_designer_page(); $ldurl = get_permalink( $ldpage ); $type = $ldpage->post_type; if (($key = array_search($ldurl, $url)) !== false) { return FALSE; } return $url; }, 10, 3 );
Can you test and confirm the solution please ?
Thanks in advance !I confirm, the conflict is created by your filter :
add_filter( 'rank_math/sitemap/entry', function( $url, $type, $object ) { // Pull the Login Designer page from options. $page = Login_Designer()->get_login_designer_page(); $url = get_permalink( $page ); return $url; }, 10, 3 );
RANKMATH SUPPORT : https://support.rankmath.com/ticket/wrong-url-and-title-for-all-sub-level-of-the-site-map/#post-20757
Hi webtemyk,
My PHP Version 7.2.15
My wp version is actually 5.1.1
on Last version of ClearfyI have test with all the clearfy-component off with all the rest of the settings off and just Automatically insert the Last Modified header on and it made the bug too, i’m unnable to enter on the private page with the good password it just reload the page and create the postpass cookie but still show the password form not the private page content
- This reply was modified 5 years, 10 months ago by JibsouX.
Forum: Plugins
In reply to: [WebP Express] New settings ? (theme image convert)Nive, is there a update log for the next update on your plugin ?
Forum: Plugins
In reply to: [WP Pipes] Help with Keywords filter settingsThanks for your reply, I fully understand that you both want to sell your plugin (working method) but i search a simple free method and i think it’s possible to do it with only the processor by default like “keyword filter” or “Strip Tags”.
- This reply was modified 8 years, 5 months ago by JibsouX.
Forum: Plugins
In reply to: [WP Pipes] Help with Keywords filter settings– Yes that’s those lines ??
– Thanks for the 2nd part !Thanks in advance !
Forum: Plugins
In reply to: [WP Pipes] Help with Keywords filter settingshttps://drive.google.com/open?id=0B_1NOYHqSD24bVlDZjNYcDZ3VVk
*i have not set the filter here but i want to delete all the footer of the rss set.An other question i have : how do i update the post at each new cron because it create new post every time…
Thanks !
Forum: Plugins
In reply to: [BackUpWordPress] Backup is going on & on for hoursSame here, it work well for database backup but not for full backup my root wheight is 586Mo only.
– i have last wp version and last plugin version.