Bedrooms

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)

These forums are closed to new replies / tickets. Please open a support ticket from our new Support page.

  • Author
    Posts
  • #12961
    Kyran Doyle
    Spectator

    Hi Merv

    I have a site that is focused on Dual Occupancy Homes, and I require the ability to display the bedrooms as 3 + 2 or 3 + 1, or 4 + 1, or 4 +2.

    I would also like to be able to create a new house category called “Dual Occupancy”

    While I am here Is there a shortcode that will allow me to display may listings in the “project card format on my home page. I want to be able to display like this on the home page and in another fashion on the archive page.

    #12962
    Kyran Doyle
    Spectator
    This reply has been marked as private.
    #12964
    Merv Barrett
    Keymaster

    Hi Kyran

    You can add your additional property type with a filter here.

    function my_epl_listing_meta_property_category($array) {
        $array = array(
            'House'				=>	__('House', 'epl'),
            'Dual-Occupancy'		=>	__('Dual Occupancy', 'epl'),
    	'Unit'				=>	__('Unit', 'epl'),
    	'Townhouse'			=>	__('Townhouse', 'epl'),
    	'Villa'				=>	__('Villa', 'epl'),
    	'Apartment'			=>	__('Apartment', 'epl'),
    	'Flat'				=>	__('Flat', 'epl'),
    	'Studio'			=>	__('Studio', 'epl'),
    	'Warehouse'			=>	__('Warehouse', 'epl'),
    	'DuplexSemi-detached'		=>	__('Duplex Semi-detached', 'epl'),
    	'Alpine'			=>	__('Alpine', 'epl'),
    	'AcreageSemi-rural'		=>	__('Acreage Semi-rural', 'epl'),
    	'Retirement'			=>	__('Retirement', 'epl'),
    	'BlockOfUnits'			=>	__('Block Of Units', 'epl'),
    	'Terrace'			=>	__('Terrace', 'epl'),
    	'ServicedApartment'		=>	__('Serviced Apartment', 'epl'),
    	'Other'				=>	__('Other', 'epl')
        );
         
        return $array;
    }
    add_filter('epl_listing_meta_property_category', 'my_epl_listing_meta_property_category');

    Unsure about your 4 + 2, how would you enter these details in a listing? Need to think on this

    At the moment there is no way to select a template from the shortcode to use on the home page. Will consider this as an update.

These forums are closed to new replies / tickets. Please open a support ticket from our new Support page.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Priority Support’ is closed to new topics and replies.