phegman
Forum Replies Created
-
Forum: Reviews
In reply to: [Laravel DD for Wordpress] Yes pleaseDidn’t know you were married, congrats mate! And glad I could help keep it intact!
Forum: Themes and Templates
In reply to: [Blue Scenery] SliderYou 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.www.ads-software.com/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
In reply to: [Blue Scenery] Name at top of screenThere 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.www.ads-software.com/Child_Themes
Once you create a child theme you can target the title by using #title in your CSS.Forum: Themes and Templates
In reply to: [Blue Scenery] Site doesn't respondTry 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
In reply to: [Blue Scenery] Comments options?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
In reply to: [Blue Scenery] Comments options?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
In reply to: [Blue Scenery] LOGO IN HeaderYes 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.www.ads-software.com/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.
Update just went live, so this should be fixed now.
Forum: Themes and Templates
In reply to: [Blue Scenery] Fatal ErrorHmm 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?
I submitted an update that should fix this issue about a week ago so hopefully that will get approved soon. Sorry about that bug.
Good to know! Thanks for the detailed description of the bug! I’ll work on a fix in the next couple of days…