I was wanting to do a multi column search like on the netlify site.
My current flow is this. Wordpress local push to staging server → Wordpress staging export to static via plugin → push static files to git → netlify pull from git → netlify algolio crawler integration.
in my wordpress site I have this
--link to https://cdn.jsdelivr.net/npm/@algolia/algoliasearch-netlify-frontend@1/dist/algoliasearchNetlify.css"
--link to https://cdn.jsdelivr.net/npm/@algolia/algoliasearch-netlify-frontend@1/dist/algoliasearchNetlify.js
-- script
algoliasearchNetlify({
appId: '1L5FC*****',
apiKey: '50f3a911652bb541eae70b1a07d*****',
siteId: 'b204ef8b-78c3-433a-a93c-740d664*****',
branch: 'static',
selector: 'div#search',
analytics: true,
hitsPerPage: 10,
placeholder: 'Test Search',
});
<div id="search" class="search">Search here</div>
Which works fine for pulling results, but the results look this like
and I’m not sure how to get it into multiple columns. I’m assuming I will also need to set up multiple indices? for each column.
Any suggestions or docs I should be reading? Also not opposed to paying for help!