agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Add a downloadable Flyer for single listingSure. There are numerous plugins available to let you add PDF downloads to WordPress. Search the plugin repository to find one that fits your needs.
Forum: Plugins
In reply to: [IMPress Listings] Multiple listing works, single listing does notIt can be set to anything. If you tried a custom structure and it saves as post name, you may have something interfering with the permalinks. Try disabling all other plugins and resetting the permalinks again.
Forum: Plugins
In reply to: [IMPress Listings] Multiple listing works, single listing does notReset your Permalinks by going to Settings > Permalinks and click Save.
Forum: Plugins
In reply to: [IMPress Listings] Conversion from other Featured Homes custom post typeNo there isn’t.
Forum: Plugins
In reply to: [IMPress Listings] Issue with Listings PageFollow normal troubleshooting procedures and deactivate all other plugins.
Forum: Plugins
In reply to: [IMPress Listings] How to make Price Ranges in order in the search widgetHmm.. numbers are always a little difficult. The get_terms function is somewhat limited in the orderby parameters (http://codex.wordpress.org/Function_Reference/get_terms). The best option may be to remove the order and orderby parameters so that the default is used, which I believe, is like posts where its the newest terms first. So you would have to create the terms in the order you want them to show.
Forum: Plugins
In reply to: [IMPress Listings] How to make Price Ranges in order in the search widgetThere is, but you’d need a custom widget. It’s a simple change though.
They are ordered by the number of listings assigned to the term.
It was done this way because many agents wanted to display the city or price range they work with most, and have the most listings, as the first option.
If you’re comfortable editing the plugin files (and having those overwritten when a new plugin version is released) just change this in /includes/views/class-listings-search-widget.php:
$terms = get_terms( $tax, array( 'orderby' => 'count', 'order' => 'DESC', 'number' => 100, 'hierarchical' => false ) );to this (for alphabetical):
$terms = get_terms( $tax, array( 'orderby' => 'name', 'order' => 'DESC', 'number' => 100, 'hierarchical' => false ) );Again, it would be bets to create a custom widget, include it in your theme’s functions.php, and add it as needed.
Forum: Plugins
In reply to: [IMPress Listings] Options for "Listing Presented by"Not at this time.
Forum: Plugins
In reply to: [IMPress Listings] visitor's enquieryIt sends to the admin email in Settings > General. If you’re not getting those emails to the admin email, check your server’s mail settings.
Alternatively, you can use any number of form plugins (Gravity Forms, Ninja Forms, etc.) and have it send to any email you wish.
Forum: Plugins
In reply to: [IMPress Listings] display featured listings on index pageUse the shortcode with PHP.
<?php echo do_schortcode( '[listings]' ); ?>Forum: Plugins
In reply to: [IMPress Listings] Area to Showcase Agent's sold propertiesAs long as you have the agent assigned to the listing, it will show (regardless or sold or active) on their agent profile.
If you only want sold properties, your best bet is probably to create taxonomies/terms for each agent, then you can do a custom search to display only sold properties from a particular agent.
Yes. Shortcode usage is explained on the Installation page: http://wordpress.org/plugins/wp-listings/installation/
Forum: Plugins
In reply to: [IMPress Listings] How can I come to know Visitors Enquiry??The form built in to the plugin sends an email to the site admin, located in Settings > General. If you want it to go elsewhere, or customize the form, use a form plugin instead and insert the form’s shortcode into the available field.
Forum: Plugins
In reply to: [IMPress Listings] Adding search listing in headerAdd a widget area to your theme’s header. Then use the Listing search widget.
Forum: Plugins
In reply to: [IMPress Listings] Feature Listing Image SizeCongratulations! Now you need to use the Featured Listings Scroller widget instead of the WP Listings widget as explained in the theme documentation (http://docs.aethemes.com/themes/curb-appeal-evolved/curb-appeal-evolved-home-page/). You also should add more than one listing. With only one listing, it scales up to fill the container. If you want it like the example, you should have 4, but a minimum of 2 would look decent and not be scaled up so large.