• Resolved Sophia1one

    (@sophia1one)


    Thanks for making this plugin available. I would like to use your plugin on my real estate site but it uses terminology that we don’t use as layman’s terms here in the US, such as Bond Amount.

    How do I edit or remove the Bond Amount text because prospective renters/buyers won’t know what that is when they view the listing (the average citizen here in the US associates the term “bond” with bail bonds (getting out of jail) not real estate). Here we just call it Rent or Mortgage and it’s payed monthly, or weekly.

    How do I add rent period for month and monthly? (There is only a weekly rent payment option.)

    Thanks

    https://wordpress.org/plugins/easy-property-listings/

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter Sophia1one

    (@sophia1one)

    Ok. I was able to edit the php file myself. I removed the Bond Amount array and added monthly to the Rental Pricing drop down.

    Unfortunately, when I try and preview the test listing it returns an error not found message. I’m using the Genesis Framework theme by StudioPress. So how do I put the listings on a page? I’ve been trying to figure this out for over an hour but can’t find any detailed documentation.

    Also, is there a list of shortcodes? I saw a couple of “example” shortcodes but that was all.

    Plugin Author Merv Barrett

    (@mervb1)

    Hi Sochia1one,

    Thanks for your questions and comments.

    Just finishing up version 1.2 due for release this week, grab it here in the meantime. Has additional filters and options for your market
    https://github.com/easypropertylistings/Easy-Property-Listings
    (download Zip)

    Bond
    ——————
    Can be disabled from Dashboard > Easy Property Listings > Display
    Bond Amount Display (Rental Listing Type) on/off
    That will remove from the front end.

    Rent Weekly/Monthly
    ——————
    Just added month and monthly to the 1.2 version on github for you

    Preview Listings
    ——————–
    Not Displaying due to Permalinks.
    Dashboard > Permalinks (Press Save)
    You should new be able to view listings

    Shortcodes
    ——————–
    Instructions are on our main site here
    http://easypropertylistings.com.au/

    We are building the documentation for the Plugin
    http://easypropertylistings.com.au/documentation/

    Shortcodes
    http://easypropertylistings.com.au/section/short-codes/

    New Shortcodes are in the 1.2 version, documentation incoming

    [listing_feature]
    This shortcode allows for you to specify feature property type(s) using
    [listing_feature post_type=”property” status=”current,sold,leased” feature_id=”” feature=”” template=”default”] option. You can also
    limit the number of entries that display. using [listing_category limit=”5″]

    Plugin Author Merv Barrett

    (@mervb1)

    Also will add examples to our demo site of the different shortcode options and abilities, thanks for letting me know…

    Thread Starter Sophia1one

    (@sophia1one)

    Thanks Mervb1. The listings are displaying now since I updated the permalinks.

    Plugin Author Merv Barrett

    (@mervb1)

    We’ve just released version 1.2 which addresses the above issues and permalinks.

    Plugin Author Merv Barrett

    (@mervb1)

    Also added the Month and Monthly options to version 1.2

    Plugin Author Merv Barrett

    (@mervb1)

    I see the bond showing up in the admin area, working on 1.2.1 bug fix version.

    Tom

    (@tdinon)

    Can you tell me which PHP file you edited for the drop down? i need flexibility to specify SF NNN.

    thank you

    Plugin Author Merv Barrett

    (@mervb1)

    This feature has been added to 2.1 which you can grab here and manually install the plugin.

    The filter in the plugin looks like:

    function epl_listing_load_meta_commercial_rent_period() {
    	$defaults = array(
    		'annual'		=>	__('P.A.', 'epl'),
    		'nnn'			=>	__('NNN', 'epl'),
    		'full-service'		=>	__('Full Service', 'epl'),
    		'gross-lease-rates'	=>	__('Gross Lease Rates', 'epl')
    	);
    	return apply_filters( 'epl_listing_meta_commercial_rent_period', $defaults );
    }

    so you can over-ride the defaults by adding a function to your theme functions.php like this.

    function my_epl_custom_rent_period() {
    	$defaults = array(
    		'annual'		=>	__('P.A.', 'epl'),
    		'nnn'			=>	__('NNN', 'epl'),
    		'full-service'		=>	__('Full Service', 'epl'),
    		'gross-lease-rates'	=>	__('Gross Lease Rates'
    	);
    	return $defaults;
    }
    add_filter( 'epl_listing_meta_commercial_rent_period', my_epl_custom_rent_period);
    Tom

    (@tdinon)

    I was actually able to find this and edit. i appreciate your quick reply. thank you.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Edit or remove taxonomies and how to add rent period for month and monthly’ is closed to new replies.