agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Featured Listing Widget CSS not workingYour theme is not adding the
.widgetclass when registering the sidebar widgets.It’s only showing up on listings pages because the archive page CSS is being applied instead.
Either modify your theme and include the widget class when registering the sidebar (http://codex.wordpress.org/Function_Reference/register_sidebar) or you can install a plugin that will allow you to add custom classes to widgets (https://wordpress.org/plugins/widget-css-classes/).
Forum: Plugins
In reply to: [IMPress Listings] Creating new widget as same as wp listing search widget.Contact a developer. Creating custom widgets is beyond the scope of the support forum.
Forum: Plugins
In reply to: [IMPress Listings] Custom Shortcode FileYou may want to contact a developer. This is beyond the scope of the support forum.
You’ll need to use a PHP include in your functions.php.
Forum: Plugins
In reply to: [IMPress Listings] Listing LimitsNo pagination is possible with the shortcode.
Forum: Plugins
In reply to: [IMPress Listings] Listing LimitsOnly the latest 10 will be displayed.
Forum: Plugins
In reply to: [IMPress Listings] Change Labels?Template files – Just add to the theme folder, same name.
Creating a custom shortcode is not relevant to this support topic and this topic has been marked resolved already. Please post a new topic.Forum: Plugins
In reply to: [IMPress Listings] single listing tabs not displaying rightLooks like a javascript conflict. Deactivate all other plugins to isolate the source.
Also, when posting to the forum, a URL is infinitely more helpful than a screenshot.
Forum: Plugins
In reply to: [IMPress Listings] Listings per page for Short Code and Property Type1. Yes, with a custom template. The template included in the plugin displays three columns.
2. Taxonomy pages do not use the archive page setting, because the
is_archive()function returns false on taxonomy pages.You can add this to your theme’s functions.php in order to use the same setting. This will apply to all taxonomy archive pages. If you want to limit which taxonomy pages, you’ll need to customize this function using is_tax() (http://codex.wordpress.org/Function_Reference/is_tax):
function wp_listings_tax_post_number( $query ) { if ( $query->is_main_query() && !is_admin() && is_tax() ) { $options = get_option('plugin_wp_listings_settings'); $tax_archive_posts_num = $options['wp_listings_archive_posts_num']; if ( empty($archive_posts_num) ) { $tax_archive_posts_num = '9'; } $query->query_vars['posts_per_page'] = $tax_archive_posts_num; } } add_action( 'pre_get_posts', 'wp_listings_tax_post_number' );Forum: Plugins
In reply to: [IMPress Listings] Listings per page for Short Code and Property TypeThe shortcode has a parameter of
limityou can use to limit the number but it doesn’t support pagination – http://wordpress.org/plugins/wp-listings/installation/Otherwise, taxonomy pages use the default WP settings for posts per page under Settings > Reading.
Forum: Plugins
In reply to: [IMPress Listings] Horizontal Search Not Showing TaxonomiesListings need to be assigned to the taxonomies in order for them to be added to the widget. Once you have listings, they can be enabled/disabled by ticking the checkbox in the widget.
Forum: Plugins
In reply to: [IMPress Listings] Change Labels?Yes, to change those you would need to make a custom shortcode and template file because if they are changed there is no way for us to programmatically know what is there and output it accordingly. Also, since you’re changing the label, you should also change the field name so it won’t be output with a mismatched label.
As I mentioned, you’ll want to create your own files and include them in your theme, instead of editing the plugin, because when the plugin is updated you lost those changes.
Template files (archive- and single-listing.php) can be easily customized by just placing your custom version in your theme folder. With the shortcode, you’ll need to copy that file into it’s own file, rename the shortcode to something like [custom_listings], and include the file from your theme’s functions.php.
You’ll want to look at some membership plugin like S2Member (http://www.s2member.com/) or Membership (https://wordpress.org/plugins/membership/)
Forum: Plugins
In reply to: [IMPress Listings] Adding extra fields to property search formNot that we’re aware of.
Forum: Plugins
In reply to: [IMPress Listings] Adding extra fields to property search formYes, each taxonomy term has it’s own archive page. Visit the taxonomy you created in the Dashboard (i.e. Location) and hover over the term (i.e. the City) you created then click the View link – use that URL.
Forum: Plugins
In reply to: [IMPress Listings] WP Listings Theme add onsSupport for paid products, like the listing templates, is handled on our support forum at: http://www.agentevolution.com/forums/section/plugin-support/wp-listings-templates/
Please post there for assistance.