Title: agentevolution's Replies - page 27 | 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 - 391 through 405 (of 910 total)

[←](https://wordpress.org/support/users/agentevolution/replies/page/26/?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)…
[26](https://wordpress.org/support/users/agentevolution/replies/page/26/?output_format=md)
27 [28](https://wordpress.org/support/users/agentevolution/replies/page/28/?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/28/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Adding sidebar to single-listing.php](https://wordpress.org/support/topic/adding-sidebar-to-single-listingphp/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/adding-sidebar-to-single-listingphp/#post-6673846)
 * get_sidebar() should call your theme’s default sidebar or you can define the 
   specific sidebar if you know the id like get_sidebar(‘my-custom-sidebar’). What
   theme are you using and what is the URL?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Remove Listing Pagination](https://wordpress.org/support/topic/remove-listing-pagination/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/remove-listing-pagination/#post-6622310)
 * 1. Copy the single-listing.php and archive-listing.php from the plugin’s views
   folder to your theme folder.
    2. Edit the templates and remove the functions 
   related to pagination.
 * On archive-listing.php remove:
 *     ```
       if (function_exists('equity')) {
       			equity_posts_nav();
       		} elseif (function_exists('genesis_init')) {
       			genesis_posts_nav();
       		} else {
       			wp_listings_paging_nav();
       		}
       ```
   
 * In single-listing.php remove:
 *     ```
       // Previous/next post navigation.
       wp_listings_post_nav();
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Lightbox for tabbed photos?](https://wordpress.org/support/topic/lightbox-for-tabbed-photos/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/lightbox-for-tabbed-photos/#post-6623948)
 * The [gallery] shortcode in the [Jetpack](http://jetpack.me) plugin works great.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Show multiple Listing types in banner](https://wordpress.org/support/topic/show-multiple-listing-types-in-banner/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/show-multiple-listing-types-in-banner/#post-6452249)
 * Yes.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Show multiple Listing types in banner](https://wordpress.org/support/topic/show-multiple-listing-types-in-banner/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/show-multiple-listing-types-in-banner/#post-6452240)
 * You would need to modify the plugin’s functions.php and replace the wp_listings_get_status
   function with this:
 *     ```
       /**
        * Displays the status (active, pending, sold, for rent) of a listing
        */
       function wp_listings_get_status($post_id = null, $single = 0) {
   
       	if ( null == $post_id ) {
       		global $post;
       		$post_id = $post->ID;
       	}
   
       	$listing_status = wp_get_object_terms($post_id, 'status');
   
       	if ( empty($listing_status) || is_wp_error($listing_status) ) {
       		return;
       	}
   
       	$status = null;
   
       	foreach($listing_status as $term) {
       		if ( $term->name != 'Featured') {
       			$status .= $term->name;
       			if($single == 1) {
       				return $status;
       			}
       			$status .= '<br />';
       		}
       	}
   
       	return $status;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Agent Profiles] How to enable comments on Agent Profiles](https://wordpress.org/support/topic/how-to-enable-comments-on-agent-profiles/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/how-to-enable-comments-on-agent-profiles/#post-6558305)
 * Copy the file /includes/views/single-aeprofiles.php to your theme folder and 
   remove the lines that remove the comments:
 *     ```
       remove_action( 'genesis_after_post', 'genesis_get_comments_template' );
       remove_action( 'genesis_after_entry', 'genesis_get_comments_template' ); // HTML5
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Adding Captch to Listing Inquiry](https://wordpress.org/support/topic/adding-captch-to-listing-inquiry/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/adding-captch-to-listing-inquiry/#post-6553823)
 * You can copy the single-listing.php file from the plugin’s views folder to your
   theme folder and add one. Or you can use the form field on each listing edit 
   screen to add a form from any number of form plugins that already includes a 
   captcha.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] ← Back to main site](https://wordpress.org/support/topic/%e2%86%90-back-to-main-site/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/%e2%86%90-back-to-main-site/#post-6566216)
 * This is a feature available on the premium single listing templates as they do
   not have the primary navigation on the main site.
 * To add such a feature to the stock listing template will require customization,
   which you can do by copying the single-listing.php to your theme folder and customizing
   as needed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Single Listing Template](https://wordpress.org/support/topic/single-listing-template-1/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/single-listing-template-1/#post-6574491)
 * Yes, simply copy the single-listing.php to your theme folder and customize as
   needed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Not getting pagination](https://wordpress.org/support/topic/not-getting-pagination/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/not-getting-pagination/#post-6580944)
 * The shortcode does not support pagination as it is not a page. Only the archive
   pages have pagination.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] WP Listing Plugin using Iframe](https://wordpress.org/support/topic/wp-listing-plugin-using-iframe/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/wp-listing-plugin-using-iframe/#post-6549746)
 * This is unrelated to the WP Listings plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Why is my map showing in my main content area?](https://wordpress.org/support/topic/why-is-my-map-showing-in-my-main-content-area/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/why-is-my-map-showing-in-my-main-content-area/#post-6544359)
 * Look in the main editor window. Does a shortcode exist?
 * Also, check the MapPress settings and uncheck the option to automatically insert
   map.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Under Schools and Neighborhood Tab](https://wordpress.org/support/topic/under-schools-and-neighborhood-tab/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/under-schools-and-neighborhood-tab/#post-6544358)
 * Post a link to your site please.
 * It’s likely an issue with your theme. Switch to the 2015 theme to see if problem
   still occurs.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] WP Listings Templates Pack from Agent Evolution](https://wordpress.org/support/topic/wp-listings-templates-pack-from-agent-evolution/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/wp-listings-templates-pack-from-agent-evolution/#post-6539712)
 * No. Upload a better quality, larger image. Your image is only 640×480. It should
   be a minimum width of the content area.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] WP Listings Templates Pack from Agent Evolution](https://wordpress.org/support/topic/wp-listings-templates-pack-from-agent-evolution/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/wp-listings-templates-pack-from-agent-evolution/#post-6539709)
 * Yes, you still need to delete the single-listing.php and archive-listing.php 
   from the theme. No, this does not affect the Premium Single Listing Template 
   pack, as those are separate, uniquely-named files.

Viewing 15 replies - 391 through 405 (of 910 total)

[←](https://wordpress.org/support/users/agentevolution/replies/page/26/?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)…
[26](https://wordpress.org/support/users/agentevolution/replies/page/26/?output_format=md)
27 [28](https://wordpress.org/support/users/agentevolution/replies/page/28/?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/28/?output_format=md)