agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Archive Page to bypass "Blog pages show at most" settingThere is a setting in the WP Listing settings that controls the archive pages. Listings > Settings > Default number of posts.
Forum: Plugins
In reply to: [IMPress Listings] Display issue in FFYour theme CSS is overriding the plugin’s CSS. Add this to your theme’s stylesheet:
.post-type-archive-listing .listing-wrap {width: 100%;}Forum: Plugins
In reply to: [IMPress Listings] Display issue in FFFirefox isn’t respecting the width: auto; CSS property. This doesn’t occur with the plugin’s templates because the markup is different.
Forum: Plugins
In reply to: [IMPress Listings] Display issue in FFYour theme is overriding the plugin’s included templates. Delete the archive-listing.php and single-listing.php templates from your theme folder. Also the taxonomy.php template.
Forum: Plugins
In reply to: [IMPress Listings] Display issue in FFWhat exactly is the issue? And can you link to a specific listing?
Forum: Plugins
In reply to: [IMPress Listings] export to multiple sites using wp-listingsYes the WordPress exporter will export custom post types and using the WordPress importer you can import that XML into other sites.
Forum: Plugins
In reply to: [IMPress Listings] Change the order of listings on the listings pageThis is a premium plugin but looks like it will let you do what you want – http://codecanyon.net/item/wordpress-meta-data-taxonomies-filter/7002700
Have a look at their demo for real estate – http://demo2.wordpress-filter.com/category/real-estate-posts/
Forum: Plugins
In reply to: [IMPress Listings] Disappearing listings from control panelSounds like a conflict. Deactivate all other active plugins to determine the source.
Forum: Plugins
In reply to: [IMPress Listings] Template Issue for Single Listing?Before you edit the single-listing.php file, move it to your theme folder so it doesn’t get overwritten in a plugin update.
The single listing template uses the same generic WordPress functions for outputting the header, footer, and sidebar as the archive-listing.php template. So I suspect Thesis is doing something in a non-conventional way on single posts. You’ll need to look at how it’s being done in your theme’s single.php and use the same functions.
The taxonomies and terms are retained in the database, so while they may not be visible in the Dashboard, they still exist in the database. This is just how WordPress works with registered taxonomies/terms.
Looks like all you needed to do was change the name, not the slug, which can be done by just editing that term.
Forum: Plugins
In reply to: [IMPress Listings] Single Listing PageYou may need to customize the page template so it includes the same markup as your theme. Move the single-listing.php and archive-listing.php to your theme folder and edit them as needed.
Forum: Plugins
In reply to: [IMPress Listings] Broken sidebar showing below contentYou can edit the page templates from the plugin’s views folder (single-listing.php and archive-listing.php) and add them to your theme folder where they will be used instead.
Just remove the
get_sidebar()line from the template.Forum: Plugins
In reply to: [IMPress Listings] Disappearing listings from control panelCheck your Screen Options in the top right and verify it’s set to show more than 1 at a time.
Forum: Plugins
In reply to: [IMPress Listings] Remove sidebar from single listing pageYou can edit the single-listing.php from the plugin’s views folder and add it to your theme folder where it will be used instead.
Just remove the
get_sidebar()line in that page template.Forum: Plugins
In reply to: [IMPress Listings] Template Issue for Single Listing?You can edit the single-listing.php from the plugin’s /views/ folder and add it to your theme folder where it will be used instead. You may need to customize it based on your theme’s page template structure.