Title: ninebolt's Replies | WordPress.org

---

# ninebolt

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Stargazer] Show full post instead of excerpt](https://wordpress.org/support/topic/show-full-post-instead-of-excerpt-5/)
 *  [ninebolt](https://wordpress.org/support/users/ninebolt/)
 * (@ninebolt)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/show-full-post-instead-of-excerpt-5/#post-5921670)
 * Go into Appearance -> Editor.
 * On the right side, select content.php.
 * Change the following:
 *     ```
       <div <?php hybrid_attr( 'entry-summary' ); ?>>
       <?php the_excerpt(); ?>
       </div><!-- .entry-summary -->
       ```
   
 * to:
 *     ```
       <div <?php hybrid_attr( 'entry-summary' ); ?>>
       <?php the_content(); ?>
       </div><!-- .entry-summary -->
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Stargazer] Compatibility with Google Doc Embedder](https://wordpress.org/support/topic/compatibility-with-google-doc-embedder/)
 *  Thread Starter [ninebolt](https://wordpress.org/support/users/ninebolt/)
 * (@ninebolt)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/compatibility-with-google-doc-embedder/#post-6676657)
 * I figured it out! For others:
 * Go into Appearance -> Editor.
 * On the right side, select content.php.
 * Change the following:
 *     ```
       <div <?php hybrid_attr( 'entry-summary' ); ?>>
       <?php the_excerpt(); ?>
       </div><!-- .entry-summary -->
       ```
   
 * to:
 *     ```
       <div <?php hybrid_attr( 'entry-summary' ); ?>>
       <?php the_content(); ?>
       </div><!-- .entry-summary -->
       ```
   

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