Gossamer Forum
Home : Products : Links 2.0 : Customization :

Radio buttons for the email subscribe

Quote Reply
Radio buttons for the email subscribe
Is their a way to make the subscribe form use radio buttons and not the drop down for subscribe or unsubscribe?

I've tried everything, and searched everywhere, but just can't get nothing to work.

Thx.

Quote Reply
Re: Radio buttons for the email subscribe In reply to
Simply edit the following codes in the email.html template file:

Code:

<select name="action">
<option value="subscribe">Subscribe
<option value="unsubscribe">Unsubscribe
</select>


with the following codes:

Code:

<input type="radio" name="action" value="subscribe"> Subscribe
<input type="radio" name="action" value="unsubscribe"> Unsubscribe


Hint:
name = name (for form field names)
value = value (for form field types)

Regards,

Eliot Lee