Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author eminozlem

    (@eminozlem)

    You’d go to footer.php and wrap the footer widgets with a conditional:

    <?php  if( !is_front_page() || !is_home() ) { ?>
                          <div id="widget-footer" class="clearfix row">
                            <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer1') ) : ?>
                            <?php endif; ?>
                            <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer2') ) : ?>
                            <?php endif; ?>
                            <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer3') ) : ?>
                            <?php endif; ?>
                          </div>
                          <?php } ?>

    Of course make sure you use a child theme in order not to lose your changes with future updates.
    https://codex.wordpress.org/Child_Themes
    Marking as resolved let me know if you’ve further questions

    Thread Starter domcisme

    (@domcisme)

    didn’t quite work for me (maybe as I’m using a static page as my front page)

    <?php
    global $eo_options;
    // Move footer outside #wrap if sticky footer is enabled
    if( $eo_options["sticky_footer"] == "1" ) echo "</div></div>";
    ?>
    
                    <footer role="contentinfo" id="footer">
    
                        <div id="inner-footer" class="container">
                          <hr />
                          <?php  if( !is_front_page() || !is_home() ) { ?>
                          <div id="widget-footer" class="clearfix row">
                            <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer1') ) : ?>
                            <?php endif; ?>
                            <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer2') ) : ?>
                            <?php endif; ?>
                            <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer3') ) : ?>
                            <?php endif; ?>
                          </div>
                          <?php } ?>
    
                            <nav class="clearfix">
                                <?php bones_footer_links(); // Adjust using Menus in WordPress Admin ?>
                            </nav>
    
                            <p class="pull-right<?php if ($eo_options["foot_linkback"]) echo ' authl'?>" id="copyright_foot">
                            <?php  if ($eo_options["foot_copy_right"]) 	echo $eo_options["foot_copy_right"];
    						if ($eo_options["foot_linkback"]) {
    						?>
    
                            <a href="http://eodepo.com/bootstrap-ultimate" title="Bootstrap 3 theme for WordPress" target="_blank"> Bootstrap UL</a>
                            </p><?php } // foot_linkback?>
    
                            <p class="attribution">&copy;
    						<?php if ($eo_options["foot_copy_left"]) {
    							echo $eo_options["foot_copy_left"];
    						} else {
    						 bloginfo('name');
    						}
    						 ?>
                            </p>
    
                        </div> <!-- end #inner-footer -->
    
                    </footer> <!-- end footer -->
    
    			<?php if(  $eo_options["sticky_footer"] != "1" ) { ?>  </div> <!-- end #maincnot .container --><?php  } ?> 
    
                <!--[if lt IE 7 ]>
                    <script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
                    <script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
                <![endif]-->
           <?php wp_footer(); // js scripts are inserted using this function ?>
    	</body>
    </html>

    I can at the moment go to page.php and just comment out the footer but then it’s gone for all pages.

    Theme Author eminozlem

    (@eminozlem)

    it should work. But of course I cant know what’s wrong.
    Alternatively like you said you can modify the page.php and again wrap the footer widgets with a conditional like ! is_page(42);

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘widget home page’ is closed to new replies.