-1
Well, I have Feature Discovery in my js file that way:
$(document).ready(function(){
$('.tap-target').tapTarget();
$('.tap-target').tapTarget('open');
});
function closeFeatureDiscovery() {
$('.tap-target').tapTarget('close');
$('.tap-target').tapTarget('destroy');
}
It works normally but I would like it to open only the first time the person accesses the page and not every page that is accessed within the site. I did some searches and some recommend using Localstorage to store the status but I do not know if it is really the best solution for the case and also did not know how to search about this specific case.
There is no way to store this information that has already been opened once without using localStorage or a database.
– LeAndrade