Title: agentevolution's Replies - page 19 | WordPress.org

---

# agentevolution

  [  ](https://wordpress.org/support/users/agentevolution/)

 *   [Profile](https://wordpress.org/support/users/agentevolution/)
 *   [Topics Started](https://wordpress.org/support/users/agentevolution/topics/)
 *   [Replies Created](https://wordpress.org/support/users/agentevolution/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/agentevolution/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/agentevolution/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/agentevolution/engagements/)
 *   [Favorites](https://wordpress.org/support/users/agentevolution/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 271 through 285 (of 910 total)

[←](https://wordpress.org/support/users/agentevolution/replies/page/18/?output_format=md)
[1](https://wordpress.org/support/users/agentevolution/replies/?output_format=md)
[2](https://wordpress.org/support/users/agentevolution/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/agentevolution/replies/page/3/?output_format=md)…
[18](https://wordpress.org/support/users/agentevolution/replies/page/18/?output_format=md)
19 [20](https://wordpress.org/support/users/agentevolution/replies/page/20/?output_format=md)…
[59](https://wordpress.org/support/users/agentevolution/replies/page/59/?output_format=md)
[60](https://wordpress.org/support/users/agentevolution/replies/page/60/?output_format=md)
[61](https://wordpress.org/support/users/agentevolution/replies/page/61/?output_format=md)
[→](https://wordpress.org/support/users/agentevolution/replies/page/20/?output_format=md)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[IMPress Listings] Single Listing View is a disaster!](https://wordpress.org/support/topic/single-listing-view-is-a-disaster/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/single-listing-view-is-a-disaster/#post-8122688)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Agents] Agents changed to drafts daily](https://wordpress.org/support/topic/agents-changed-to-drafts-daily/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/agents-changed-to-drafts-daily/#post-7564644)
 * Thank 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Agents] Agents changed to drafts daily](https://wordpress.org/support/topic/agents-changed-to-drafts-daily/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/agents-changed-to-drafts-daily/#post-7564604)
 * Agent 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Listings not importing, API error](https://wordpress.org/support/topic/listings-not-importing-api-error/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/listings-not-importing-api-error/#post-7514668)
 * Can you email [help@agentevolution.com](https://wordpress.org/support/users/agentevolution/replies/page/19/help@agentevolution.com?output_format=md)
   with your website address and your Equity Email Address?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Removing Extended Details Completely](https://wordpress.org/support/topic/removing-extended-details-completely/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/removing-extended-details-completely/#post-7411647)
 * This was answered in a previous forum post: [https://wordpress.org/support/topic/hooks-and-filters-5?replies=6](https://wordpress.org/support/topic/hooks-and-filters-5?replies=6)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Listings not responsive](https://wordpress.org/support/topic/listings-not-responsive/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/listings-not-responsive/#post-7465412)
 * Your 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] how to make my listings page my home page](https://wordpress.org/support/topic/how-to-make-my-listings-page-my-home-page/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/how-to-make-my-listings-page-my-home-page/#post-7443965)
 * Within 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Hooks and Filters](https://wordpress.org/support/topic/hooks-and-filters-5/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/hooks-and-filters-5/#post-7422472)
 * You can add an admin stylesheet and use the following CSS to hide those metaboxes:
 *     ```
       #listing_details_metabox,
       #listing_features_metabox {
       display: none;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Hooks and Filters](https://wordpress.org/support/topic/hooks-and-filters-5/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/hooks-and-filters-5/#post-7422466)
 * The metaboxes for Property Details are added with the [add_meta_box](https://developer.wordpress.org/reference/functions/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](https://codex.wordpress.org/Function_Reference/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Hooks and Filters](https://wordpress.org/support/topic/hooks-and-filters-5/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/hooks-and-filters-5/#post-7422448)
 * There currently are no hooks for the listings details metabox, but we’ll look
   into adding some in a future update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Does this plugin support Canadian MLS Listings?](https://wordpress.org/support/topic/does-this-plugin-support-canadian-mls-listings/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/does-this-plugin-support-canadian-mls-listings/#post-7430236)
 * 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](http://www.idxbroker.com/idx_mls_coverage)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Listings wrongly updating](https://wordpress.org/support/topic/listings-wrongly-updating/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/listings-wrongly-updating/#post-7344835)
 * This 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Individual Listing Not Showing](https://wordpress.org/support/topic/individual-listing-not-showing/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/individual-listing-not-showing/#post-6582559)
 * manimess 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Creating New Template](https://wordpress.org/support/topic/creating-new-template-2/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/creating-new-template-2/#post-7372080)
 * Additional 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Listing Search Widget Dropped To Bottom Of Listing](https://wordpress.org/support/topic/listing-search-widget-dropped-to-bottom-of-listing/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years ago](https://wordpress.org/support/topic/listing-search-widget-dropped-to-bottom-of-listing/#post-7076897)
 * If 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>
       ```
   

Viewing 15 replies - 271 through 285 (of 910 total)

[←](https://wordpress.org/support/users/agentevolution/replies/page/18/?output_format=md)
[1](https://wordpress.org/support/users/agentevolution/replies/?output_format=md)
[2](https://wordpress.org/support/users/agentevolution/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/agentevolution/replies/page/3/?output_format=md)…
[18](https://wordpress.org/support/users/agentevolution/replies/page/18/?output_format=md)
19 [20](https://wordpress.org/support/users/agentevolution/replies/page/20/?output_format=md)…
[59](https://wordpress.org/support/users/agentevolution/replies/page/59/?output_format=md)
[60](https://wordpress.org/support/users/agentevolution/replies/page/60/?output_format=md)
[61](https://wordpress.org/support/users/agentevolution/replies/page/61/?output_format=md)
[→](https://wordpress.org/support/users/agentevolution/replies/page/20/?output_format=md)