Woodpecker Theme Social Media

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by aquay, Mar 4, 2014.

  1. aquay

    aquay Member

    Joined:
    Sep 16, 2013
    Messages:
    44
    Likes Received:
    0
    I am using the woodpecker theme for a client and want to get the social media at the bottom to show at the top instead.
    www.bakery13.com

    I've looked around but can't find an area I would do that.

    Please help.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Go to the header.php file present in your theme directory and paste the code given below in place of code from line number 64 to 99 as shown in the image given below.

    Code:
    <ul>
                            <?php if (woodpecker_get_option('woodpecker_facebook') != '') { ?>
                                <li class="ftr-fb"><a href="<?php echo woodpecker_get_option('woodpecker_facebook'); ?>" target="_blank"></a></li>
                            <?php
                            } else {
                                
                            }
                            ?>
     
                            <?php if (woodpecker_get_option('woodpecker_twitter') != '') { ?>
                                <li class="ftr-tw"><a href="<?php echo woodpecker_get_option('woodpecker_twitter'); ?>" target="_blank"></a></li>
                            <?php
                            } else {
                                
                            }
                            ?>
     
                            <?php if (woodpecker_get_option('woodpecker_google') != '') { ?>
                                <li class="ftr-gp"><a href="<?php echo woodpecker_get_option('woodpecker_google'); ?>" target="_blank"></a></li>
                            <?php
                            } else {
                                
                            }
                            ?>
     
                            <?php if (woodpecker_get_option('woodpecker_rss') != '') { ?>
                                <li class="ftr-rs"><a href="<?php echo woodpecker_get_option('woodpecker_rss'); ?>" target="_blank"></a></li>
                            <?php
                            } else {
                                
                            }
                            ?>
     
                            <?php if (woodpecker_get_option('woodpecker_pinterest') != '') { ?>
                                <li class="ftr-pn"><a href="<?php echo woodpecker_get_option('woodpecker_pinterest'); ?>" target="_blank"></a></li>
                            <?php
                            } else {
                                
                            }
                            ?>
     
                                <?php if (woodpecker_get_option('woodpecker_linkedin') != '') { ?>
                                <li class="ftr-ln"><a href="<?php echo woodpecker_get_option('woodpecker_linkedin'); ?>" target="_blank"></a></li>
    <?php
    } else {
        
    }
    ?> 

    [​IMG]
    [​IMG]

    This will solve your issue.
     
  3. aquay

    aquay Member

    Joined:
    Sep 16, 2013
    Messages:
    44
    Likes Received:
    0
    I replaced the code but the social icons are still showing up on the bottom of the page.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer-social-icons {
    display: none;
    } 
    This will hide the social icon from the footer section.
     

Share This Page