Is it possible if you leave a field empty in the back-end that a standard sentence will appear in the place where the value of the field is normally. For example here I have a field in the back end where I enter the price per month. If I leave this field empty in the back end, the website should show: No financing possible.
File: /administrator/components/com_vehiclemanager/vehiclemanager.html.php
Code: |
<tr>
<td width="185"><?php echo 'Prijs per maand'; ?>:*</td>
<td><input id = "maand" class="inputbox" type="text" name="maand" size="15" value="<?php echo $row->maand; ?>" />
<?php echo $currency; ?>
</td>
</tr>
|
Thank you!