• Resolved Karin Be

    (@karin-be)


    Im new at this and have som problems to change things.
    https://karinbe.se

    1. I tried to change the Cronical namn in top to my namn but it doesn′t work. I have tried in header and Theme options. Nothing I do change the namne cronical.

    2. How do I get the social media buttons to open in a new window? Do I have to write target blank somewere… and were?

    3. My mailadress is writen [email protected] in Social settings in theme options. But when I klick on the letter or email-adress it is https://[email protected] on the mail.

    I have the free version but this should work before I purcase a theme.
    I hope someone can help me. Im feeling a bit dumb ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Karin Be

    (@karin-be)

    …and suddenly after 2 weeks it works? My name is there insted of Cronical.
    Why is it taking so long for some changes and not for others? It′s like I′m working blind and don′t know if I′m doing things riht.
    Still number 2 and 3 is not solved.
    So if someone know the anser i will be glad.

    Hi,

    For second issue do following :

    Open “header.php” file into any text editor.

    Now find below line of code

    <a href="<?php echo esc_url($chronicle_theme_options['facebook_link']); ?>">

    and add target=”_blank” into anchor tag.

    Like:

    <a href="<?php echo esc_url($chronicle_theme_options['facebook_link']); ?>" target="_blank">

    Now similarly add target for other social links.

    For third issue :

    Use sanitize_email validation instead of esc_url.

    or

    open header.php into any text editor.

    Now find given below line of code:

    <?php echo esc_url($chronicle_theme_options['contact_email']); ?>

    and replace with this

    <?php echo sanitize_email($chronicle_theme_options['contact_email']); ?>

    Thanks.

    Thread Starter Karin Be

    (@karin-be)

    Thanks for the help. ??

    Hi,

    Most Welcome.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Cant change the top name, social media buttons and strange email’ is closed to new replies.