Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Frederic Serva

    (@fredserva)

    It’s not a ‘Birds Author Box’ issue…

    In the Theme Options panel of your theme, fastnews, there is a textarea where you can change the content of your footer.
    On the frontend, the theme not only displays this text but also everything that has been added by plugins that use the add_filter method to display their own code after the post content is loaded.

    So…
    Don’t use this textarea anymore.
    Open the file named footer.php in your theme directory (wp-content/themes/fastnews-1.0.6).
    Go to line 105 and change

    <div class="wrapper text-center" id="copyright"><?php echo $kopa_theme_options_copyright; ?></div>

    with

    <div class="wrapper text-center" id="copyright">Copyright ? <?php echo date("Y"); ?> . All Rights Reserved. Seastrata Energy Ltd</div>

    Save the file.
    That should do the trick with Author Box and other plugins.

    Plugin Author Frederic Serva

    (@fredserva)

    In addition, you could change the css of the box to fit your theme.
    Open authorbox_front.css in the folder ‘public/css’ of the plugin.
    Find line 100 (.author_box_tabs_navigation li)
    Add a new line after this one and type:

    list-style: none;

    Go to line 86 and replace

    margin-bottom: -47px;

    with

    margin-bottom: -48px;

    Thread Starter Seastrata

    (@seastrata)

    Thanks Frederic, that has solved the problem.
    I am just learning this stuff so I appreciate your help.
    Dennis.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Author Box apprearing twice’ is closed to new replies.