holdusback
Forum Replies Created
-
Hey there,
Any ETA on an official update for this ?
Not rly urgent but still, should be fixed by the devs π
Have a wonderful day !Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Question on resultbox customizationYes ahah I’ve saw it before no worries, but I changed already and still dont work π
When I check the bfi_thumb folder I see them cropped.
I suspect its cause of some wordpress core stuff… Cause my base image are in 840x525px and they are ofc no cropped. But the one wordpress do in other resolution are cropped (I never use them so no hurt)Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Question on resultbox customizationThanks for the quick answer !
The hover thing work like a charm, not the crop logo thing.
I do think that its maybe cause wordpress crop the original logo, I even tried to change the source of the image in ASL, knowing that my original logo are no cropped but it change nothing sadlyForum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Conflicting with FibosearchCrazy how hard it was for such a simple thing.
Just made it without this filter which never worked (even hooking the_content didn’t worked)Here is how I made it :
//Delete les script pas obligatoire function delete_script() { //De register les script liΓ© a a ajax searchlight if ( !is_page('35') ) { wp_dequeue_script('wd-asl-ajaxsearchlite'); wp_deregister_script('wd-asl-ajaxsearchlite'); wp_dequeue_script('wd-asl-ajaxsearchlite-core'); wp_deregister_script('wd-asl-ajaxsearchlite-core'); } } add_action( 'wp_print_scripts', 'delete_script', 9999 ); add_action( 'wp_enqueue_scripts', 'delete_script', 9999 );Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Conflicting with FibosearchYeah sadly $post return null, pretty strange tbh, thats ofc why this dont work I assume.
Also tried ur code but same result, need to check how I can fire later or how to fix this lol
EDIT : This can mb explain :
https://wordpress.stackexchange.com/questions/286241/global-post-shows-null-in-some-of-my-custom-post-types-archive-pages
I use ASL on my portfolio page, as a search engine- This reply was modified 2 years, 1 month ago by holdusback.
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Conflicting with FibosearchThx for the answer !
Sadly dont work aswell, now ASL never load anymore and I see [wpdreams_ajaxsearchlite] on the page where I use the plugin ahah
Im pretty sure its cause the function is fired too early on the page load, what do you think ?Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Conflicting with FibosearchHey there,
Sorry to hijack this topic but I have the exact same target and that filter dont work for me.
I want to load the script only on the page where I use this plugin (there is no need to load 6 JS files on all my page)
Tried this in my function.php :add_filter( 'asl_stop_loading', 'asl_stop_loading_on', 10, 1 ); function asl_stop_loading_on( $results ) { if (is_page( 35 )) { return false; } else { return true; } };Also inspired from another message you made 3 years ago :
https://ww.wp.xz.cn/support/topic/load-files-only-on-template/
Dont rly know why but its always returning true, the post id 35 is ofc the good one I double-checked it.
I want the plugin to load only on this specific page and on admin area (wich now isnt loaded aswell)
Its maybe cause the code is executed before script are loaded (in the footer) ?Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Question on resultbox customizationHey there,
Thanks for the answer, and sorry for the late reply.
Sadly that option was already checked like this for the logo… still have result like this (those are example) :https://imgur.com/a/6VqGTGO
For the second one, the CSS styling, I just want the most regular hover styling. Strange that it’s not done by default ? I just want a grey hover when cursor is on a box from the search result. Its a small adjustment but can helping fo the user experience I assume.
Thanks you !Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] 4.2 broke connexionTop ! Will check your changelog when u will update π
Have a good dayThanks for your answer !
I assume that’s why it’s only on my development environment and not on my production. Understanding your message its because there is not enough traffic on this specific wordpress env ?
Cause on my production environment I dont have this error, only my development one.
Have a good day!- This reply was modified 2 years, 2 months ago by holdusback.
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] 4.2 broke connexionYes that what I was thinking. Would be cool to incorporate to this plugin, maybe even in the premium version of it, would buy !
For now I’ll go for another way to make itForum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] 4.2 broke connexionThanks for your answer,
I already use your plugin for the step one (send email)
But for the step two, typing the actual password :
Can I do it with this plugin ? I dont want my user to use the original WP reset password form.
- This reply was modified 2 years, 2 months ago by holdusback.
Hey there !
Just had the same issue and clearing cache & CSS/JS was the fix for me.
Question : is there a way to automate the clear cache when I update avada ? Or should I just clear it manually after every update of Avada ?
Im also looking where I can find every how much days/hour the cache is purged automatically ?Thanks!
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] 4.2 broke connexionHello Marcus,
I must be blind but I never find that option you are talking about ? Is it an argument in a shortcode ?
Im a talking about the reset password form where you update your password. Not about the form where you put you email and start the process.Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] 4.2 broke connexionOkay so I fixed my issue with custom codding in my personalize-login plugin and turn off ajaxify in your plugin option page.
Only bad thing is that now it displays the default WP errors login msgs.
One question left – Is there a way to override the default login error msg ?
It give too much information (like if a username exist or not etc…)
The classic filter in function.php of login_errors dont work here, I assume its because of the ajax.
One other way would be to override the translation file, but it look like to not be really optimized, prefer to ask here because I assume there is a better way.
Hope to hear from you soon !
EDIT :
Fixed, pretty smart idea inspired by the documentation of your plugin:function my_lwa_ajax_login( $response ){ if ($response['action'] = "login" && $response['error'] != ''){ if(str_contains($response['error'], "Si vous doutez de votre identifiant") ){ $response['error'] = "L'adresse email ou le mot de passe n'est pas valide.";} } return $response; } add_action('lwa_ajax_login', 'my_lwa_ajax_login');- This reply was modified 2 years, 3 months ago by holdusback.
- This reply was modified 2 years, 3 months ago by holdusback.