dadvan
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Query EventsEnded up figuring it out:
<?php global $post; $querywe_args = array( 'posts_per_page' => 2, // change this to any number or '0' for all 'post_type' => 'event', 'tax_query' => array( array( 'taxonomy' => 'event-tags', 'field' => 'slug', 'terms' => $post->post_name // this gets the page slug ) ) ); // a new instance of the WP_query class $querywe = new WP_Query( $querywe_args ); ?>
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Using TagsNevermind, found it.
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Show featured image if no secondary feature imageSomeone helped me with this issue here:
https://www.ads-software.com/support/topic/conditional-default-image?replies=9
Someone helped me with this issue here:
https://www.ads-software.com/support/topic/conditional-default-image?replies=9
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Conditional Default ImageWorks, Thanks barryp!
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Conditional Default ImageThanks Barryp! Something is not quite right here it is putting the fallback image on top of the Multipost Thumbnail:
<?php // Check for Plugin if (class_exists('MultiPostThumbnails')) { // Set Thumbnail $thumb = MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'secondary-image'); // Thumbnail exist? Else show Not Found if ($thumb) : echo $thumb; else :?><img src="/images/icon.png" alt="<?php the_title(); ?>" /><?php ; endif; // Plugin not found. } else { ?> <img src="/images/icon.png" alt="<?php the_title(); ?>" /> <? }?>
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Conditional Default ImageAnybody?
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Conditional Default ImageAnybody???
I just figured it out. In the mcsw.php file look for this:
wp_redirect(get_bloginfo('url').'/categories/'.$
to this:
wp_redirect(qtrans_convertURL (get_bloginfo('url')).'/categories/'.$
I have this problem too. I installed and activated the plugin Query Multiple Taxonomies but still the same issue
Forum: Plugins
In reply to: Multiple category selection widget qtranslateI have this problem too.
Antoniobon- I installed and activated Query Multiple Taxonomies but I still have the same problem. Is there something else I am supposed to do?
Forum: Hacks
In reply to: How to make Page-Links-To work with qTranslateI have this same challenge. I was using the Quick Page/Post Redirect Plugin
I am unable to get mine to show only once. I set the “repeat interval for a user” to 10,000 hrs but when i refresh the page, it shows the lightbox.
Forum: Plugins
In reply to: [EasyRecipe] [Plugin: Easy Recipe] Latest version not workingHello Jayce53,
I just sent the diagnostics.
Forum: Fixing WordPress
In reply to: Most Recent Post Per CategoryOK, I see. So you want the the newest/most recent post from each category to show first but do you have 30+ categories? If not, whats to happen after you show the newest category or do you just want to show the newest from each category and then end it from there?