agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Do Not Show Street Address i.e. Address Unavailable.listing-address br {display: none;}Forum: Plugins
In reply to: [IMPress Listings] WP Listings – Search not workingWhat exactly does not work? Any error? Try resetting your permalinks by going to Settings > Permalinks and pressing Save.
Forum: Plugins
In reply to: [IMPress Listings] Remove Sq Ft from Widget ViewCopy the widget file to your theme, rename it and customize to your needs, and include it separately.
Forum: Plugins
In reply to: [IMPress Listings] Disable AjaxThere is no Ajax on the tabs. They use jQuery UI tabs, included in WordPress core.
You can remove all the javascript on the single listing template with in your theme’s functions.php:
remove_action('wp_enqueue_scripts', 'enqueue_single_listing_scripts');Forum: Plugins
In reply to: [IMPress Listings] Listing Feed for EmailForum: Plugins
In reply to: [IMPress Listings] No text for Search Results Page with no listingsYou can modify the archive-listing.php in the plugin’s /includes/views/ folder. Move it to your theme folder and customize as needed.
Just need to add an else statement in the archive_listing_loop() to display any custom text you like.
Forum: Plugins
In reply to: [IMPress Listings] TaxonomiesAnswered in previous thread: https://wordpress.org/support/topic/cant-remove-status?replies=9#post-6137348
Forum: Plugins
In reply to: [IMPress Listings] WP Listings – Search not workingTaxonomy terms need listing posts assigned to them in order to show up in the search widget.
Forum: Plugins
In reply to: [IMPress Listings] How to change default /listings/ pageIt is an archive page, in the plugin folder /includes/views/archive-listing.php
You can copy that template file to your child theme folder and it will be used instead. You can then customize as needed and include any sidebar you want.
Forum: Plugins
In reply to: [IMPress Listings] 404 Error When Changing Permalink SettingsThe plugin works with any permalink structure you define. After changing the permalink structure, be sure to clear any caches you have active.
Forum: Plugins
In reply to: [IMPress Listings] Widget featuresThe WP Listings pulls in the taxonomy terms based on the number of posts assigned to the term, with the term having the most posts at the top.
To change it to alphabetical order, edit the plugin file /includes/class-listings-search-widget.php at line 39 change:
$terms = get_terms( $tax, array( 'orderby' => 'count', 'order' => 'DESC', 'number' => 100, 'hierarchical' => false ) );to:
$terms = get_terms( $tax, array( 'orderby' => 'name', 'order' => 'DESC', 'number' => 100, 'hierarchical' => false ) );Deactivate any other active plugins. You apparently have something interfering with the saving of the data.
Forum: Plugins
In reply to: [IMPress Listings] Features Listing Snippet ProblemThe shortcode on your example page is wrapped with
<pre>tags. Change to the Text editor and remove any extraneous HTML surrounding the shortcode.Your other issues are your theme adding styles which override the WP Listings styles. You’ll need some custom CSS to get rid of those styles from your theme.
Forum: Plugins
In reply to: [IMPress Listings] Feature RequestWe’ve looked into this, but the schema.org markup available is not really appropriate for real estate listings or properties for sale. It hasn’t really been developed for such a use case, but we are monitoring development of that and other microdata formats.
Forum: Plugins
In reply to: [IMPress Listings] Genesis Agent Profiles Only For Genises themes ?It would need significant re-coding to work with non-Genesis themes. It is on our roadmap at some point in the future.