Title: blong's Replies | WordPress.org

---

# blong

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Move page down on load](https://wordpress.org/support/topic/move-page-down-on-load/)
 *  Thread Starter [blong](https://wordpress.org/support/users/blong/)
 * (@blong)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/move-page-down-on-load/#post-1998767)
 * Ok I figured it out.
    For anyone with the same problem here’s what I did:
 * in the header, add
 *     ```
       <script type="text/javascript">
   
       function goToAnchor() {
       location.href ="#myAnchor";
       }
   
       </script>
       ```
   
 * between the head tags, right after the title.
 * next change the body tag from
    `<body <?php body_class(); ?>>` to `<body onload
   ="goToAnchor();" <?php body_class(); ?>>`
 * and then open loop.php and add
    `<a name="myAnchor"></a>` right before the loop
   begins.
 * That’s it! I’m still not exactly sure what I had wrong before
    but it’s working
   now 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove Category Name From Posts](https://wordpress.org/support/topic/remove-category-name-from-posts/)
 *  Thread Starter [blong](https://wordpress.org/support/users/blong/)
 * (@blong)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/remove-category-name-from-posts/#post-1789351)
 * Ok I figured it out. I did delete the <h1> tags but they were in category.php.
   Thank you so much for your help!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove Category Name From Posts](https://wordpress.org/support/topic/remove-category-name-from-posts/)
 *  Thread Starter [blong](https://wordpress.org/support/users/blong/)
 * (@blong)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/remove-category-name-from-posts/#post-1789309)
 * This is what I deleted
 *     ```
       <h1 class="page-title">
       <?php if ( is_day() ) : ?>
       				<?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
       <?php elseif ( is_month() ) : ?>
       				<?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date('F Y') ); ?>
       <?php elseif ( is_year() ) : ?>
       				<?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date('Y') ); ?>
       <?php else : ?>
       				<?php _e( 'Blog Archives', 'twentyten' ); ?>
       <?php endif; ?>
   
       			</h1>
       ```
   
 * but it still says the category. Did I delete the wrong thing?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Widget Area Above Posts](https://wordpress.org/support/topic/widget-area-above-posts/)
 *  Thread Starter [blong](https://wordpress.org/support/users/blong/)
 * (@blong)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/widget-area-above-posts/#post-1734564)
 * It worked perfectly! Thank you soooooo much!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding Next/Previous Links](https://wordpress.org/support/topic/adding-nextprevious-links/)
 *  Thread Starter [blong](https://wordpress.org/support/users/blong/)
 * (@blong)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/adding-nextprevious-links/#post-1734122)
 * Thank you so much! That document gave me exactly what I was looking for!

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