我在Joomla组件中有一个表单,用户需要根据所选国家/地区选择国家/地区和城市。就我而言,我只需要一个国家。如何编辑或替换下面的代码以将国家/地区设置为默认值并将其从表单中删除?
<div class="form-group">
<label for="submit-location"><?php echo JText::_('COM_BT_PROPERTY_LOCATION');?></label>
<?php echo $this->form->getInput('country'); ?>
</div>
<div class="form-group">
<?php echo $this->form->getInput('city'); ?>
</div>
感谢您的时间。任何建议都非常感谢!