Remove footer

Discussion in 'BizWay WordPress Theme' started by vinylrevolution, Dec 11, 2012.

Thread Status:
Not open for further replies.
  1. vinylrevolution

    vinylrevolution New Member

    Joined:
    Dec 10, 2012
    Messages:
    29
    Likes Received:
    0
    I would like to change the name of the 'social links' part of the footer added in the PRO upgrade. See the image below. I want it to say 'follow us' the way it does in the footer widget. See image below:

    Picture 1.png

    Also how can I remove one of the widgets at the bottom (so I only have three) but keep the widgets evenly spaced. If I remove one widget than instead of having evenly spaced widgets along the bottom it is layed out as if there were four but one is missing. I would like an evenly spaced 3-widget area. Is this possible?
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    For first issue open
    footer.php file and follow instructions shown in image.

    [​IMG]


    For second issue, Open sidebar-footer.php file and replace it with the code given below.

    Code:
    <div class="grid_sub_8 sub_alpha">
            <div class="footer_widget">
            <?php if (is_active_sidebar('first-footer-widget-area')) : ?>
                <?php dynamic_sidebar('first-footer-widget-area'); ?>
            <?php else : ?>
              <h6>Solutions for you</h6>
              <ul>
                <li><a href="#">iaculis arcu aliquam sit</a></li>
                <li><a href="#">WordPress.org</a></li>
                <li><a href="#">Inkthemes.com</a></li>
              </ul>   
          <?php endif; ?>
            </div>
          </div>
          <div class="grid_sub_8 sub_middle">
            <div class="footer_widget">
            <?php if (is_active_sidebar('second-footer-widget-area')) : ?>
                <?php dynamic_sidebar('second-footer-widget-area'); ?>
            <?php else : ?>
              <h6>Setting Up Footer</h6>
      <p>Footer is widgetized.To setup the footer,drag the required Widgets <br/>in Appearance -> Widgets Tab in the First, Second, Third or Fourth Footer Widget Areas.<br/></p>
             
            <?php endif; ?>
            </div>
          </div>
       
            <div class="grid_sub_8 sub_omega">
              <div class="footer_widget last">
              <?php if (is_active_sidebar('fourth-footer-widget-area')) : ?>
                <?php dynamic_sidebar('fourth-footer-widget-area'); ?>
            <?php else : ?>
                <h6>Business Contact Address</h6>
                <p>Member Area / Lifetime access  theis
    Theme Download / Lifetime support
    Video Documentation</p>
    <?php endif; ?>
              </div>
            </div>

    From now your Third footer widget area will not work.
    You can use First, Second and fourth footer widget area to add widgets.
     
  3. vinylrevolution

    vinylrevolution New Member

    Joined:
    Dec 10, 2012
    Messages:
    29
    Likes Received:
    0
    Works great. Thanks!
     
Thread Status:
Not open for further replies.

Share This Page