agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Feature Image Size AdjustmentThere are two image size functions:
add_image_size( 'listings-full', 1060, 9999, false ); add_image_size( 'listings', 560, 380, true );In your theme, you’ll need to use the
remove_image_sizefunction (http://codex.wordpress.org/Function_Reference/remove_image_size) to remove those sizes.
Then after that, useadd_image_sizeagain with your own custom sizes.Forum: Plugins
In reply to: [IMPress Listings] Invalid post type message appear@job431 – First try deactivating all other plugins. Then try switching to the default 2014 or 2015 theme.
Forum: Plugins
In reply to: [IMPress Listings] Search widget not working with Enfold themeI would contact the theme developer. We don’t have a copy of that theme to test with, but it appears the theme may be modifying/filtering the default WP search queries.
Forum: Plugins
In reply to: [IMPress Listings] Broken shortcode output after 1.2 updateFixed as of v1.2.1. Props to Dan!
Forum: Plugins
In reply to: [IMPress Listings] Featured Listings price overlays over captionYou have a whole block of AgentPress Listings CSS in your theme’s style.css. This in particular is affecting the positioning of the price:
.listing-price { background-color: #fff; border-bottom: 1px solid #e5e5e5; display: inline-block; font-family: 'Lato', sans-serif; font-size: 24px; margin: -30px auto 12px; padding: 12px 32px; }I recommend removing all the AgentPress CSS as it could conflict with more than just that. You also should really remove those credentials at the top of the stylesheet.
Forum: Plugins
In reply to: [IMPress Listings] Search Using Custom Taxonomy "Price Range"Create a custom taxonomy called Price Ranges and create terms in that taxonomy with price ranges (i.e. 100k-200k, 200k-300k, etc) and then assign each listing to a price range. You’ll then be able to add it to the search widget.
Forum: Plugins
In reply to: [IMPress Listings] Text above photosYou’ll likely need some custom CSS to be compatible with your theme.
Forum: Plugins
In reply to: [IMPress Listings] Chance status colorYou’ll need custom CSS for the new term. Look at the existing CSS and add your own in your theme’s CSS.
/* =Listing overlays ------------------------------------------------------------ */ .widget .listing-wrap span.listing-status { color: #fff; background: #53c331; background: rgba(83, 195, 49, 0.80); font-weight: 700; text-align: center; text-transform: uppercase; box-shadow: 0px 4px 1px rgba(0, 0, 0, 0.2); } .widget .listing-wrap span.listing-status.active { background: #53c331; background: rgba(83, 195, 49, 0.80); } .widget .listing-wrap span.listing-status.sold { background: #be1d2c; background: rgba(190, 29, 44, 0.80); } .widget .listing-wrap span.listing-status.pending { background: #db8323; background: rgba(219, 131, 35, 0.80); } .widget .listing-wrap span.listing-status.new, .widget .listing-wrap span.listing-status.reduced, .widget .listing-wrap span.listing-status.for-rent { background: #24a4ea; background: rgba(36, 164, 234, 0.80); }Forum: Plugins
In reply to: [IMPress Listings] Enormous pixelated images on single listingsIt’s likely a theme issue. The image will simply fill the container it’s in. If that container doesn’t have a defined width, it would display full screen.
Forum: Plugins
In reply to: [IMPress Listings] listing.php conflictChanging the permalink doesn’t change the post type name. You’ll need to fork the plugin to register a different post type name, not just change the permalink.
Forum: Plugins
In reply to: [Genesis Agent Profiles] Social Media Icons Not ShowingThis occurs in Firefox and Internet Explorer due to cross domain asset loading restrictions. You can read more about why and a workaround here: http://davidwalsh.name/cdn-fonts
Forum: Plugins
In reply to: [Genesis Agent Profiles] 404 errorThis is usually caused by another plugin modifying your permalinks or htaccess file.
Forum: Plugins
In reply to: [IMPress Listings] Unable to edit photo gallery with WP 4.1This issue will be fixed in the next plugin update.
In the meantime, you can edit the plugin file /includes/views/listing-details-metabox.php and remove the following lines:
// Hide MCE Toolbar on this editor because it's not needed echo '<style>#wp-_listing_gallery-wrap .mce-toolbar-grp {display: none;}</style>';Forum: Plugins
In reply to: [IMPress Listings] Change sqft to sqmCopy the file archive-listing.php from the plugin’s /includes/views/ folder and place in your child theme folder. Then edit as needed.
Forum: Plugins
In reply to: [IMPress Listings] Theme Functionality within Single Listing PageTo remove the comments from the single-listing.php remove these lines:
// If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); }Adding theme specific features to the plugin is likely not going to happen. I would contact the theme author to find out how you can apply those attributes to a custom post type.