Question

I am working on Depoto

At checkout page, I want to add city as dropdown.

Was it helpful?

Solution

<select name="city" placeholder="Enter City Name" value="<?php echo $this->escapeHtml($this->getFormData()->getCity()) ?>" title="<?php echo $this->__('City') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="city" >
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top