Customize autocomplete template without using theme location?
-
Hello, my site is built by Oxygen Builder which requires no wp theme to work. In this case, is it possible for this filter to hook my template in a custom location like the /uploads/ folder?
I have tried the below code but does not seem to work.. Thanks
function yourtheme_algolia_template_locations( array $locations, $file ) { if ( $file === 'autocomplete.php' ) { $locations[] = '/wp-content/uploads/wp-search-with-algolia/templates/autocomplete.php'; } return $locations; } add_filter( 'algolia_template_locations', 'yourtheme_algolia_template_locations', 10, 2 );
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Customize autocomplete template without using theme location?’ is closed to new replies.