agentevolution
Forum Replies Created
-
Forum: Reviews
In reply to: [IMPress Listings] Single Listing View is a disaster!Thanks for your review. We don’t guarantee display functionality with every WordPress theme due to the many ways WP developers create themes. However, we make every effort to ensure display compatibility with themes that are coded with WordPress best practices, using the default TwentyXX themes as the model for those practices.
Regardless of the display, the core functionality is not affected by display and should not warrant a one-star review.
As the templates included in the plugin can be easily adapted to fit any WordPress theme, you should contact your theme author to determine where they are falling short and ways to make them compatible.
We implore you to try a default theme or an approved wordpress.org theme, and if you have display issues, post them so we can help you resolve them. Then we’d ask you to please reconsider your one-star review. Thank you.
Forum: Plugins
In reply to: [IMPress Agents] Agents changed to drafts dailyThank you. We are still trying to replicate the issue.
Can you also add this additional line to your functions.php file?
remove_action( 'impress_agents_idx_update', 'impress_agents_update_post' );Forum: Plugins
In reply to: [IMPress Agents] Agents changed to drafts dailyAgent info is updated daily, however it shouldn’t be changing them to draft.
Can you please add the following to your theme’s functions.php:
remove_action( ‘admin_init’, ‘impress_agents_idx_update_schedule’ );
This should disable the update function for now and we are looking into what may cause the imported agents to be changed to draft.
Forum: Plugins
In reply to: [IMPress Listings] Listings not importing, API errorCan you email help@agentevolution.com with your website address and your Equity Email Address?
Forum: Plugins
In reply to: [IMPress Listings] Removing Extended Details CompletelyThis was answered in a previous forum post: https://wordpress.org/support/topic/hooks-and-filters-5?replies=6
Forum: Plugins
In reply to: [IMPress Listings] Listings not responsiveYour theme is including this CSS style with an explicit width causing this to happen:
@media (min-width: 0px) { .container { width: 750px; } }You’ll need to override it with custom CSS:
@media (min-width: 0px) { .container { max-width: 100%; } }Forum: Plugins
In reply to: [IMPress Listings] how to make my listings page my home pageWithin your WordPress reading settings you can choose which page you want to be your static page but some themes don’t have that option enabled. You may need to modify your theme to enable that feature. This isn’t something we would be able to help you with but I’m sure a quick search on how to enable the feature would give you some examples on how to do this.
Forum: Plugins
In reply to: [IMPress Listings] Hooks and FiltersYou can add an admin stylesheet and use the following CSS to hide those metaboxes:
#listing_details_metabox, #listing_features_metabox { display: none; }Forum: Plugins
In reply to: [IMPress Listings] Hooks and FiltersThe metaboxes for Property Details are added with the add_meta_box function like so:
add_meta_box( 'listing_details_metabox', __( 'Property Details', 'wp-listings' ), array( &$this, 'listing_details_metabox' ), 'listing', 'normal', 'high' ); add_meta_box( 'listing_features_metabox', __( 'Additional Details', 'wp-listings' ), array( &$this, 'listing_features_metabox' ), 'listing', 'normal', 'high' );You could use remove_meta_box in a custom function to remove them altogether.
And if you wanted to add your own custom metaboxes you could then use add_meta_box again to include your own custom metaboxes.
Forum: Plugins
In reply to: [IMPress Listings] Hooks and FiltersThere currently are no hooks for the listings details metabox, but we’ll look into adding some in a future update.
Forum: Plugins
In reply to: [IMPress Listings] Does this plugin support Canadian MLS Listings?The listings are manually entered, so yes you can add listings in any location.
However, to import listings from an MLS data feed, you’ll need an IDX Broker account. We cover several Canadian MLS’s, see if yours is one of them: http://www.idxbroker.com/idx_mls_coverage
Forum: Plugins
In reply to: [IMPress Listings] Listings wrongly updatingThis has to do with recent changes that were made within the IDX Broker API. If you are editing the listing within WordPress to change the price it will be replaced after about 12 hours unless you set the settings within the Listings plugin to not update existing listings. The array, array, array issue is currently being worked on. Should be resolved in the next update.
Forum: Plugins
In reply to: [IMPress Listings] Individual Listing Not Showingmanimess your css is going to be different with the divi theme. Try adding this:
article#post-1386 {
margin-top: 6%;
}The listing is showing as well are the photos when you click the menu item just need to push the article container down.
Forum: Plugins
In reply to: [IMPress Listings] Creating New TemplateAdditional listing templates need to be installed within the active theme folder and not the plugin. Try placing your modified one within the folder of your active theme and see if it shows up within the plugin.
Forum: Plugins
In reply to: [IMPress Listings] Listing Search Widget Dropped To Bottom Of ListingIf you look at the source code you can determine what the HTML is surrounding the content area. For your theme it would be:
Wrapper start:
<div id="content-box"> <div id="post-body"> <div class="single-listing post-single page type-page status-publish hentry">Wrapper end:
</div> </div> </div>