agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Adding sidebar to single-listing.phpget_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
In reply to: [IMPress Listings] Remove Listing Pagination1. 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
In reply to: [IMPress Listings] Lightbox for tabbed photos?The [gallery] shortcode in the Jetpack plugin works great.
Forum: Plugins
In reply to: [IMPress Listings] Show multiple Listing types in bannerYes.
Forum: Plugins
In reply to: [IMPress Listings] Show multiple Listing types in bannerYou 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
In reply to: [Genesis Agent Profiles] How to enable comments on Agent ProfilesCopy 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' ); // HTML5Forum: Plugins
In reply to: [IMPress Listings] Adding Captch to Listing InquiryYou 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
In reply to: [IMPress Listings] ← Back to main siteThis 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
In reply to: [IMPress Listings] Single Listing TemplateYes, simply copy the single-listing.php to your theme folder and customize as needed.
Forum: Plugins
In reply to: [IMPress Listings] Not getting paginationThe shortcode does not support pagination as it is not a page. Only the archive pages have pagination.
Forum: Plugins
In reply to: [IMPress Listings] WP Listing Plugin using IframeThis is unrelated to the WP Listings plugin.
Forum: Plugins
In reply to: [IMPress Listings] Why is my map showing in my main content area?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
In reply to: [IMPress Listings] Under Schools and Neighborhood TabPost 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
In reply to: [IMPress Listings] WP Listings Templates Pack from Agent EvolutionNo. Upload a better quality, larger image. Your image is only 640×480. It should be a minimum width of the content area.
Forum: Plugins
In reply to: [IMPress Listings] WP Listings Templates Pack from Agent EvolutionYes, 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.