agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Plugin presentation is different on two sitesIt appears you were able to resolve this. Will mark as resolved.
Forum: Plugins
In reply to: [IMPress Listings] Search results TOO WIDE, column issue?Delete the single-listing.php, archive-listing.php, and taxonomy.php from your theme. WP Listings includes it’s own template files but if you have the same files in your theme, those are used instead,
Forum: Plugins
In reply to: [IMPress Listings] Formatting Not rightYou may need to customize the included templates to work best with your theme.
Forum: Plugins
In reply to: [IMPress Listings] Search shortcode?No, only the widget at this time. A custom search form could be easily built and placed anywhere.
The search widget searches by taxonomies, so you could add taxonomies for Bedrooms, etc, with terms like 2 bedroom, 3 bedroom, etc.
A more complex search widget that searches all the meta fields is possible but is not currently in development at this time.
Forum: Plugins
In reply to: [IMPress Listings] Search ListingsCan you provide an example URL?
Also, deactivate any other plugins as they could conflict with the search query. Also, switch to the default 2014 or 2015 theme to see if problem still occurs.Forum: Plugins
In reply to: [IMPress Listings] Request: AutoEmbed for YouTube VideosTo make it as flexible as possible, not just oEmbed capable URL’s, we decided to go with the text field where any other embed code can be used.
Forum: Plugins
In reply to: [IMPress Listings] Request: Default Contact Form ShortcodeYou can edit the single-listing.php with your shortcode or other logic. Place it in the root of your theme folder and it will not be overwritten in a plugin update.
Forum: Plugins
In reply to: [IMPress Listings] Not able to show all listings on one pageThe limit in the settings page only applies to archive pages, not the shortcode. If using the shortcode, [listings] without a limit should show them all. If not, your theme or another plugin may be modifying the post limit. Switch to the default theme and see if problem still occurs.
Forum: Plugins
In reply to: [IMPress Listings] Search WidgetThere is no shortcode for the search widget. You can put the widget in your sidebar, and then view the source code, then copy and paste the html code for the search form in to your slider.
Forum: Plugins
In reply to: [IMPress Listings] Problem with WP Listing ImagesWhen posting to the forum, please post a link to your site where the problem can be seen.
Make sure your images are the minimum dimensions for the widget (560×380), and either jpg, png, or gif format.
Or you may need to regenerate the thumbnails with a plugin: https://wordpress.org/plugins/regenerate-thumbnails/
Forum: Plugins
In reply to: [IMPress Listings] Adding single listing scripts/styles to custom templateThe scripts are registered by the plugin (in plugin.php) with the file path defined to the scripts in the plugin, so having your template in a child theme should make no difference. That function is just enqueuing those registered scripts.
/** Registers and enqueues scripts for single listings */ add_action('wp_enqueue_scripts', 'add_wp_listings_scripts'); function add_wp_listings_scripts() { wp_register_script( 'wp-listings-single', WP_LISTINGS_URL . 'includes/js/single-listing.js' ); // enqueued only on single listings wp_register_script( 'jquery-validate', WP_LISTINGS_URL . 'includes/js/jquery.validate.min.js' ); // enqueued only on single listings wp_register_script( 'fitvids', '//cdnjs.cloudflare.com/ajax/libs/fitvids/1.1.0/jquery.fitvids.js', array('jquery'), true, true ); // enqueued only on single listings wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'jquery-ui-tabs', array('jquery') ); }You could try giving them the same path as the wp_register_script in the enqueue function.
Forum: Plugins
In reply to: [IMPress Listings] Feature RequestCorrect, they use schema.org, but each in a different way. There is no commonly agreed upon format for real estate listings. We’ll look into this in a future update once we have determined the best format to use.
Forum: Plugins
In reply to: [IMPress Listings] gallery images not loadingThere is no built in gallery in the plugin. I accepts whatever shortcode you place in the gallery field. Check your gallery and ensure the images exist. Also your gallery should be linking to the media file instead of the attachment page.
Forum: Plugins
In reply to: [IMPress Listings] Some traslations is wrongWe’ll look into addressing the translations in a future update.
Forum: Plugins
In reply to: [IMPress Listings] Copying / Editing single listing templateExtract the plugin zip file to your computer and you can then browse to the /includes/views/ folder. Then edit and upload via FTP to your theme folder.