agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Directions for basic setup?The child themes can be purchased through agentevolution.com. Take a look at our Turnkey solution to see if that would be a better option as we install, host, and maintain the site for you. All you need to do is enter your content and get things to your liking. If that is something you are interested in feel free to reach out to us in our live chat for more details!
Forum: Plugins
In reply to: [IMPress Listings] How to show Map SearchYou can use the Listings plugin to create non-MLS listings on the site. However, the search you indicated will not search those listings. That being said, since the listings actually create WP entries you could likely find a search plugin for WP to achieve your goal.
Forum: Plugins
In reply to: [IMPress Listings] Front page of Featured listings not displaying correctlyI did some testing and have been unable to reproduce this issue. I inserted the Featured Listings Widget on a home page by going to Appearance -> Widgets; then placing the “WP Listings – Featured Listings” widget in one of my side-bars and it does work as intended. Also, the layout of the listings page seems to be working on your site:
http://robcostello.springergraphicdesign.com/listings/
All things considered; it would appear that there likely some CSS over-riding our CSS which is causing problems; or there has been adjustments made to the widget that fall outside the range of support. If you can provide additional steps to reproduce that will consistently reproduce this on another WP install we can look into it further for you.
Forum: Plugins
In reply to: [IMPress Listings] Weird conflict with SIteOrigin BuilderWe’ve not yet received additional comments about this from other customers. However, should that become the case we just might take you up on your offer to provide additional information. Thank you.
Forum: Plugins
In reply to: [IMPress Listings] Problem after new releaseWe do provide the POT file for the translation of the plugin. However, we don’t provide technical support beyond including the file. However, the plugin is being translated successfully and hopefully the translate handbook will help.
Being Translated:
https://translate.wordpress.org/projects/wp-plugins/wp-listingsHandBook:
https://make.wordpress.org/polyglots/handbook/tools/glotpress-translate-wordpress-org/Forum: Plugins
In reply to: [IMPress Listings] Photo Gallery being DeletedIf you are needing to edit the listing after it has been imported you should disable the automatic update from within the settings of the plugin. This update will wipe out any updates you make to those listings including photos.
Forum: Plugins
In reply to: [IMPress Listings] Front page of Featured listings not displaying correctlyTry going to Listings -> Settings and make sure the following is not checked:
Deregister IMPress Listings main CSS (wp-listings.css)?
Deregister IMPress Listings widgets CSS (wp-listings-widgets.css)?If either of these is checked; please remove the checks and save.
Forum: Plugins
In reply to: [IMPress Listings] Meters instead of Square Feet ?You may be able to do some custom development to make that happen. However, we take the data as it is from the MLS feed. So, if the units from the MLS feed are square feet that is how it will be displayed via the Impress plugin suite.
Forum: Plugins
In reply to: [IMPress Listings] Status Keeps Changing From “Sold” to “Contingent”We have identified the issue and are working on a solution for our next version release. The status provided in the data from changes status frequently for the status field we are using to update with. We have identified a different status field that will better reflect the settings from within the IDX Broker account to show the correct status of the property.
Forum: Plugins
In reply to: [IMPress Listings] Front page of Featured listings not displaying correctlyCan you provide a link to a page experiencing this issue so we can look into it further?
Forum: Plugins
In reply to: [IMPress Listings] All Property TypesOk, so here is what you can do. Keep in mind this is not supported and we have no plans to add this functionality into the plugin.
In the file /includes/functions.php is the function
wp_listings_get_property_types():/** * Displays the property type (residential, condo, comemrcial, etc) of a listing */ function wp_listings_get_property_types($post_id = null) { if ( null == $post_id ) { global $post; $post_id = $post->ID; } $listing_property_types = wp_get_object_terms($post_id, 'property-types'); if ( empty($listing_property_types) || is_wp_error($listing_property_types) ) { return; } foreach($listing_property_types as $type) { return $type->name; } }You can modify that function to return all the terms for a post. It’s recommended to copy the function to your theme or a site specific plugin and rename it, so it doesn’t get overwritten in an update. You would change that function like so:
/** * Displays the property type (residential, condo, comemrcial, etc) of a listing */ function wp_listings_get_property_types($post_id = null) { if ( null == $post_id ) { global $post; $post_id = $post->ID; } $listing_property_types = wp_get_object_terms($post_id, 'property-types'); if ( empty($listing_property_types) || is_wp_error($listing_property_types) ) { return; } $prop_types = ''; foreach($listing_property_types as $type) { $prop_types .= $type->name . '<br />'; } return $prop_types; }Forum: Plugins
In reply to: [IMPress Listings] All Property TypesNot quite sure, but that’s actually not what you want either, because if you look at the documentation, that would return them all wrapped in anchor tags linked to their respective term archive pages: https://codex.wordpress.org/Function_Reference/get_the_term_list
Forum: Plugins
In reply to: [IMPress Listings] All Property TypesWell then unfortunately there is no way to do this unless you write your own function.
Forum: Plugins
In reply to: [IMPress Listings] All Property TypesOk, actually the line you need to change is the line that references wp_listings_get_status()
This line:
$loop .= sprintf( '<span class="listing-status %s">%s</span>', strtolower(str_replace(' ', '-', wp_listings_get_status())), wp_listings_get_status() );Change to:
$loop .= sprintf( '<span class="listing-status %s">%s</span>', strtolower(str_replace(' ', '-', wp_listings_get_status())), wp_listings_get_status($post->ID, 1) );We make no guarantee of compatibility with the wide number of available WordPress themes. In some cases, it may be necessary to create a custom page template to work with your particular theme. This can be done by copying the archive-listing.php and single-listing.php files from the plugin’s /includes/views/ folder into your theme folder and modifying them to work with your theme.