akilham
Forum Replies Created
Viewing 8 replies - 1 through 8 (of 8 total)
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Re-use eventsWhoops, I just noticed the Duplicate button in the Events list page! Problem solved 🙂
Forum: Themes and Templates
In reply to: Modify comment listingThanks! 🙂
Marking as resolved.
Great, thanks! 🙂
Forum: Plugins
In reply to: [W3 Total Cache] Minify breaks @font-face on IEThanks! I will look in to the manual minify 🙂
Forum: Fixing WordPress
In reply to: Changing the author permalinkThe solution that I found to this was to put the following code (and nothing else) in to the author.php file:
<?php if ( have_posts() ) { the_post(); Header('Location: index.php/the-reqing-crew/?' . get_the_author_meta('user_login')); } else { Header('Location: index.php'); } ?>This will effectively display the built-in WordPress author page, and instead redirect the request to wherever you want it to go.
Hope that helps someone out 🙂
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Add latest podcast details to website headerPerfect, thanks. Just in case anyone else wants to do this, I used this code to get the latest podcast:
$the_query = new WP_Query('post_type=podcast&posts_per_page=1'); $the_query->the_post();And then to get the meta data, I just used get_post_meta($post->ID, ‘duration’, true);
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Add text to podcast pagePerfect, thanks! 🙂
Viewing 8 replies - 1 through 8 (of 8 total)