Title: Display Tab Section separately, epl_property_tab_section
Last modified: September 1, 2016

---

# Display Tab Section separately, epl_property_tab_section

 *  Resolved [alexanderbraun](https://wordpress.org/support/users/alexanderbraun/)
 * (@alexanderbraun)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/display-tab-section-separately-epl_property_tab_section/)
 * Dear Mr. Barrett,
    i begin with a big THANK YOU for your great Plugin. Im using
   your Plugin my Customers Project [evina-estate.de](http://evina-estate.de). I
   also ordered the Slider Extension for this Website.
 * But my Question is about Display the Property Features.
    I would like to display
   just: Living area, Land-Size, build year and build year. is there an option to
   display that instead of the whole features list (epl_property_tab_section).
 * Thank you very much.
 * Best regards from Germany.
 * [https://wordpress.org/plugins/easy-property-listings/](https://wordpress.org/plugins/easy-property-listings/)

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

 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/display-tab-section-separately-epl_property_tab_section/#post-7482427)
 * Thanks Alex 🙂
 * Yes you can customise the output of property features using this additional filter:
    - [epl_property_additional_features_list](http://docs.easypropertylistings.com.au/source-function-epl_property_tab_section.html#796)
 * [Documentation epl_property_additional_features_list updated](http://codex.easypropertylistings.com.au/article/250-eplpropertyadditionalfeatureslist)
   to show you how to remove the features that are in the array.
 * HOWEVER what you might want to do is build your own set of items to include.
 * [Create a custom template](http://codex.easypropertylistings.com.au/article/121-how-to-create-your-own-custom-theme-templates-or-modify-existing-ones-using-the-theme-template-loader)
 * Create a custom function with the items you want to include:
 *     ```
       <?php
       // Remove exsisting Features list
       remove_action( 'epl_property_tab_section' , 'epl_property_tab_section' );
   
       // New custom features list
       function my_custom_features_list_callback() {
       	// Do nothing if Easy Property Listings is not active
       	if ( ! class_exists( 'Easy_Property_Listings' ) )
       		return;
   
       	global $property; // Load the lisitng variables
   
       	$new_feature_list = '';
       	$new_feature_list .= $property->get_property_land_value('l');
       	$new_feature_list .= $property->get_property_building_area_value('l');
       	// Add more items that you want to output
   
       }
       add_action( 'epl_property_tab_section' , 'my_custom_features_list_callback' , 5 );
       ```
   
 * See the [epl_property_tab_section](http://docs.easypropertylistings.com.au/function-epl_property_tab_section.html)
   function.
 * See how you go, we can assist you further with custom coding it part of our [Advanced Development](https://easypropertylistings.com.au/extensions/advanced-development/)
   service.
 *  Thread Starter [alexanderbraun](https://wordpress.org/support/users/alexanderbraun/)
 * (@alexanderbraun)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/display-tab-section-separately-epl_property_tab_section/#post-7482558)
 * Hi Merv,
    im sorry. My explanation was wrong. I would like to Display the Features
   Living area, Land-Size, and build year on the Blog View. For more Property Information
   for the visitors. The original Features List should stay at the same Place in
   the Single View, with all the other Standart Features.
 * Thank you very very much.
 * By the way: Is there an option to buy all your EasyPropertyListing Extension 
   at once and provide them to my future customers?
 * Best regards.
 * _[Moderator Note: [No bumping](https://codex.wordpress.org/Forum_Welcome#No_Bumping),
   thank you.]_
 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/display-tab-section-separately-epl_property_tab_section/#post-7482580)
 * RE: I would like to Display the Features Living area, Land-Size, and build year
   on the Blog View. For more Property Information for the visitors.
 * RE: The original Features List should stay at the same Place in the Single View,
   with all the other Standard Features.
    — [How to create custom widget templates using the theme template loader](http://codex.easypropertylistings.com.au/article/303-how-to-create-custom-widget-templates-using-the-theme-template-loader)
 * — and/or [Custom Template Creation Service](https://easypropertylistings.com.au/extensions/custom-templates/)
 * RE: By the way: Is there an option to buy all your EasyPropertyListing Extension
   at once and provide them to my future customers?
    — Yes, see the [Core Bundle](https://easypropertylistings.com.au/extensions/core-bundle/)

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

The topic ‘Display Tab Section separately, epl_property_tab_section’ is closed to
new replies.

 * ![](https://ps.w.org/easy-property-listings/assets/icon-256x256.png?rev=984159)
 * [Easy Property Listings](https://wordpress.org/plugins/easy-property-listings/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/easy-property-listings/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/easy-property-listings/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-property-listings/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-property-listings/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-property-listings/reviews/)

## Tags

 * [display](https://wordpress.org/support/topic-tag/display/)

 * 3 replies
 * 2 participants
 * Last reply from: [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/display-tab-section-separately-epl_property_tab_section/#post-7482580)
 * Status: resolved