agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Cannot get the carousel in JetPack to work on the listing.They are added correctly (using insert gallery), but the Carousel script is not being loaded on that page. Be sure you have activated the Carousel feature in the Jetpack settings.
Forum: Plugins
In reply to: [IMPress Listings] Removing Right Column – Spike themeWithout knowing how your theme operates and removes the sidebar on certain layouts, it’s hard to tell how to change it.
You’ll probably need to copy the archive-listing.php and single-listing.php from the plugin’s includes/views/ folder and move it to your theme folder. Then you can customize that template and remove the get_sidebar() function from those templates.
Forum: Plugins
In reply to: [IMPress Listings] can't remove statusWith the latest version (v1.1.1) you can remove the defaults by adding a filter function to your theme.
This will remove all the default status terms. You can remove the ones that you want to keep, if any, from the array:
add_filter( 'wp_listings_default_status_terms', 'custom_default_status_terms' ); function custom_default_status_terms() { $status_terms = array('Active' => 'active', 'Pending' => 'pending', 'For Rent' => 'for-rent', 'Sold' => 'sold', 'Featured' => 'featured', 'New' => 'new', 'Reduced' => 'reduced'); return $status_terms; }Forum: Plugins
In reply to: [IMPress Listings] Listing page returns 404Reset your permalinks by going to Settings > Permalinks and clicking Save to reset the current permalink structure.
Forum: Plugins
In reply to: [IMPress Listings] can't remove statusThey are added as defaults by the plugin. If you don’t need them, you don’t need to use them.
Forum: Plugins
In reply to: [IMPress Listings] Shortcode for Search WidgetNo there isn’t. It’s for widget areas only.
You can try a plugin that will let you add widgets to pages: https://wordpress.org/plugins/widgets-on-pages/
Forum: Plugins
In reply to: [IMPress Listings] Changing WP Listings Archive & Widget Display FieldsThis is not a similar issue and this topic has been marked resolved. Please post a new topic.
Forum: Plugins
In reply to: [IMPress Listings] How Do I Create Another Page / Gallery?Assign listings to the taxonomy/term you created. Edit the listing, under Property Types, select Rentals, and Save. Once you have listings assigned to that taxonomy/term, the shortcode will work to display only those.
Forum: Plugins
In reply to: [IMPress Listings] WP Listings Elegant ThemeYou have the Genesis Tabs plugin installed that has conflicting CSS styles. Either deactivate the plugin (if you don’t need it) or add this bit of CSS to your theme’s Custom CSS panel:
.listing-template .ui-tabs .ui-tabs-nav li a {background: none;}Forum: Plugins
In reply to: [IMPress Listings] How Do I Create Another Page / Gallery?Shortcode usage instructions are on the Installation tab of the plugin page.
Add a “rentals” term to the property type taxonomy and assign listings to them. Then you can show only those with the shortcode
[listings taxonomy="property-type" term="rentals"]Forum: Plugins
In reply to: [IMPress Listings] Resizing listing photos to have everything appear in sync.You don’t need to resize them to any specific size. Just upload the largest possible size (within reason.. nothing larger than 1200pixels wide is really necessary, and no larger than 500-600k in file size).
WordPress will automatically resize and crop the thumbnails to fit the size needed.
Reset your permalinks by going to Settings > Permalinks and press Save Changes to reset them.
Forum: Plugins
In reply to: [IMPress Listings] Add Media Button Doesnt WorkPer the Forum Welcome, please post more information.
Also, as with troubleshooting any issue, deactivate all other plugins first to see if problem still persists.
Post back here when you’ve done the previous steps.
Forum: Plugins
In reply to: [IMPress Listings] Can unregistered visitors add listings?Not built into the WP Listings plugin. However, a form creation plugin like Gravity Forms, would allow you to do this.
Forum: Plugins
In reply to: [IMPress Listings] Help adding connecting Agent profilesNope. It only integrates with that plugin. Don’t know of any similar agent profile plugins.