• Resolved demu97

    (@demu97)


    hello everyone,
    I’m new to the forum, but not with WP, however I’ve never written code or edited it before.

    My “problem” is that I’d like to insert my name on the footer heading (or signature I’m not sure abouth transation) from :

    <nomesito> © 2015. All Rights Reserved.
    Powered by WordPress. Theme by Alx.

    into:

    <nomesito> © 2015. All Rights Reserved.
    Developed by Demu97 , powered by WordPress. Theme by Alx.

    how can I do?
    thancks to all.
    Simone

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi Simone. Welcome to the Hueman forum. In Theme Options > Footer > Footer Copyright, enter the following:

    © 2015. All rights reserved.<span style=”font-weight:bold;float:left;”>Developed by Demu97&nbsp;&nbsp;</span>

    If you don’t have the copyright symbol, enter & followed by #169;

    It will look like this after you save it; the &nbsp; codes are changed to spaces:

    © 2015. All rights reserved.<br><span style="font-weight:bold;float:left;">Developed by Demu97  </span>
    Thread Starter demu97

    (@demu97)

    thanks for responding,
    but if I write © 2015. All rights reserved.<span style=”font-weight:bold;float:left;”>Developed by Demu97  </span>

    it visualize it on the footer as verbatim string, like it is not recognizing the html tag and visualize them.

    Can you post a link to your site?

    Thread Starter demu97

    (@demu97)

    I’so sorry but now I’m working in local

    Which version of the theme are you using?

    Thread Starter demu97

    (@demu97)

    the last one I’ve downloaded it from http://alxmedia.se/ a week ago.
    It works correct for all,
    the only problem is that I can’t get my name on a new line as following

    Developed by Demu97
    <sitename> © 2015. All Rights Reserved.

    I’m only able to do in this way
    <sitename> © 2015. All Rights Reserved. Developed by Demu97

    That’s because if I insert some tag as you said, it visualize it as normal text.

    That’s due to a change made previously in that version that strips out the html tags. Copy footer.php from the parent theme to a child theme. Then near the bottom of that file you’ll see this:

    <div id="copyright">
        <?php if ( ot_get_option( 'copyright' ) ): ?>
            <p><?php echo esc_attr( ot_get_option( 'copyright' ) ); ?></p>

    Change the third line to this:

    <p><?php echo ot_get_option( 'copyright' ); ?></p>

    That should fix it.

    If you’re not currently using a child theme:
    1. In Theme Options click the Help tab in the upper righthand corner.
    2. One of the options in the list is to download a sample child theme. This downloads the theme zip file to your local computer.
    3. Install the new theme in your Admin panel by selecting Add New > Upload Theme > Choose File, then select the zip file you downloaded.
    4. Activate the child theme.
    You’ll now have a pre-configured child theme with a style.css file and functions.php file to which you can add customizations.

    Thread Starter demu97

    (@demu97)

    thanks so much

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘footer developer signature Hueman’ is closed to new replies.