agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Adding extra fields to property search formThe search form uses Taxonomies to search by. Create a custom taxonomy, with the terms you want, and assign properties to your custom taxonomy/terms. Then they will be available to use in the search widget.
Forum: Plugins
In reply to: [IMPress Listings] Missing TaxonomiesTry resetting permalinks. Settings >Permalinks > Save.
Also try deactivating and reactivating the WP Listings plugin.Forum: Plugins
In reply to: [IMPress Listings] Custom TemplateThe custom template should be placed inside your theme folder, not in the plugin folder.
Forum: Plugins
In reply to: [IMPress Listings] How to get Tabs to WorkContact the plugin or theme author of your menus. There is something within their javascript that is broken or could be done differently so it doesn’t conflict with other plugins.
You have a plugin (Post author) adding the author to the_content() output. Disable that plugin or conditionally load it.
Forum: Plugins
In reply to: [IMPress Listings] How to get Tabs to WorkThe tabs rely on jQuery UI, included with WordPress, to work. It’s very likely you have a plugin that is conflicting with that script. Deactivate all other plugins and try again.
Forum: Plugins
In reply to: [IMPress Listings] Unable to get the photo gallery look like demo galleryInsert a Gallery using the Add Gallery link in the Add Media dialog.
The lightbox for the images is using the Carousel feature included in the Jetpack plugin.Forum: Plugins
In reply to: [IMPress Listings] ShortCodeThe taxonomy slug is ‘property-types’ plural.
Forum: Plugins
In reply to: [IMPress Listings] Change Order of Tabs on Listing PageThe output is determined by the template. You can change it to whatever you like if you create a custom template. If you have a single-listing.php in your theme folder that will be used instead of the plugin’s included template.
Forum: Plugins
In reply to: [Genesis Agent Profiles] Agent PhotosCan you post a link please?
You may need to regenerate your image thumbnails using a plugin like Regenerate Thumbnails or AJAX Thumbnail Rebuild.
Forum: Plugins
In reply to: [IMPress Listings] Lightbox Carousel Not WorkingThe image lightbox is not provided by the WP Listings plugin. You can use any lightbox plugin you prefer, but we recommend using the Carousel feature in the Jetpack plugin.
Forum: Plugins
In reply to: [IMPress Listings] can't remove statusYes, add it to functions.php.
My mistake, the code snippet provided keeps all the default terms. If you want to remove them all, then pass an empty array:
add_filter( 'wp_listings_default_status_terms', 'custom_default_status_terms' ); function custom_default_status_terms() { $status_terms = array(); return $status_terms; }Forum: Plugins
In reply to: [IMPress Listings] MLS Auto Populate Options????A feature request to map IDX Broker data fields to WordPress custom fields is from making it “compatible”.
It may be possible with some advanced custom programming but even that would be limited to only the details available via the IDX Broker API.
Forum: Plugins
In reply to: [IMPress Listings] Cannot get the carousel in JetPack to work on the listing.Correct. At least not in a tab.
Forum: Plugins
In reply to: [IMPress Listings] Cannot get the carousel in JetPack to work on the listing.The slideshow gallery type doesn’t render correctly when added to a tab (in wp-listings or any other tabbed interface). This is because inactive tab content is hidden on page load and has no height. The slideshow gallery type requires a height to be defined in order to calculate the size of the images to display.
Forum: Plugins
In reply to: [IMPress Listings] Cannot get the carousel in JetPack to work on the listing.Oh I see.. looking at it closer, the gallery isn’t actually being added correctly.
Use the Insert Media button, and click Create Gallery. I believe once the WP gallery is detected on the page, the Carousel script will load.