Forum Replies Created
-
AuthorPosts
-
July 18, 2017 at 5:08 am in reply to: Problems with Enfold Child Theme and Woocommerce Login/Register page #823071
Found the problem on the custom header.php but it was working fine before the update to 4.1. This custom header was because of a Mailchimp Pop-up.
No need for further assistance.
ThanksHi Ismael,
It already is. Light box does not work and the magnifying hover works only on non-HiDPI. What else can I do?
Thanks,
FranciscoI hope you are not giving up on this because you can’t login. I was hoping to hear from you sooner regarding my last reply. Anyway, if you can’t make it please make a login of your own and I will up your role to Admin. As I had no problem using the login details I gave you, this might be a better alternative.
Looking forward to hear from you soon. Thank you
I can login without a problem using those credentials. I think that as you copy paste it, you miss the first character of the password which is a dollar sign. try the link on private. please send a screenshot of the error you get
Please try the email add given instead of the user. For some reason the username is not working. In the meantime stick to the email add.
Thanks
That’s embarrassing :)
Here it goes. Thanks
A plugin like Search Exclude does the trick but would you know a snippet that could make Ajax read that the products are hidden and should be excluded from the instant search?
Much appreciated!
Managed to fix it by adding another function after the one mentioned on the previous post. Not sure if this is the most efficient fix but it works. I leave the code below for anyone that’s looking for the same.
add_action('wp_footer', 'restore_search_on_type'); function restore_search_on_type(){ ?> <script type="text/javascript"> jQuery("#s").on('keyup',function(){ jQuery(".ajax_search_response").show(); }); </script> <?php }
Hi,
I managed to put this code together which does close the search results after a click of the mouse.
add_action('wp_footer', 'close_search_on_click'); function close_search_on_click(){ ?> <script type="text/javascript"> jQuery(document).on('click',function(){ jQuery(".ajax_search_response").hide('slow'); }); jQuery(".ajax_search_response").on('click',function(e){ e.stopPropagation(); }); </script> <?php }
The downside is that after the search results close, if I retype something else on the search bar, I don’t get anymore search results. Could you help me with the code that will refresh that dropdown after typing?
Thanks
Thank you for your reply.
Where should I paste this code?
Sure, I just don’t know what to call it. Here is a picture of it
As you start typing this window pops down but I want to be able to close it If I click elsewhere on the website.Thanks,
Francisco- This reply was modified 7 years, 6 months ago by Francisco Correia.
Hi Sarah!
Worked like a charm! Thank you very much for your prompt reply.
Have a nice day!
Many thanks!
Thanks. The problem is that I was using comments like
<!--No Cart-->
but it seems that the quick CSS can’t take comments like this. Is there a way to do it?
Thanks,
Francisco -
AuthorPosts