Alain
Forum Replies Created
-
Hi Volkmar,
I encountered the same issue (which broke functionality of forms added by shortcodes).
Quick fix is to deselect the ‘Automatically add paragraphs’ checkbox underneath of the editor (in case you didn’t find out already).
But it would of course had been better this option isn’t checked by default, or at least not for existing instances of the widget..
Forum: Plugins
In reply to: [Infinite-Scroll] Media library doesn't load in WP 4.0Check here for a solution…
Forum: Plugins
In reply to: [Infinite-Scroll] Bug with WordPress 4.0 beta (and workaround)Thank you for sharing your solution!
Forum: Plugins
In reply to: [Taxonomy Images] Display Term Name Using "taxonomy-images-list-the-terms"try this:
<?php $terms = apply_filters( 'taxonomy-images-get-the-terms', '', array('taxonomy' => 'your_taxonomy_name') ); foreach( (array) $terms as $term) { echo wp_get_attachment_image( $term->image_id, 'your_image_size' ); echo $term->name; } ?>
Hi Grant,
Good question! Would like to know this too… Did you find a solution since you posted this question?
thank you kimipooh!
if ( !isset($_POST['_wpcf7']) || $_POST['_wpcf7'] == ""){
–> works!If the solution above did not work for you (as for me) you can change the if statement to check for the pagename where the contactform is on:
if ($_SERVER[‘REQUEST_URI’]!=’/pagename/’ ) {
//meenews stuff
}
This solution is not working for me unfortunately.
Are there other possible solutions?
Forum: Plugins
In reply to: [Category Templates] [Plugin: Category Templates] lots of errorsThank you twistedroute! Had the same issue and it’s now fixed..
Forum: Plugins
In reply to: [Plugin: My Category Order] Custom Taxonomy Order and Code ImprovementsHi Andrew,
Is this still something you’re working on? (hope so)
I now have a very quick&dirty solution (duplicating your plugin for every post type and replacing names etc)…Alain
Forum: Plugins
In reply to: WP Post Thumbnail 0.2 Beta 2 Problemthank you giovanni for sharing your solution!
Forum: Alpha/Beta/RC
In reply to: Adding plugins meta box’s to custom post typesthanks david! that saved me two solid days…