jasonday
Forum Replies Created
-
See screenshot with stacked banners.
Forum: Plugins
In reply to: [IMPress Listings] Search shortcode?Additionally, the search widget is really limited. Are there any plans for an expanded search – price, bedrooms, baths, etc?
Forum: Plugins
In reply to: [Document Gallery] How to check if there are documents attached to post?Hi Dan,
thanks for responding. I’m displaying the output inside a tabbed interface. If there is no attachment, then I don’t want the corresponding tab to show.
Forum: Plugins
In reply to: [Document Gallery] How to check if there are documents attached to post?Accomplished it this way:
<?php $attachments = get_posts( array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post_parent' => $post->ID, 'exclude' => in_array('image', 'audio') )); if ( $attachments ) { ?> <div id="listing-documents"> <?php echo do_shortcode( '[dg]' ); ?> </div> <?php } ?>
Forum: Plugins
In reply to: [Pronamic Google Maps] No MapThere’s a javascript error. I’ve disabled Jetpack, but still seeing the issue.
Here’s the call stack, starting with F is not defined.
Uncaught ReferenceError: F is not defined VM853:13 (anonymous function) VM853:13 Xf.main main.js:45 (anonymous function) main.js:26 (anonymous function) main.js:11 (anonymous function) main.js:26 M main.js:10 (anonymous function) main.js:26 Tf.(anonymous function).kf main.js:25 Uf.(anonymous function).bd main.js:26 Yf main.js:26 (anonymous function) %7Bcommon,util,stats%7D.js:1
Forum: Plugins
In reply to: [Pronamic Google Maps] No MapAny further word on this?
Forum: Plugins
In reply to: [Real Estate Website Builder] Edit property features?Hi Matt,
Thanks for responding so quickly. I’m not seeing an option to edit property amenities/features under listings that I add myself (non MLS).
So for example, instead of jacuzzi as an amenity, I might want wood stove or mud room. It would be great to have the ability to edit the labels for these features (and and/remove as needed) due to regional differences in features for properties. New England properties have very different features from southern homes.
Forum: Plugins
In reply to: [Pronamic Google Maps] No MapWhat I mean is:
check the box first, then put in an address and geocode.
Forum: Plugins
In reply to: [Pronamic Google Maps] No MapQuestion:
Does the order matter for the checkbox tick?
for example, if I check the box first, then geocode…does it make a difference?
Forum: Plugins
In reply to: [Pronamic Google Maps] No MapAdditional information:
New WP install
Using Pods
Theme CanvasHave disabled both, and tested with base WP themes.
Tested on posts, pages, custom post types.
[googlemaps] shortcode does not render anything
mashup shortcode renders map without markersForum: Plugins
In reply to: [Pronamic Google Maps] No MapForum: Plugins
In reply to: [Pronamic Google Maps] Not displaying?I’m having this same issue, and the checkbox is ticked.
Forum: Plugins
In reply to: [Pronamic Google Maps] No MapThat I have.
If I use shortcode [googlemaps] nothing displays.
If I use the mashup, a map displays with no markers.
Forum: Plugins
In reply to: [WP Geo] Template code?Is it also possible to only show custom post types? (the only geocoded posts I will have)
Forum: Plugins
In reply to: SHow first image of gallery Large instead of thumbnailHi Esmi,
thanks for the response.get_posts, isn’t applicable to what I’m trying to do.
What I want to have happen, is in a post when I insert a WP gallery, I want the first image to appear at it’s large size while the others are at normal size.