agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Hooks and FiltersAh sorry, you’re right. Didn’t fully understand your question.
What you can do it use a filter to pass an empty array to the extended_property_details:
add_filter('wp_listings_extended_property_details', 'my_extended_details'); function my_extended_details() { $details = array(); return $details; }Forum: Plugins
In reply to: [IMPress Listings] Google Map Not Displaying in Single ListingsAt this time, yes. A future update to the plugin will add a field for the Google Maps API key, so get one now if you don’t already.
Forum: Plugins
In reply to: [IMPress Listings] How to add an Agent to a listingPosts 2 Posts is available at https://wordpress.org/plugins/posts-to-posts/
Forum: Plugins
In reply to: [IMPress Listings] Listing Agent missingThe agent appears to be displaying as expected on your site now. Can this be marked resolved?
Forum: Plugins
In reply to: [IMPress Listings] Remove tabs?Copy the single-listing.php into your theme’s root folder, where your theme’s functions.php is. To undo it, simply delete the file.
Forum: Plugins
In reply to: [IMPress Listings] Remove Listing InquiryCorrection – the default listing inquiry goes to the email address of the author of that listing. For more advanced control of the destination, we recommend using a form plugin (such as Ninja Forms) instead of the default inquiry form.
Forum: Plugins
In reply to: [IMPress Listings] Images not showing in Safari on iphoneIt sounds like a caching issue with your phone browser and not a plugin issue. Try clearing caches or using an alternate browser app.
Forum: Plugins
In reply to: [IMPress Listings] images not visible after importCan you set the plugin settings to “Do Not Update” to see if that resolves the issue?
Are you seeing any notices in the WP Admin about the IDX API validation failing?
Forum: Plugins
In reply to: [IMPress Listings] Custom Select CSS Not WorkingIt could be any number of issues. We add no CSS for the selects and rely on the browser. Without seeing your site and the issue, I’m sorry we can’t assist any further.
Forum: Plugins
In reply to: [IMPress Listings] Translation not working@doro44 Is correct. Thx!
This will be corrected in the next update
Forum: Plugins
In reply to: [IMPress Listings] Mobile FriendlyYour theme may some CSS that needs to be accounted for. We don’t guarantee compatibility with every theme, so some CSS tweaks may be needed.
Forum: Plugins
In reply to: [IMPress Listings] Migrate to new site?It’s simple to migrate the listings just by using the WordPress Exporter and Importer as you can select to only export that post type.
There is currently no option to export or import settings, however, there are not many settings so you could pretty easily manually copy those.
This will be addressed in the next update with a tweak to the occurrence of the appended url param.
Forum: Plugins
In reply to: [IMPress Listings] All Property TypesIn the widget?
There is this line, which pulls only one property type taxonomy term due to display limitations in the widget:
$loop .= sprintf( '<span class="listing-property-type">%s</span>', wp_listings_get_property_types() );If you want to display more than one, use get_the_term_list. Ex:
get_the_term_list( $post->ID, 'property-types', '', ', ', '' );The single-listing.php template includes the required call to get_sidebar()
You may want to just copy this single.php file to your theme and rename it single-listing.php.
Then replace this line:
<?php x_get_view( 'ethos', 'content', get_post_format() ); ?>With this:
<?php single_listing_post_content(); ?>