agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Center Single Listing featured imageWell, first to display them full size, you’d need to remove the custom CSS you added to make it only 50% width.
Images should be a minimum of 1000 pixels wide (or as wide as the content area of your site).
Forum: Plugins
In reply to: [IMPress Listings] Modifying functions.php to include shortcodes.phpYes, it is, and it will. Which is why you need to change the name of the shortcode and the functions in your custom shortcodes file.
Forum: Plugins
In reply to: [IMPress Listings] Center Single Listing featured imageNot with the way you have it configured.
Forum: Plugins
In reply to: [IMPress Listings] Modifying functions.php to include shortcodes.phpWhat is the error? That should point you in the right direction. You probably need to edit the shortcodes.php and rename the shortcode and its function so they have a different namespace than the default shortcodes.
Forum: Plugins
In reply to: [IMPress Listings] Translation with .pot FileYes. You can adjust the default registered terms. This was answered in a previous post: https://wordpress.org/support/topic/cant-remove-status?replies=9#post-6137348
Forum: Plugins
In reply to: [Genesis Agent Profiles] Connected ListingsAdd the following CSS to your theme to limit the width of the images:
.connected-listings img {max-width: 100%;}Forum: Plugins
In reply to: [IMPress Listings] Change Info on archive listing pageCopy the archive-listing.php file from the plugin into your theme folder. Then that file will be used instead of the included file and you can customize the info that is output.
Forum: Plugins
In reply to: [IMPress Listings] Theme Not Displaying ProperlyWhat is your site URL? Theme name and version? and WordPress version?
Forum: Plugins
In reply to: [IMPress Listings] Modifying functions.php to include shortcodes.phpAdd to your functions.php:
require_once get_stylesheet_directory() . '/shortcodes.php' ;Forum: Plugins
In reply to: [IMPress Listings] Center Single Listing featured imageIt will be centered automatically and full width if you use a larger original image.
Or you can use css margins to center:
.wplistings-single-listing .listing-image-wrap img { margin: 0 auto; }Forum: Plugins
In reply to: [IMPress Listings] Export lisitings?Yes. The native export feature works for all custom post types.
Forum: Plugins
In reply to: [IMPress Listings] Contact Form doesn't workWhat browser are you using? The form appears to be working fine.
Yes, you can remove the contact form if you edit the single-listing.php template file. Move it from the plugin’s folder and in to your theme folder, then just remove the contact form code.
Forum: Plugins
In reply to: [IMPress Listings] Translation with .pot FileThe file provided in the /languages/ folder of the plugin is the latest version.
Forum: Plugins
In reply to: [IMPress Listings] List ViewNot at this time, but you could code a custom template for a list view.
Forum: Plugins
In reply to: [IMPress Listings] Sidebar problemsTry this:
.single-listing #primary {width: 71%; float: left;}