bruceluxton
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Illdy] home page slideshowNo problem!
Forum: Themes and Templates
In reply to: [Illdy] home page slideshowI’ve tried this out as an example by using the meta slider plugin. Assuming you have a child theme, you can then create your own version of header.php (start by copying the illdy header.php). Then you can add the shortcode metaslider gives you eg: echo do_shortcode(“[metaslider id=109]” into the bottom of your header.php.
Then a simple way to completely hide the single image that illdy loads would be to add some css like this to your child themes style.css file:
.site-header {
display: none;
}Hi, as you are not using a child theme and it’s OK on the other machine all I can suggest is you clear all cache/history etc from your browser and try again.
Forum: Themes and Templates
In reply to: [Nisarg] Header Image Slider PHP code locationHi, did you have any luck sorting this?
Forum: Themes and Templates
In reply to: [Nisarg] How build a page without sidebar ?I would suggest you create a child theme of your own based on Nisarg. Then you can create a new php file, I called mine nosidebar-page.php. This will be a copy of page.php but with the get_sidebar()( ex. //get_sidebar() line deleted. Then in your dashboard you can choose which pages have no sidebar.
I had this problem, I was using a child theme not sure if you are to. If you are then there was a change to the header file in the Nisarg theme which caused this problem for me. You would need to update your child theme to use the new header.php