agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] impress listings not iporting idx propertiesYes, we’re still looking into the issue. It appears to be specific to your hosting setup as we’re unable to replicate it on other test environments. We’ll update this post once the problem is found and we can provide a fix.
Forum: Plugins
In reply to: [IMPress Listings] Update broker WebisteNo the db tables and settings will not be deleted. It’s a straightforward delete through the admin and reinstall.
Forum: Plugins
In reply to: [IMPress Listings] Update broker WebisteTry deleting the plugin from the wp-content/plugins/ directory via FTP and reinstalling it from the WordPress Dashboard.
Found that thread. Just posted over there: https://wordpress.org/support/topic/agent-profiles-plugin-is-breaking-my-archive-pages-in-agentpress?replies=17#post-7847792
Author of the Genesis Agent Profiles plugin here. Correct, that plugin is no longer being maintained. However, in the very near future we will be releasing a newer version of the plugin that will work with any WP theme, not Genesis only.
This is an odd issue and has not been seen or reported before, so I believe it may have something to do with a recent WP update.
The only thing I can determine that would be causing this issue is the template redirect filter in the plugin that will use either the plugin’s included templates or templates in the theme.
As the Extended plugin uses it’s own template redirect filter to reformat the agents page(s), you can keep using that one. Then simply disable the template include filters in the original plugin, which should fix this issue. Just add this to your child theme’s functions.php (or a site specific plugin):
remove_filter( 'template_include', 'aep_template_include' );Forum: Plugins
In reply to: [IMPress Listings] Short Code Stopped WorkingThank you for pointing this out. This has been a confirmed issue with the WP 4.4 update and there is a trac and fix ticket that addresses this (https://core.trac.wordpress.org/ticket/34939).
This fix should make it into the next version of WordPress core.Forum: Plugins
In reply to: [IMPress Listings] IListings Page default to Page not Post!When you say it loads under the blog section, do you mean the menu item for the blog is highlighted? That’s a function of your theme’s menu adding the current page markup to the menu item. A single listing is not a page, and will not show the current page highlight on the menu.
Forum: Plugins
In reply to: [IMPress Listings] how to remove bed and bath from main listing pageUse CSS to hide them using
display: none.li.beds, li.baths {display: none;}Forum: Plugins
In reply to: [IMPress Listings] individual listings get 404Reset your permalinks under Settings > Permalinks > press Save Changes.
Forum: Plugins
In reply to: [IMPress Listings] [WP Listings] print friendly?You’d need to create a print style sheet (See: https://codex.wordpress.org/Styling_for_Print) that would set all the tab content with CSS to
display: block;Forum: Plugins
In reply to: [IMPress Listings] Maximum PriceYou would need to build a custom search widget to search the price field and only return results where the field value is lower.
Additionally, because the price field will generally include commas, you’d need to write a function to pull that price, clear out the commas, and save it as a new price field with only numbers. Then search that new field instead of the price field.
Use CSS
.single-aeprofiles .connected-listings .listing-price, .single-aeprofiles .connected-listings .listing-beds, .single-aeprofiles .connected-listings .listing-baths { display: none; }Forum: Plugins
In reply to: [IMPress Listings] WP Listings sidebar missingYour theme must be using a custom sidebar function. You’ll have to look at how your theme loads the sidebar and replace the get_sidebar() functions calls with the function calls that your theme uses for the sidebar.
Forum: Plugins
In reply to: [IMPress Listings] Missing something simpleIt should be released in the next couple of weeks.
Forum: Plugins
In reply to: [IMPress Listings] Tabbed images problemI suspect your theme is adding the CSS which is causing that but can’t be sure without looking at it.
Try adding just this CSS. It should clear the floats from your theme:
#listing-gallery {overflow: hidden;}