agentevolution
Forum Replies Created
-
The shortcode does not use a template β It is a shortcode.
You would need to modify the /includes/shortcodes.php file βΒ which will be overwritten in a plugin update.
The wiser choice would be to make your own custom shortcode by copying that code from the /includes/shortcodes.php file and copying to your theme’s functions.php or a custom plugin, then changing the shortcode name and any other custom code. Bear in mind, this level of customization is not supported.
Your version of the archive-listing.php is a custom template. Verify your theme is actually using that template.
Forum: Plugins
In reply to: [IMPress Listings] putting a white background in the listingsClosing for duplicate: https://wordpress.org/support/topic/putting-a-white-background-in-the-listings-2/
Forum: Plugins
In reply to: [IMPress Listings] putting a white background in the listingsCopy the contents of /includes/scss/wp-listings-single.scss to your theme’s style.css and modify to your needs.
Forum: Plugins
In reply to: [IMPress Listings] Currency Symbol spaceThis is because your theme is trying to apply styling to the empty HTML element. You can use CSS to hide the element.
.listing span.currency-symbol {display: none;}Forum: Plugins
In reply to: [IMPress Listings] CustomizationYes, copy the contents of /includes/scss/wp-listings-single.scss to your theme’s style.css and modify to your needs.
This has been tested and still works in the latest version of the plugin. Verify you theme is actually using your custom template.
This plugin will help you do that: https://wordpress.org/plugins/show-current-template/
Forum: Plugins
In reply to: [IMPress Listings] Share listings across multiple sitesThis is not specific to IMPress Listings and is not supported.
Some options from the WordPress community include:
https://wordpress.org/plugins/multisite-post-duplicator/ – for duplicating posts on sites within a multisite network
Native XML export/import function – https://codex.wordpress.org/Importing_Content#WordPressForum: Plugins
In reply to: [IMPress Listings] Map coordinates are not being imported1. The importer will not import listings coordinates, since they are not available in the clients/featured API return. However, if using the Equity framework, an exclusive API is used that does allow for this.
2. There are a few possible reasons for this: no featured image available, featured image in invalid format, process timed out, etc. More information on the IDX account/MLS used and the listing IDs with this issue to determine the exact cause.
3. Same as above, there are several possible reasons for this and more information on the IDX account/MLS being used and the listing IDs with the issue would be needed to troubleshoot further.
Forum: Plugins
In reply to: [IMPress Listings] Issue activating the pluginIf that’s the case, then some things don’t add up.
So we can troubleshoot this further, please install this diagnostic plugin: https://wordpress.org/plugins/system-snapshot-report/
Once installed, go to Tools > Snapshot, then copy and paste your results here.
Forum: Plugins
In reply to: [IMPress Listings] Issue activating the pluginYour version of PHP does not support namespaces which causes this type of error. Contact your web host and have them update to at least PHP 5.4, with PHP 7 recommended.
Forum: Plugins
In reply to: [IMPress Agents] Agents Icon SizeApologies, if we’re talking about the archive page, the file to edit is /includes/views/archive-employee.php and the line is 44. π
Forum: Plugins
In reply to: [IMPress Agents] Agents Icon SizeThe plugin generates a more rectangular featured image size, since most headshots are not square.
To change that, you’ll need to edit the plugin file /includes/views/single-employee.php
Change line 23 from this:
$thumb_url = wp_get_attachment_image_src($thumb_id, 'employee-full', true);To this:
$thumb_url = wp_get_attachment_image_src($thumb_id, 'thumbnail', true);To make sure your edits do not get overridden in a plugin update copy the single-employee.php file to your theme folder.
Forum: Plugins
In reply to: [IMPress Agents] Option to sortHave a look at this plugin to order posts – https://wordpress.org/plugins/post-types-order/
It’s drag and drop, but you’re pretty much limited in options as far as that goes.Forum: Plugins
In reply to: [IMPress Listings] Clone or Duplicate ListingsThere is a wonderful plugin that will let you do exactly that: https://wordpress.org/plugins/duplicate-post/