So I'm working on a project where I have a bio section of two people. I want to add a button to book that individual person by redirecting to the book page and have that persons radio button selected.
Is it possible to have this done? Or maybe it would be better to have a dropdown for the selection instead if that would be easier? Or if it's just not possible, that's okay. Thanks in advance for any help!
Not sure what code you'd like to see but here is the radio button select I have on the book page right now:
<div id="choose-stylist">
<label for="stylist">Which Stylist would you like to book? </label>
<ul>
<li>
<input type="radio" name="stylist" value="tristia" checked>Tristia
</li>
<li>
<input type="radio" name="stylist" value="heidi">Heidi
</li>
</ul>
</div>