Title: agentevolution's Replies - page 5 | 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 - 61 through 75 (of 910 total)

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Agents] Agents page](https://wordpress.org/support/topic/agents-page-2/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/agents-page-2/#post-9439493)
 * Sure. You’ll need to edit the plugin’s template file.
 * Copy the archive-employee.php from the plugin’s /includes/views/ folder and copy
   to your theme folder. Then edit the line that reads:
    `$title = '<h1 class="archive-
   title">' . get_bloginfo('name') . ' Employees</h1>';`
 * to:
    `$title = '<h1 class="archive-title">' . get_bloginfo('name') . ' Agents
   </h1>';`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Resize fonts](https://wordpress.org/support/topic/resize-fonts/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/resize-fonts/#post-9428705)
 * You’ll need to use CSS to increase the font size.
 * Find the class you need to target using your browser’s developer tools and add
   the CSS declaration:
    `font-size: 20px; /* use whatever size you choose */`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Search page color changes](https://wordpress.org/support/topic/search-page-color-changes/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/search-page-color-changes/#post-9428698)
 * The classes may change depending on where it is displayed (search/archive pages
   vs single listings vs widgets) and also based on the property status, but here
   is the base CSS. Modify this to your needs:
 *     ```
       .archive .listing-wrap span.listing-status,
       .wp-listings-shortcode .listing-wrap span.listing-status {
       	color: #fff;
       	background: #53c331;
       	background: rgba(83, 195, 49, 0.80);
       	font-weight: 700;
       	text-align: center;
       	text-transform: uppercase;
       	box-shadow: 0px 4px 1px rgba(0, 0, 0, 0.2);
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Location map issue](https://wordpress.org/support/topic/location-map-issue/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/location-map-issue/#post-9428688)
 * Are you seeing any errors in the console? Can you provide a link to your site?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Footer widgets at bottom of listing](https://wordpress.org/support/topic/footer-widgets-at-bottom-of-listing/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/footer-widgets-at-bottom-of-listing/#post-9428687)
 * More often than not, your theme is adding these. The single-listing.php template
   file included in the plugin will call for get_sidebar() and get_footer(). If 
   you prefer not to display these, you can remove those lines from the template.
 * *Note: if you want to modify the template, it’s advised to copy the file to your
   theme folder so it will not be overwritten in a plugin update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Removing Pagination in Search Result](https://wordpress.org/support/topic/removing-pagination-in-search-result/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/removing-pagination-in-search-result/#post-9428686)
 * In the archive-listing.php file, you will see the pagination functions at the
   bottom of the archive_listing_loop() function. Just edit the file and remove 
   those lines.
 * It looks like this (different functions are used depending on theme used):
 *     ```
       if (function_exists('equity')) {
       	equity_posts_nav();
       } elseif (function_exists('genesis_init')) {
       	genesis_posts_nav();
       } else {
       	wp_listings_paging_nav();
       }
       ```
   
 * *Note: if you want to modify the template, it’s advised to copy the file to your
   theme folder so it will not be overwritten in a plugin update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Remove footer widgets](https://wordpress.org/support/topic/remove-footer-widgets-4/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/remove-footer-widgets-4/#post-9428678)
 * More often than not, your theme is adding these. The single-listing.php template
   file included in the plugin will call for get_sidebar() and get_footer(). If 
   you prefer not to display these, you can remove those lines from the template.
 * *Note: if you want to modify the template, it’s advised to copy the file to your
   theme folder so it will not be overwritten in a plugin update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Custom template for search result and single listing](https://wordpress.org/support/topic/custom-template-for-search-result-and-single-listing/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/custom-template-for-search-result-and-single-listing/#post-9428667)
 * Yes, you can add custom templates to your theme.
 * Copy the single-listing.php (for single listings) or archive-listing.php (for
   taxonomies or search results) from the plugin’s `/includes/views/` folder to 
   your child theme and they will be used.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Separate Listings into categories for specific menu pages](https://wordpress.org/support/topic/separate-listings-into-categories-for-specific-menu-pages/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/separate-listings-into-categories-for-specific-menu-pages/#post-9428659)
 * Yes, very easy. Each category has it’s own archive page. To add them to your 
   menus, visit Appearance > Menus. On the left side, you have all the listing taxonomies
   available to add (i.e. Property Types).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Tab not responsive with embed code](https://wordpress.org/support/topic/tab-not-responsive-with-embed-code/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/tab-not-responsive-with-embed-code/#post-9403314)
 * If your embed code is not responsive, there is nothing the plugin can do to fix
   that. You’ll need to contact the provider of the embed code to see if they have
   an alternative.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Parse Error when activation?](https://wordpress.org/support/topic/parse-error-when-activation/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/parse-error-when-activation/#post-9403312)
 * What version of PHP is on your server? You likely need to have your hosting provider
   update the version of PHP to a minimum of 5.4.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Remove Built-In Contact Form](https://wordpress.org/support/topic/remove-built-in-contact-form/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/remove-built-in-contact-form/#post-9403311)
 * You can enter any text there, such as “Call for more details”, or a blank space
   may even work.
 * Or you can copy the single-listing.php template to your theme folder and remove
   the entire contact form section.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Dynamic Ads for Facebook](https://wordpress.org/support/topic/dynamic-ads-for-facebook/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/dynamic-ads-for-facebook/#post-9403309)
 * Not at this time as it requires a unique, custom formatted XML feed be created.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Map coordinates are not being imported](https://wordpress.org/support/topic/map-coordinates-are-not-being-imported/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/map-coordinates-are-not-being-imported/#post-9354374)
 * That’s great and thanks for upgrading. However, nothing in the previous reply
   stated that you will get map coordinates if you upgrade to a Platinum account–
   they simply are not available via the API for featured properties.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IMPress Listings] Use template for listing pages only](https://wordpress.org/support/topic/use-template-for-listing-pages-only/)
 *  Plugin Author [agentevolution](https://wordpress.org/support/users/agentevolution/)
 * (@agentevolution)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/use-template-for-listing-pages-only/#post-9341217)
 * Technically, yes. But they are not available for single purchase. They are only
   available with the purchase of an Equity child theme or a TurnKey website.

Viewing 15 replies - 61 through 75 (of 910 total)

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