agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Agent not showingIt’s only available in Genesis. It requires the Genesis Agent Profiles plugin and the Posts 2 Posts plugin.
Forum: Plugins
In reply to: [IMPress Listings] Font SizeUsing custom CSS (adjust as needed):
.content-sidebar .wplistings-single-listing .listing-meta li {font-size: 14px;} .content-sidebar .wplistings-single-listing .listing-meta li.listing-price {font-size: 16px;}Forum: Plugins
In reply to: [IMPress Listings] Wp listing templateThe included templates are compatible with a majority of WP themes, but are not guaranteed to work with every theme out of the box. You may need to customize the included single-listing.php template to work best with your theme. To customize just copy the file from the plugin into your theme folder and make the necessary changes.
There is no premium plugin version available.
Forum: Plugins
In reply to: [IMPress Listings] Listing Banner Miss AlignedThere is no lightbox in the plugin. You must rely on a third party plugin, such as the Carousel feature in the Jetpack plugin.
Looks like you’ve added some custom CSS for the alignment on that listing. Just adjust your top and left number to position it where you want.
Forum: Plugins
In reply to: [IMPress Listings] pagination on listings pageThe default display uses archive templates to display all listings. The archive page would be http://www.yourdomain.com/listings/ (or whatever slug you have defined in the plugin settings.)
Forum: Plugins
In reply to: [IMPress Listings] can't remove statusThere is already a filter for property types. You can see it in the file class-/includes/taxonomies.php. It’s basically:
add_filter( 'wp_listings_default_property_type_terms', 'custom_default_property_type_terms' ); function custom_default_property_type_terms() { $property_type_terms = array(); return $property_type_terms; }Forum: Plugins
In reply to: [IMPress Listings] pagination on listings pageThere is a limit parameter on the shortcode. If you want pagination, use the archive templates, not the shortcode.
Forum: Plugins
In reply to: [Genesis Agent Profiles] Profiles do not display properly on mobile deviceI see. Just add !important after those declarations:
@media (max-width: 480px) { .archive-aeprofiles .agent-wrap { float: none !important; width: 100% !important; } }Forum: Plugins
In reply to: [IMPress Listings] I can't delete or rename your status entries.If you don’t need them, you can just not use them. Otherwise, you’ll need to use a filter in your theme. See previous forum post on this: https://wordpress.org/support/topic/cant-remove-status?replies=7
Forum: Plugins
In reply to: [Genesis Agent Profiles] Profiles do not display properly on mobile deviceAnywhere in the CSS should work fine. Looking at your site, I don’t see that code anywhere in the CSS.
Forum: Plugins
In reply to: [Genesis Agent Profiles] Taxonomies and Meta keys1. You can use query strings to display posts in multiple terms with a search. Example:
http://www.yourdomain.com/?s=&post_type=aeprofiles&location=new-york&profession=agent2. You can look at the file /includes/class-aeprofiles.php to get the meta keys for all the custom meta fields. They all start with
_agent_and are pretty clear based on the field name. Example:_agent_titleand_agent_emailetc..Forum: Plugins
In reply to: [IMPress Listings] Show the Project Type description in the pageSo then add it in the editor??
Forum: Plugins
In reply to: [IMPress Listings] Listings Search Order in Drop DownThe taxonomy terms in the search widget are displayed based on the count – the number of listings in that term.
To change it to alphabetical, you’ll need to edit the widget in the plugin. In the file
class-listings-search-widget.phpedit line 39 and change theorderbyparameter totitle.Forum: Plugins
In reply to: [IMPress Listings] Show all postsThat setting only controls the archive page. If you’re viewing a taxonomy page you’ll need to add custom code from this previous thread:
https://wordpress.org/support/topic/archive-page-to-not-follow-blog-pages-show-at-most-setting?replies=7Forum: Plugins
In reply to: [IMPress Listings] Disappear featured listings and search from the widget1. Update your version of WordPress. The current version is 4.0
2. Verify that your theme supports a sidebar. You may need to customize the included templates to add a custom widget area.