creating extra fields in the property listing form
-
Hello,
I have made the following changes to allow for extra fields (in this case ‘rm1’) in the property entry form./views/admin/property_meta.php
<?php iproperty_property_input_html( ‘rm1’ ); ?>/view_helpers/common.php
‘rm1’ => __( ‘Master Bedroom’, ‘iproperty’ ),/view_helpers/single_property.php
$details_in_order = array(
‘beds’, ‘baths’, ‘sqft_building’, ‘sqft_lot’, ‘lot_type’, ‘year_built’, ‘rm1’,…../classes/property.php
…
‘lot_type’,
‘year_built’,
‘rm1’,
…./install.php
year_built VARCHAR(20),
rm1 VARCHAR(100),
…The ‘Master Bedroom’ field does show up in the form, however I’m getting an error (empty) when I update or submit.
Is there a limit to the # of fields? Is there another count I need to update?
I need to have room dimensions, so I’ll need to add about 10 fields.
I feel I’m so close. Any way to help point me in the right direction?
https://www.ads-software.com/plugins/intellectual-property-basic/
- The topic ‘creating extra fields in the property listing form’ is closed to new replies.