Title: Brian Krogsgard's Replies | WordPress.org

---

# Brian Krogsgard

  [  ](https://wordpress.org/support/users/krogsgard/)

 *   [Profile](https://wordpress.org/support/users/krogsgard/)
 *   [Topics Started](https://wordpress.org/support/users/krogsgard/topics/)
 *   [Replies Created](https://wordpress.org/support/users/krogsgard/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/krogsgard/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/krogsgard/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/krogsgard/engagements/)
 *   [Favorites](https://wordpress.org/support/users/krogsgard/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Really Simple Series] Unlink the current post in the list](https://wordpress.org/support/topic/unlink-the-current-post-in-the-list/)
 *  Plugin Author [Brian Krogsgard](https://wordpress.org/support/users/krogsgard/)
 * (@krogsgard)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/unlink-the-current-post-in-the-list/#post-4069078)
 * That’s a great feature request. It’s not in the plugin currently, but I can add
   it and send out an update this week. Once I do, it’ll just add a class to the
   post if it’s the current one being viewed, which will make it easy for you to
   style it with just a line or two of css in your child theme.
 * Unlinking is probably not as good of an idea. Styling it is probably better.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Really Simple Series] Hiding dates](https://wordpress.org/support/topic/hiding-dates/)
 *  Plugin Author [Brian Krogsgard](https://wordpress.org/support/users/krogsgard/)
 * (@krogsgard)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/hiding-dates/#post-3321684)
 * Hey mchildress,
 * I’m sorry I’m just seeing this. I don’t receive notifications for support threads
   🙁
 * It should display dates for all posts, not just some. Here’s an example: [http://krogsgard.com/2012/create-a-wordpress-theme/](http://krogsgard.com/2012/create-a-wordpress-theme/)
 * You can remove all dates with a filter that allows you to customize the content
   area of each post in the series:
 *     ```
       add_filter( 'rsseries_content', 'rsseries_no_date' );
   
       function rsseries_no_date( $series_content ) {
   
       	$series_content = '<a href="' . get_permalink() . '">' . get_the_title()  . '</a>';
   
       	return $series_content;
   
       }
       ```
   
 * That would go in your theme functions.php file or your website’s functionality
   plugin.
 * Hope that helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] [Plugin: The Events Calendar] Conditional for Calendar pages?](https://wordpress.org/support/topic/plugin-the-events-calendar-conditional-for-calendar-pages/)
 *  Thread Starter [Brian Krogsgard](https://wordpress.org/support/users/krogsgard/)
 * (@krogsgard)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-the-events-calendar-conditional-for-calendar-pages/#post-2589877)
 * Indeed, this is correct. That grabs everything related to TEC stuff.
 * Thanks, Joey!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] [Plugin: The Events Calendar] Conditional for Calendar pages?](https://wordpress.org/support/topic/plugin-the-events-calendar-conditional-for-calendar-pages/)
 *  Thread Starter [Brian Krogsgard](https://wordpress.org/support/users/krogsgard/)
 * (@krogsgard)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-the-events-calendar-conditional-for-calendar-pages/#post-2589777)
 * So my base slug is ‘calendar’.
 * I’ve found that it is returning true to a generic is_page() check, which doesn’t
   help much.
 * calendar/upcoming returns true on a ‘tribe_events’ == get_post_type() check, 
   which starts to help.
 * other URLS like calendar/month, calendar/2012-03 (and other date archives) are
   returning true for the same is_page() check… none of it makes much sense.
 * I’ve tried it both with a page called ‘calendar’ and without, and it makes no
   difference.
 * Anywho, just some extra info.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Akismet Anti-spam: Spam Protection] Small UI bug](https://wordpress.org/support/topic/small-ui-bug/)
 *  Thread Starter [Brian Krogsgard](https://wordpress.org/support/users/krogsgard/)
 * (@krogsgard)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/small-ui-bug/#post-2257740)
 * Okay…
 * I’m on a Mac osx Lion using latest stable Chrome in a Multisite install on a 
   sub-site where Akismet is the only active plugin, but I do have Jetpack and a
   couple others ‘network enabled’. Hope that helps.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Akismet Anti-spam: Spam Protection] Small UI bug](https://wordpress.org/support/topic/small-ui-bug/)
 *  Thread Starter [Brian Krogsgard](https://wordpress.org/support/users/krogsgard/)
 * (@krogsgard)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/small-ui-bug/#post-2257655)
 * Version 3.2.1 and the most recent version of Chrome.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Yoast WordPress SEO: Titles / Title on homepage is from first post](https://wordpress.org/support/topic/yoast-wordpress-seo-titles-title-on-homepage-is-from-first-post/)
 *  [Brian Krogsgard](https://wordpress.org/support/users/krogsgard/)
 * (@krogsgard)
 * [15 years ago](https://wordpress.org/support/topic/yoast-wordpress-seo-titles-title-on-homepage-is-from-first-post/#post-2008491)
 * Go to Settings > Reading and make sure you have either “recent posts” or “static
   page” actually selected.
 * It’s possible neither is selected, and the plugin will not pick up those pages
   to rewrite titles.
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [Admin bar CSS](https://wordpress.org/support/topic/admin-bar-css/)
 *  [Brian Krogsgard](https://wordpress.org/support/users/krogsgard/)
 * (@krogsgard)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/admin-bar-css/#post-1835072)
 * Playing with the admin bar activated and not activated / logged in and not logged
   in, I noticed that when activated but not logged in it will take on padding other
   than 28px from the theme if defined.
 * For instance, if the theme padding is set to `body {padding-top: 80px;}` it will
   show up as 28px when the user is logged in and the admin bar is displayed, and
   80px when the user is not logged in and the admin bar is not displayed.
 * Would it be a good idea to make the forced padding to apply (to 0px rather than
   28px) even when the user is not logged in? That way theme authors will use margin
   to achieve what they want and not make the experience different for the user 
   depending on their login status.

Viewing 8 replies - 1 through 8 (of 8 total)