MichelleLeslie
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Events Manager] List Recurring Events as one EventThank you for the speedy response. Much appreciated. ??
Forum: Plugins
In reply to: [Plugin: Events Manager] List Recurring Events as one EventDoes anyone know how to customise Shatting’s code to filter events like this by location?
I’d like to show all the events for a location with the recurring events only showing once.
I’m having this problem as well. How did you fix it sherodesigns?
Forum: Plugins
In reply to: [Plugin: Events Manager] List Recurring Events as one EventHi Shatting, thanks for the code. Works great!
Thank you! This helped me out a lot.
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] Remove links from imagesActually, not quite solved. This removed the links but made it so all my posts had the same taxonomy images (even though I specified different ones).
If anyone knows another method, that would be much appreciated.
If you want the links, try this.
<?php print apply_filters( 'taxonomy-images-list-the-terms', '', array( 'after' => '</div>', 'after_image' => '</span>', 'before' => '<div class="your-class">', 'before_image' => '<span>', 'image_size' => 'thumbnail', 'taxonomy' => 'taxonomy-name', ) ); ?>
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] Get image on single pageThanks guys, this helped me a lot!
Do you just want the taxonomy images without any links?
If so, this code (from this thread) worked for me.
$categories = get_categories(array( 'taxonomy' => 'series' )); foreach ($categories as $category) { $tax_term_id = $category->term_taxonomy_id; $images = get_option('taxonomy_image_plugin'); echo wp_get_attachment_image( $images[$tax_term_id], 'medium' ); }
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] Remove links from imagesDid some more digging in the support archives. This thread solved it for me.
Here’s the code stevejonesdev’s posted for those who need it.
$categories = get_categories(array( 'taxonomy' => 'series' )); foreach ($categories as $category) { $tax_term_id = $category->term_taxonomy_id; $images = get_option('taxonomy_image_plugin'); echo wp_get_attachment_image( $images[$tax_term_id], 'medium' ); }
Forum: Fixing WordPress
In reply to: Removing 'Continue Reading' from ExcerptsThank you Mike62! I’ve been stumped over this for hours and your solution worked like a charm for me. ??
Forum: Networking WordPress
In reply to: 3.1.1 multisite Network Admin error During UpgradeI’m having exactly the same problem Jinger. Thanks for posting about it, makes me feel slightly less crazy.
Now to talk to my web host. Here’s hoping they’ll be as helpful as yours. ??
Forum: Networking WordPress
In reply to: WordPress Multisite links only works with "www"Thank you, thank you, thank you!
I was having the same problem and it was doing my head in until now. Just for the record, the code format that Manansaini posted worked for me.