agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Removing the global titleAdd to your theme CSS or use Jetpack’s Custom CSS module.
Forum: Plugins
In reply to: [IMPress Agents] Make Agents sortableThe plugin already supports this post to post connection with agents <=> listings and it supports drag and drop ordering.
However, the function that displays those on the front end does not currently take into account the ordering.
We have an enhancement request in to add this as a feature in a future update.
Forum: Plugins
In reply to: [IMPress Agents] Agents changed to drafts dailyIs this still occurring for you?
It may be due to the cron job that that action removes is already scheduled, in which case you’ll have to clear that already scheduled cron job.
Try adding this to your theme’s functions.php to remove that cron job:
wp_clear_scheduled_hook( 'impress_agents_idx_update' );We may have a fix for this in the upcoming release. Stay tuned.
If using Genesis, copy the archive-employee.php file to your theme folder. Then edit the template and remove this line:
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );That should get Genesis to take over and display Yoast if possible. Otherwise, you may need to add the Yoast action to display.
Forum: Plugins
In reply to: [IMPress Listings] how to change the word "Listing" on the Listings pageChange the slug for the post type on the Listings > Settings page.
Forum: Plugins
In reply to: [IMPress Listings] How to use Custom WrapperLooking at your current theme you would need a wrapper like:
Start:
<div id="et-main-area"> <div id="main-content"> <div class="container"> <div id="content-area" class="clearfix"> <div id="left-area">End:
</div></div></div></div></div>Forum: Plugins
In reply to: [IMPress Listings] Listings wrongly updatingIf the properties are still being returned in the IDX featured properties API call they will be set to active or whatever status that API call is returning.
Only if the property is returned in the sold properties API call will it move to sold.
The Do Not Update settings do not apply here, as this is an MLS requirement so data is accurately displayed per MLS rules.
Forum: Plugins
In reply to: [IMPress Listings] CSS ChangesYou can add any custom CSS you like to your theme’s stylesheet. Or the Jetpack plugin includes a Custom CSS module you can use as well.
Forum: Plugins
In reply to: [IMPress Listings] How to change SQFT to SQM?For the single listing and archive listing pages, you can copy those to your theme’s folder and change the Sq Ft notation. For the widget, we don’t yet have a way to change this.
Forum: Plugins
In reply to: [IMPress Listings] Image Gallery not UpdatingThis is a limitation of the importer. To import all images, you’ll need to use the Equity framework as it allows API access to all images and full listing data.
Forum: Plugins
In reply to: [IMPress Listings] Get the Listing DescriptionThe listings description text is just an excerpt of the content.
If you want to “get” the description text, the single-listing.php file shows how this is done:
the_content( __( 'View more <span class="meta-nav">→</span>', 'wp-listings' ) );Forum: Plugins
In reply to: [IMPress Listings] works your plugin with the theme enfold?It should be compatible. The plugin is free. Try it out. If you have issues, post them here as a new issue.
Forum: Plugins
In reply to: [IMPress Listings] PLEASE HELP NEEDEDIf you’ve modified the plugin’s files, which it looks like you have, we recommend you delete the plugin and reinstall the current version from wordpress.org
You have to search by taxonomies. In order to search by taxonomies, you have to create them.
Listings > Register Taxonomies
Create a Taxonomy for Bedrooms, Price Ranges, etc.
Add terms for those taxonomies i.e 2 Beds, $100,000 – $200-000
Once listings are assigned to those taxonomy terms, they can be searched.Forum: Plugins
In reply to: [IMPress Listings] Removing the global titleThis can be accomplished with very simple CSS.
h1.archive-title {margin: 25px 0;}