agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Tabbed images problemNot sure exactly what you’re describing. Please post a link to a listing on your site.
Forum: Plugins
In reply to: [IMPress Listings] Individual Listing Not ShowingYour theme is not clearing the header float. Add this CSS to your theme:
section.content-area, div.content-area { clear: both; }Forum: Plugins
In reply to: [IMPress Listings] Sub-menu's won't display with WP ListingDoesn’t look like a js error because the html for the submenu is not even being output. I’d recommend checking your theme’s header.php to see what all is being called. The single listing template calls get_header() which should include everything needed for your header, including the menu and scripts. There may be some logic in your theme to display something different.
Forum: Plugins
In reply to: [IMPress Listings] translation problemWhat specifically is not working? We will look into improving translations in the next version.
Forum: Plugins
In reply to: [IMPress Listings] Tabbed images problemIf you use the Carousel shortcode included in the free Jetpack plugin, it has a lightbox, specifically for photo galleries that works flawlessly. http://jetpack.me/support/carousel/
Forum: Plugins
In reply to: [IMPress Listings] presentation problemYes, you may need a custom page template to remove the get_sidebar function that shows the sidebar.
1. Your theme is adding all the extra space. You’ll need custom CSS to override that. Something like this:
.single-listing h1, .single-listing .page-wrap, .single-listing .page-wrap .content-wrapper { margin-top: 0; padding-top: 0; }2. Yes, again with custom CSS. You can find the HTML element to change using Inspect Element in your browser. Something like this:
`.wplistings-single-listing .listing-image-wrap span.listing-status.active {color: rgba(0,0,0,.7);}3. You can hide it with CSS:
.listing-lot-sqft {display: none;Yes, this is for an older version, before WP Listings was released. If you have WP Listings and Genesis Agent Profiles, the two will connect – AgentPress Listings is not needed. You just need to install the Posts 2 Posts plugin (https://wordpress.org/plugins/posts-to-posts/) to connect the listings and the agent profiles.
Forum: Plugins
In reply to: [IMPress Listings] Nothing FoundChange to pretty permalinks like /%postname%/ and not the default.
Forum: Plugins
In reply to: [IMPress Listings] Search in archive-listing.phpYou would want to edit the archive-listing.php file included in the plugin’s /views/ folder. Copy it to your theme folder so it doesn’t get overwritten in an update.
At the top of the template, before the content is output, just call the widget with with the_widget(). The search widget’s class name is
WP_Listings_Search_WidgetForum: Plugins
In reply to: [IMPress Listings] No Data ReturnedMake sure both match including any www before the domain name.
e.g. http://www.yourdomain.com and http://yourdomain.com are not the sameAlso the IDX account URL should not have a trailing slash.
e.g. This: http://yourdomain.com not this http://yourdomain.com/Forum: Plugins
In reply to: [IMPress Listings] Filter or Sort by?The only way to search at this point is a filter by taxonomy terms (i.e. property-type). This is what the search widget uses.
We are working on improving the search in a future version to allow for more search parameters and advanced filtering.
Forum: Plugins
In reply to: [IMPress Listings] Missing something simple1. For the thumbnail you need to set a featured image for the listing.
2. The search bar and “sitemap” is coming from your theme. You’ll need to use a custom template formatted for your theme to remove the get_sidebar() function.
The next version of the plugin will also have a custom wrapper function so it works with a wider variety of theme structures and may help in this case to not display your theme’s extra content.
3. The next version of the plugin will also include a field to display a default text or shortcode instead of the listing inquiry.
Forum: Plugins
In reply to: [IMPress Listings] Fatal ErrorIf you’ve deactivated the plugin properly, it should not be trying to load any widgets from the plugin. Delete the plugin folder via FTP.
Forum: Plugins
In reply to: [IMPress Listings] Remove default status and property types categoriesThe code still works. Just use these filters added to your theme’s functions.php:
add_filter( 'wp_listings_default_status_terms', 'my_remove_default_terms' ); add_filter( 'wp_listings_default_property_type_terms', 'my_remove_default_terms' ); function my_remove_default_terms($terms) { $terms = array(); return $terms; }