Title: kmonitor's Replies | WordPress.org

---

# kmonitor

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IssueM] My IssueM articles are not counted as a post!](https://wordpress.org/support/topic/my-issuem-articles-are-not-counted-as-a-post/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/my-issuem-articles-are-not-counted-as-a-post/#post-6546745)
 * Ok. That’s awesome! Should I delete the old one and re-download it? or just update
   it? I’m afraid if all my articles would be deleted…..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[ShootingStar] Category is NOT showing on Archive pages!](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/page/2/#post-6509886)
 * Do you mean any change of code in archive.php? That will be helpful, if you give
   me some replaceable code. Thank you!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[ShootingStar] Category is NOT showing on Archive pages!](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/page/2/#post-6509883)
 * Thank you so much for your advice. I really appreciate it. Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[ShootingStar] Category is NOT showing on Archive pages!](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/page/2/#post-6509877)
 * Thank you for your explanation though, but I really can’t understand that. I 
   visited your site, but I don’t know what’s going on there. I’m a beginner of 
   WP. Sorry for that.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[ShootingStar] Category is NOT showing on Archive pages!](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/#post-6509873)
 * Sorry, I don’t know what you’re saying. I’m a beginner of WP. I installed the
   Dynamic Widgets plugin, but I don’t know how to use it. -_-;
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[ShootingStar] Category is NOT showing on Archive pages!](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/#post-6509871)
 * Thank you for your advice. I will check this plugin and see how it works. Thanks,
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[ShootingStar] Category is NOT showing on Archive pages!](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/#post-6509869)
 * This is my archive.php
 *     ```
       <?php
       /**
        * The archive template file.
        * @package ShootingStar
        * @since ShootingStar 1.0.0
       */
       get_header(); ?>
       <?php if ( have_posts() ) : ?>
       <div class="post-loop">
       <div class="entry-headline-wrapper">
         <div class="entry-headline-wrapper-inner">
           <h1 class="entry-headline"><?php if ( is_day() ) :
       						printf( __( 'Daily Archive: %s', 'shootingstar' ), '<span>' . get_the_date() . '</span>' );
       					elseif ( is_month() ) :
       						printf( __( 'Monthly Archive: %s', 'shootingstar' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'shootingstar' ) ) . '</span>' );
       					elseif ( is_year() ) :
       						printf( __( 'Yearly Archive: %s', 'shootingstar' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'shootingstar' ) ) . '</span>' );
       					else :
       						_e( 'Archive', 'shootingstar' );
       					endif ;?></h1>
       <?php shootingstar_get_breadcrumb(); ?>
         </div>
       </div>
       <?php while (have_posts()) : the_post(); ?>
       <?php get_template_part( 'content', 'archives' ); ?>
       <?php endwhile; endif; ?>
       <?php if ( function_exists( 'page_navi' ) ) page_navi( 'items=7&prev_label=Prev&next_label=Next&first_label=First&last_label=Last&show_num=1&num_position=after' ); ?>
       </div>
       </div> <!-- end of content -->
       <?php get_sidebar(); ?>
       <?php get_footer(); ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[ShootingStar] Category is NOT showing on Archive pages!](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/#post-6509867)
 * The website link above is not category archive. Just a archive page. If the problem
   caused from widgets, how can I make it correct order?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[ShootingStar] Category is NOT showing on Archive pages!](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/category-is-not-showing-on-archive-pages/#post-6509863)
 * Hi, I recently changed the permalink from month&name to default, but still have
   the same problem. This problem was started in the beginning. As you said, I tested
   with Twenty Fifteen theme, when I click on category archive pages, still have
   the same problem.
 * Here’s my website [http://koreamonitorusa.com/?issuem_issue=2015-05-15](http://koreamonitorusa.com/?issuem_issue=2015-05-15)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My author's page link not working after I changed the permalink to default.](https://wordpress.org/support/topic/my-authors-page-link-not-working-after-i-changed-the-permalink-to-default/)
 *  Thread Starter [kmonitor](https://wordpress.org/support/users/kmonitor/)
 * (@kmonitor)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/my-authors-page-link-not-working-after-i-changed-the-permalink-to-default/#post-6489646)
 * Sorry to post my subject here. but I haven’t got any support and answer from 
   them. This plugin updated 2 years ago. How can I get some support? They don’t
   even open their email on their website.

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