<select data-conv-question="Hello! Welcome to WhatsUp Clothing, How can I help you?" name="category">
<option value="Delivery">Delivery </option>
<option value="LoyaltyPoints">Points</option><br/>
<option value="query 3">return item</option><br/>
</select>
<div data-conv-fork="category">
<div data-conv-case="Delivery">
<input type="text" name="domainName" data-conv-question="What would you like to know about delivery"> <br>
</div>
<div data-conv-case="LoyaltyPoints" data-conv-fork="first-question2">
<input type="text" name="companyName" data-conv-question="What would you like to know about loyalty points?">
</div>
<div data-conv-case="query 3" data-conv-fork="first-question3">
<input type="text" name="question3" data-conv-question="What would you like to know about returns?">
</div>
</div>
<input type="text" name="question1" data-conv-question="Delivery takes about 3 to 5 working days">
<input type="text" name="question2" data-conv-question="Loyalty points are earned via purchases">
<input type="text" name="question3" data-conv-question="Locate to the return page">
This is the current code that I have, I want the user to be able to select an option and then ask a general question, in which the "bot" replies and thereafter stops giving suggestions. Currently the answers to the questions are displayed one after the other, instead of ending after answering a specific question.