agentevolution
Forum Replies Created
-
The support forums replace HTML entities with their actual entities. The percent sign after the 100 should be: ampersand number-sign 37 semicolon
Hopefully it will not encode this:$pattern = ‘<p><label>%s<textarea type=”text” name=”wp_listings[%s]” value=”%s” rows=”2″ style=”width: 100%;”>%s</textarea></label></p>’;
Forum: Plugins
In reply to: [IMPress Listings] Error when activating plug inMake sure you are using the most recent version of both IMPress plugins. IMPress Listings and IMPress for IDX Broker. You will need to have a PHP version of 5.4 or greater for the plugins to work.
Thank you. We’ve identified the issue and this will be corrected in the next update.
If you need this fixed immediately, you can edit the plugin file /includes/views/listing-details-metabox.php
and change line 24 from this:
$pattern = '<p><label>%s<br /><textarea type="text" name="wp_listings[%s]" value="%s" rows="2" cols="40">%s</textarea></label></p>';to this:
$pattern = '<p><label>%s<br /><textarea type="text" name="wp_listings[%s]" value="%s" rows="2" style="width: 100%;">%s</textarea></label></p>';Forum: Plugins
In reply to: [IMPress Listings] Add new tabThat would most certainly require custom development. Would recommend contacting a WP developer that can add a new tab, along with the data fields you want displayed in that tab.
Forum: Plugins
In reply to: [IMPress Listings] Remove "Leave a comment"Or you can turn off Comments on that listing in the admin without needing to edit any PHP.
Forum: Plugins
In reply to: [IMPress Listings] Single listing page breaks main navigation in themeThat would appear to be a javascript conflict with the scripts on the single listing template – most likely the jQuery UI script.
Have you tried disabling all other plugins to see if it is a plugin conflict with another installed plugin?
Or tried contacting the premium theme developer and letting them know their javascript is breaking javascript with your plugins?Forum: Plugins
In reply to: [IMPress Listings] Search parameter URLs seem not to work in 2.0.1The URL params appear to display the actual properties in that taxonomy just fine. Your theme’s search.php template is overriding the plugin’s template. This will be fixed in the next update.
In the meantime, you could copy the plugin’s archive-listing.php into your theme folder, and rename it to search-listing.php, to display the previous layout that is compatible with your theme.
Forum: Plugins
In reply to: [IMPress Listings] Create a menu of property typesIn the Appearance > Menus page you can create a custom menu using any taxonomy terms or custom links, then use the core Custom Menu widget in any widget area to output that menu.
Forum: Plugins
In reply to: [IMPress Listings] Search widget not working on sidebar1) What is the error message? Have you tried resetting permalinks (Settings > Permalinks > Save)
2) The current search only searches by taxonomies. If you want to search price ranges, you need to: Create the taxonomy for price ranges, define your price ranges, and add them to the widget.
3) Certainly. Just use custom CSS to override the plugin defaults.
Forum: Plugins
In reply to: [IMPress Listings] plugin not displaying very nicelyYour theme has a very unconventional markup structure. It should be noted that we don’t guarantee compatibility with every theme.
If the custom wrapper option does not work for your particular theme, you can modify the single-listing.php and archive-listing.php template files to your specific needs. All you have to do is copy them to your theme folder and they will not be overwritten in a plugin update.
Forum: Plugins
In reply to: [IMPress Listings] Search Widget Results LinksYour main question is answered in the Agent Evolution forums here: http://www.agentevolution.com/forums/topic/search-widget-link-to-a-page-instead-of-search-results-page/
For the search results page, you can either wait for the next plugin update in which we will not use your theme’s internal search.php, but will look for a search-listings.php or default to the plugin’s archive-listings.php template.
Or you can copy the plugin’s archive-listings.php template to your theme folder and rename it to search-listings.php
Forum: Plugins
In reply to: [IMPress Listings] Unexpected character in input: '\' (ASCII=92)This is different and unique to your installation. What version of PHP are you running? The plugin requires at least version 5.4. Contact your webhost to update the version of PHP on your server.
Forum: Plugins
In reply to: [IMPress Listings] Saving Files so they don't get overwritten in an updateMoving template files to your theme only applies to the single-listing.php and archive-listing.php front-end template files. All other files are internal and to replace them, you would need to copy them to your theme, include theme, and most importantly, change the class and widget names. This is more advanced development of the plugin and is not supported.
Forum: Plugins
In reply to: [IMPress Listings] listings search form.Your theme would need to support the functionality to add a widget to “the top”. It’s a widget and can be placed in any widget area available in your theme.
Forum: Plugins
In reply to: [IMPress Listings] Full width page has sidebarCopy the single-listing.php from the plugin’s includes/views folder to your theme folder and remove the call to get_sidebar(). Themes implement custom layouts in different ways, and the default template will include a get_sidebar() call.
When you say you have several templates installed, but they are not showing up..
1) Are these the premium listing templates available on our website?
2) Have you tried switching to the default twenty fifteen theme to see if you have the same issue?