Synonyms with Search API

Submitted by christophe on Sun, 08/03/2020 - 17:34
Here is a really simple way to handle synonyms (or extra keywords) using Search API out of the box with a database server and no custom code involved. Use case: we want to do a full text search based on synonyms that does not appear on the frontend. These ones should be set from the Tags vocabulary. The method should be flexible regarding translations, available for content editors and easily generalizable.

Get local Instagram api credentials with Ngrok

Submitted by christophe on Thu, 12/12/2019 - 17:57

It can be long to find the way through the documentation for these simple steps, so here is a shortcut.
Go to https://www.instagram.com/developer/clients/manage/ and get a Client ID and Client Secret.

 

  1. Start a local server
    php -S localhost:8000

     

  2. Start Ngrok and get the forwarding url
    (e.g. http://my.ngrok.io)
    ./ngrok http 8000

     

Tags