Salve 
sto creando un nuovo metodo di pagamento con risposte multiple su Magento.
Tutto bene, ma i radio buttons sono disabilitati. Come si attivano?

sto creando un nuovo metodo di pagamento con risposte multiple su Magento.
Codice:
<?php$question = Mage::getModel('emme_question/question')->getCollection()->getLastItem();
$answers = $question->getSelectedAnswersCollection();
?>
<h4><?php echo $this->escapeHtml($question->getValue()); ?></h4>
<ul>
<?php foreach ($answers as $answer): ?>
<li>
<label><?php echo $this->escapeHtml($answer->getValue()) ?></label>
<input type="radio" name="my_custom_answer" value="<?php echo $answer->getId() ?>" required>
</li>
<?php endforeach ?>
Tutto bene, ma i radio buttons sono disabilitati. Come si attivano?