Merv Barrett
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Property Listings] Add New House CategoriesHere is a guide on How to add additional house categories with the epl_listing_meta_property_category filter
Please review the Hooks: Action and Filter reference
Forum: Plugins
In reply to: [Easy Property Listings] Different Slug for archive and single propertyhmmm, doesn’t seem to work…? Ah our code is only supporting true/false
Our code is written like this. Will add this as a feature request$archives = defined( 'EPL_PROPERTY_DISABLE_ARCHIVE' ) && EPL_PROPERTY_DISABLE_ARCHIVE ? false : true;
GitIssue: https://github.com/easypropertylistings/Easy-Property-Listings/issues/1053
What you can do in the meantime is use the filter epl_property_post_type_args
You can replace the has_archive using that filter e.g.
function my_epl_property_post_type_args( $array ) { $array['has_archive'] = 'properties'; return $array; } add_filter( 'epl_property_post_type_args', 'my_epl_property_post_type_args' );
And this solution makes the feature request redundant
- This reply was modified 1 year, 8 months ago by Merv Barrett.
- This reply was modified 1 year, 8 months ago by Merv Barrett.
Forum: Plugins
In reply to: [Easy Property Listings] Different Slug for archive and single propertyAh in that case you can use the epl_property_post_type_args filter to alter the defaults.
And i did not know that so thanks. I thought it was a true/false value but its also a string… ??
WordPress register_post_type()
The EPL_PROPERTY_DISABLE_ARCHIVE constant will let you change that value
(as we thought it was true/false the constant name could be better bout you can still use it:
How to modify the custom post type slugs for each listing type for localisation or other names
define( EPL_PROPERTY_DISABLE_ARCHIVE, 'my-new-slug' );
With the REAXML format we added a lot of support for data points that comes with that listing format. Its more of an internal use option for listing agents to track the authority of the listing.
Fields can be disabled with the following:
Forum: Plugins
In reply to: [Easy Property Listings] Results page in Divi problemWhen using the Divi Theme you can override the search results template using the Divi Theme Builder and select the Post Type (Property, Rental, Land, Commercial) etc
Forum: Plugins
In reply to: [Easy Property Listings] Different Slug for archive and single propertyAs this is a WordPress custom post type then you need to use the same slug as far as I am aware. But instead of using the /commercial/ slug just create a page and use a shortcode, eg call the page:
Commercial For Lease (slug would be) /commercial-for-lease/
Shortcode to use is the [listing_category] Shortcode.
[listing_category commercial_listing_type=lease status=current]
Forum: Plugins
In reply to: [Easy Property Listings] Commercial Rental?Commercial rentals are stored in the commercial listing type. For a lease set the Commercial Listing Type as select the type as Lease.
You can then display the lease commercial listings with the [listing_category] Shortcode using the commercial_listing_type option eg:
[listing_category commercial_listing_type=lease]
No we do not have any payment systems as there are a large number of excellent membership plugins that so payment and handle a wide range of payment gateways that can provide a solution
Forum: Reviews
In reply to: [Easy Property Listings] Stay away from Easy Property ListingsWe have 6,000 installs so yes we are a small team, not sure where you see 600,000. I used to work weekends in Real Estate sales so know what your job was like and now with a young family the minutes i do have are limited. and with a baby due its hard to do everything 24/7.
You didn’t even give us a chance to help you and solve this issue with a paid add-on. I processed your refund this morning after seeing your 4 tickets on Sunday.
Forum: Reviews
In reply to: [Easy Property Listings] Stay away from Easy Property ListingsAlso you need to be using Easy Property Listings on your site to use any of our premium add-ons. Your site is not even using the Easy Property Listings plugin.
And we do not work 24/7 support is hard enough 9-5 to work on projects, extension/plugin updates and feature requests. + 4 messages on a Sunday of a long weekend and you go all 1 star review on a plugin you are not even using on your website and because we didn’t instantly get back to you on a Sunday?
- This reply was modified 1 year, 9 months ago by Merv Barrett.
- This reply was modified 1 year, 9 months ago by Merv Barrett.
Forum: Reviews
In reply to: [Easy Property Listings] Stay away from Easy Property ListingsSorry we have a bunch of updates in the works and we are a small team doing the best we can and do a hell of a lot of customisation work. Never saw any support ticket except your three requests over this long weekend that we are not working, meanwhile getting our life ready for a second child. Sorry we were not able to instantly solve your problem nor did you even give us a chance to help you.
Have a great day
Forum: Reviews
In reply to: [Easy Property Listings] Not easy at allYou are right the videos are old and are doing our best with the time we have. I’ve got to re-make the videos as its fairly easy to get listings on your site and displaying property.
Thanks for your feedback and its on my list to re-make them with the WordPress Gutenberg styling
Forum: Plugins
In reply to: [Easy Property Listings] Template for proerty listingYes see the guide here: How to create custom templates and use them with shortcodes
Forum: Plugins
In reply to: [Easy Property Listings] Add Support for PHP 8.2Hi Matt,
We’ve just released Easy Property Listings 3.4.44 with PHP 8.2 support and notices fixed. Let me know how that goes for you
Forum: Plugins
In reply to: [Easy Property Listings] Open floor plan in lightboxYes you can use a plugin like Easy Fancy Box to trigger a lightbox for the floor plan images.