links Slick jS library using wp_enqueue_scripts not pulling

The error in the console should also show the URL that it’s attempting to load. If you look at that you should see that it’s attempting to load from the parent theme, but you’re presumably trying to load it from the child theme. The issue is that you’re using get_template_directory_uri(), which gets the URL to … Read more

Woocommerce – Include custom user meta in order ‘filter by registered customer’ Ajax search

After getting lost with trying to understand the class-wc-ajax.php file, I completely missed a more obvious and simple solution. Here is the code I am using which works perfectly. I hope this helps others looking for similar solution. This filter-hook allows you to add an additional meta_query to the existing search parameters. This will also … Read more