Hi @hellesuhr,
Something like this is not currently available in Hustle but we had couple of requests before so we actually have it on to-do list so we’re looking to add it in one of the future releases.
At the moment it would require custom coding to create this, basically you would require a new element with specific class or ID that you would use as a trigger, I suggest using a child theme to do this.
Here’s an example code that I used for testing by adding it to footer.php:
<div id="slide-in-trigger">Trigger</div>
<style>
#slide-in-trigger {
position: fixed;
right: 50%;
bottom: 0;
background: greenyellow;
padding: 10px;
}
<style>
After that, in slide-in settings, under Display Settings tab I’ve set that ID (slide-in-trigger) to be the trigger and that’s it.
Hope this helps.
Cheers,
Predrag