Title: phegman's Replies | WordPress.org

---

# phegman

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Laravel DD for Wordpress] Yes please](https://wordpress.org/support/topic/yes-please/)
 *  Plugin Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/yes-please/#post-10919633)
 * Didn’t know you were married, congrats mate! And glad I could help keep it intact!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Slider](https://wordpress.org/support/topic/slider-165/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/slider-165/#post-6573616)
 * You can, but you will have to edit some of the code as there is no user interface
   built in. To do this you should first create a child theme [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 * Once you do that if you go into header.php and remove line 39 <?php if(is_front_page()){?
   > then the slider will show on all pages
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Name at top of screen](https://wordpress.org/support/topic/name-at-top-of-screen/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/name-at-top-of-screen/#post-6611042)
 * There is no user interface built in to change this so you will need to use CSS
   to change this. First you should create a child theme though. [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
   
   Once you create a child theme you can target the title by using #title in your
   CSS.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Site doesn't respond](https://wordpress.org/support/topic/site-doesnt-respond/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/site-doesnt-respond/#post-6604873)
 * Try logging into your admin page and then on the left-hand side of the page click
   media->add new. Upload all of the images you would like to use for the slider.
   Then go back to main admin page and click Appearance->Customize and on the left
   side of the page should be a section for ‘Image Slider Photos and Settings’ click
   this and then click ‘Change Image’ and choose one of the images you just uploaded.
   Do this for all of the sliders you would like and it should work.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Comments options?](https://wordpress.org/support/topic/comments-options-1/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/comments-options-1/#post-6370985)
 * Unfortunately not built in right now. Something I forgot to do and will be added
   in the next update. For now you would have to create a child theme header.php
   and put an anchor tag around the title.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Comments options?](https://wordpress.org/support/topic/comments-options-1/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/comments-options-1/#post-6370925)
 * You should see a comment box for any blog post. It does not support comments 
   on “pages”. If you are still not seeing it take a look at your settings in the
   dashboard under settings->discussion
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] LOGO IN Header](https://wordpress.org/support/topic/logo-in-header-18/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [11 years ago](https://wordpress.org/support/topic/logo-in-header-18/#post-6311237)
 * Yes you can do this with some simple html and css. First you need to create a
   child theme first so when this theme gets updated you don’t lose your changes.
 * [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 * Then add the header.php file into the child theme directory…
 * Then change this code in header.php from
 *     ```
       <div id="title-wrap">
            <h1 id="title">
                 <?php esc_attr(bloginfo('name')); ?>
            </h1>
            <h2 id="description">
                 <?php esc_attr(bloginfo('description')); ?>
            </h2>
       </div>
       ```
   
 * to
 *     ```
       <div id="title-wrap">
                 <img src="source of your image" alt="logo" class="logo" />
       </div>
       ```
   
 * You can then add a .logo class to your style.css in the child theme director 
   to change the size of the image if you need to.
 * I may update the theme at some point so this can be easily done through the customizer.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Images selected for Image slider not automatically being cropped](https://wordpress.org/support/topic/images-selected-for-image-slider-not-automatically-being-cropped/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [11 years ago](https://wordpress.org/support/topic/images-selected-for-image-slider-not-automatically-being-cropped/#post-6187771)
 * Update just went live, so this should be fixed now.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Fatal Error](https://wordpress.org/support/topic/fatal-error-1678/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [11 years ago](https://wordpress.org/support/topic/fatal-error-1678/#post-6225361)
 * Hmm I am having a hard time recreating the error you are getting…Have you selected
   images for the slider? Or does it not even let you do that?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Images selected for Image slider not automatically being cropped](https://wordpress.org/support/topic/images-selected-for-image-slider-not-automatically-being-cropped/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [11 years ago](https://wordpress.org/support/topic/images-selected-for-image-slider-not-automatically-being-cropped/#post-6187763)
 * I submitted an update that should fix this issue about a week ago so hopefully
   that will get approved soon. Sorry about that bug.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blue Scenery] Images selected for Image slider not automatically being cropped](https://wordpress.org/support/topic/images-selected-for-image-slider-not-automatically-being-cropped/)
 *  Theme Author [phegman](https://wordpress.org/support/users/phegman/)
 * (@phegman)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/images-selected-for-image-slider-not-automatically-being-cropped/#post-6187711)
 * Good to know! Thanks for the detailed description of the bug! I’ll work on a 
   fix in the next couple of days…

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