@jmshey90 do you mean query specific, or generally? If you're looking for a content group that would be opened for all queries by default, you could set a cookie in the preSearch
callback, e.g.:
ss360Config.callbacks.preSearch = function(query) {
document.cookie = 'ss360-open-tab=' + encodeURIComponent(query + '<#>My Content Group');
};
Would that work for you?
callbacks: {
preSearch: function(query) {
document.cookie = 'ss360-open-tab=' + encodeURIComponent(query + '<#>news');
}
},
layout
block in your ss360Config
on the page you've sent me. Nevertheless, if I update the configuration by calling SS360.changeConfig('layout.mobile.showImages', false);
and retrigger the search the images are hidden as expected: https://snipboard.io/gVHipb.jpg