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.
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 { } ?> This will solve your issue.
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.