Idiom
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Monthly Archives, Grouped By MonthThis plugin did the trick
Installed it and simple used ” <?php wp_get_archives(‘cat=27,type=monthly’); ?>
Forum: Themes and Templates
In reply to: Monthly Archives, Grouped By MonthI found this code which essentially groups the posts by category… The more i look for what i’m trying to do, the more i think it can’t be done.
<?php $cat_args = array( 'orderby' => 'name', 'order' => 'ASC', 'child_of' => 0 ); $categories = get_categories($cat_args); foreach($categories as $category) { echo '<dl>'; echo '<dt> <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a></dt>'; $post_args = array( 'numberposts' => 5, 'category' => $category->term_id ); $posts = get_posts($post_args); foreach($posts as $post) { ?> <dd><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></dd> <?php } echo '<dd class="view-all"> <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>View all posts in ' . $category->name.'</a></dd>'; echo '</dl>'; } ?>
Forum: Plugins
In reply to: [Plugin: MyCourses] Initial releaseIm okay with the updates being re-released as open source as well.
Brian
Forum: Plugins
In reply to: [Plugin: MyCourses] Initial releaseHi Brad!
This is the perfect app for a project that we are currently working on. Would you be interested in making some “Paid” modifications to your plugin?
– Make WPMU friendly
——–schools———–
1. Create a new section for setting up multiple Schools
– School Name
– Address
– City, State, Zip
– Web address
– Link to Google Map——–courses———–
2. Add a drop-down for School Name
– using the schools that are listed in Schools section.
3 Add a selectable list (multiple) for course level (example: level 1, level 2, level 3, level 4)
4. Number of course units drop-down (2,3,3.5,4, etc)
5. Course nameLet me know if this is something you may be interested in.
Thank you!
Brian
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] Authorize.net Credit Card FieldThanks for the update! Any idea when the development version will make it to production?
BRian
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] Authorize.net Credit Card FieldI ended up downgrading to RC2 from RC5 of the latest plugin release.. Oddly that did the trick..
Brian
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] wpmu auto activation 1.51Hey Alex!
Just checking in to see if any the ball is being kicked around yet for WPMU support, specifically with the manual activation requirement?
Muchos Gracias!
Brian
Forum: Plugins
In reply to: Event Registration PluginThanks a bunch for all your work on this… I am going to give it a shot today.. ??
Brian
Forum: Plugins
In reply to: Event Registration PluginAny word on the new plugin? ??
Brian
Forum: Fixing WordPress
In reply to: Event Registration Questionanother thread with a similar inquiry.. It looks like an app is being built.. ??
Forum: Fixing WordPress
In reply to: custom login and registration area/pageYou can either change the redirect after login with the wp-login.php. (located in the root folder. or use the entire code below.. After logging in, it will keep you on the same page, except replace the login form with the text or info put in.. i.e. a logout button, etc
<div id="userbar"> <?php if ( is_user_logged_in() ) : ?> <p> Put the info you want displayed in here. </p> <p class="avatar"> <img src="<?php get_option('home') ?>/wp-content/mu-plugins/bp-xprofile/images/none-thumbnail.gif" alt="No User" /> </p> <form name="loginform" id="loginform" action="<?php get_option('home') ?>/wp-login.php" method="post"> <p> <label><?php _e('Username') ?><br /> <input type="text" name="log" id="user_login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" /></label> </p> <p> <label><?php _e('Password') ?><br /> <input type="password" name="pwd" id="user_pass" class="input" value="" /></label> </p> <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> <?php _e('Remember Me'); ?></label></p> <p class="submit"> <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" /> <input type="hidden" name="redirect_to" value="https://<?php echo $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] ?>" /> <input type="hidden" name="testcookie" value="1" /> </p> </form> <?php endif ?> </div>
Forum: Fixing WordPress
In reply to: custom login and registration area/pagethis should work for you..
<form name="loginform" id="loginform" action="<?php get_option('home') ?>/wp-login.php" method="post"> <label><?php _e('Username') ?> <input type="text" name="log" id="user_login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" /></label> <label><?php _e('Password') ?> <input type="password" name="pwd" id="user_pass" class="input" value="" /></label> <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> <?php _e('Remember Me'); ?></label> <p class="submit"> <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" /> <input type="hidden" name="redirect_to" value="https://<?php echo $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] ?>" /> <input type="hidden" name="testcookie" value="1" /> </form>
Forum: Plugins
In reply to: Event Registration PluginThanks for the update Thomas. Thats fantastic news on the plugin!
I’m in Souther California. We have been having some warm temps too. not quite 30 c, but darn close.. Thank god for A/C.. ??
Forum: Plugins
In reply to: Event Registration PluginOne thing to add.. This is a fantastic plugin for managing of the actual events..
Forum: Plugins
In reply to: Event Registration PluginI love the concept of this plugin. I am working on personal website for artists and would love the opportunity to have people sign-up for events .
5. Export of attending people (.csv)
it would be great to include the attendees email in there as well.
6. E-mail – Telling people what they signed up for and a link for “de-registering”
Maybe make the email customizable so a payment link to make a payment through an external processor like pay-pal..
Thanks a bunch.. When do you think the beta version will be released? I would be happy to be one of the testsers. ??