If you want to add another option in you're template like Garage, Patio, etc... This will make it easier if you need different set of information displayed. Example: Instead of Garage I needed Doorman...
You'll need to edit three files: (functions.php, features.php, and variables.php)
Let's start:
Open functions.php and scroll down to where you find the listing template options.
Add this: (This uses a drop down menu)
"doorman" => array(
"name" => "doorman",
"type" => "select",
"std" => "Select",
"options" => array("No", "Yes", "Part Time"),
"title" => "<strong>Doorman</strong>",
"description" => "What kind of doorman?"),
Click Save
Open features.php and scroll down to where you find the listing template options.
Add this:
<?php if($doorman) { ?>
<li>Doorman: <?php echo $doorman ?></li>
<?php } ?>
Click Save
Open variables.php and scroll down to where you find the listing template options.
Add this:
$doorman = get_post_meta($post->ID, "doorman_value", true);
Click Save
Now when you go to add a new or old listing you will have an option for doorman in the listing page. You can obviously choose what you want instead of doorman, say you want to put Pool or New Construction, etc...
I hope this helps.
Marco
