agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] usa by multisiteThe demo at http://demo.wp-listings.com/ is running multisite, so it’s not a problem with the plugin, it’s a problem with your specific configuration.
Forum: Plugins
In reply to: [IMPress Listings] Horizontal search bar?Sure. You can use the same widget, and just add some CSS to align things horizontally.
Forum: Plugins
In reply to: [IMPress Listings] usa by multisiteYes.
Forum: Plugins
In reply to: [IMPress Listings] Chrome IssuesCan you provide a link?
Forum: Plugins
In reply to: [IMPress Listings] Chrome IssuesThere is no built-in photo gallery in the plugin. It uses whatever you add to the photo gallery field – whether that is the WordPress default gallery shortcode, or a gallery from some other plugin. What are you using for your photo gallery?
Forum: Plugins
In reply to: [IMPress Listings] Black dots in text areasMake sure you don’t have the CSS disabled in the Listings > Settings page.
If the CSS is enabled in the settings, then your theme is overriding the styles. It can be fixed with CSS, but we’d need a link to see what’s going on.
Forum: Plugins
In reply to: [IMPress Listings] Total layout design changedPer the forum welcome (http://codex.wordpress.org/Forum_Welcome), please post as much information as possible, including:
– Site URL
– Theme nameForum: Plugins
In reply to: [IMPress Listings] Integrate this plugin with a mapIt should be able to pull in the address from multiple listing posts. Documentation for making it all work is at that plugin’s website.
Forum: Plugins
In reply to: [IMPress Listings] Integrate this plugin with a mapYes, there is a premium plugin called MapPress Pro that can generate maps from custom fields (where the address is stored). http://wphostreviews.com/product/mappress
Forum: Plugins
In reply to: [IMPress Listings] Using slider instead of featured pictureSure. You would just need to edit the template file (single-listing.php). Move it to your theme folder and it will take precedence, then you can edit to remove the featured image code and add in a slider code.
Forum: Plugins
In reply to: [IMPress Listings] Archive Page to bypass "Blog pages show at most" settingThis is a modified version of the same function in the plugin. Add to your theme’s functions.php:
function wp_listings_taxonomy_post_number( $query ) { if ( !is_tax() || is_admin() ) { return; } $options = get_option('plugin_wp_listings_settings'); $archive_posts_num = $options['wp_listings_archive_posts_num']; if ( empty($archive_posts_num) ) { $archive_posts_num = '9'; } $query->query_vars['posts_per_page'] = $archive_posts_num; } add_action( 'pre_get_posts', 'wp_listings_taxonomy_post_number' );Forum: Plugins
In reply to: [IMPress Listings] Archive Page to bypass "Blog pages show at most" settingNo. Is this the main archive page (i.e. youdomain.com/listings/) ? Or is it a taxonomy archive page? If it’s a taxonomy archive, that setting would not apply but you can add custom function to your theme to apply it there as well.
Forum: Plugins
In reply to: [IMPress Listings] Unique Characters Appear in Nav Bar for WP ListingsYou have CSS classes added to those two menu items, and when viewing a listing, there is CSS loaded that is adding those characters. Edit your Menu and remove the fa-home and fa-search CSS classes from those two menu items.
The details font size can be increased by adding custom CSS (increase the font size as needed):
.content-sidebar .wplistings-single-listing .listing-meta li {font-size: 15px;}Forum: Plugins
In reply to: [IMPress Listings] listing status on image – archive pageYou’re using the AgentPress theme that includes it’s own templates for displaying a listing post type. You’ll need to delete the included template files for the plugin to use it’s included templates (archive-listing.php, single-listing.php, and taxonomy.php).
Forum: Plugins
In reply to: [IMPress Listings] Add listings slides to a sliderThe post type name is ‘listing’. There are no “categories” for the listings, they use taxonomies (status, locations, etc.).