Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #442161

    Hi,

    I begin with worpress and code …
    I would like to see appear the title of my website and the tagline instead of the logo, I will create a child theme could you tell me what part of code register? and where to put it ? (I know it’s in the header.php but where, what line ? )
    Thank you in advance.

    Have a good day/night :)

    #442975

    Hey morganeL!

    Please add following code to Functions.php file of your child theme

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= "Company Name";
        return $sub;
    }

    Best regards,
    Yigit

    #443001
    This reply has been marked as private.
    #443007

    Hi!

    Can you please post the link to your website? We may need a temporary admin login as well

    Cheers!
    Yigit

    #443012
    This reply has been marked as private.
    #443013
    This reply has been marked as private.
    #443016

    Hi!

    Please post a temporary admin login here privately.

    Cheers!
    Yigit

    #443026
    This reply has been marked as private.
    #443046

    Hey!

    Please review your website now. Logo had to be removed and i added a custom CSS code to Style.css file of your child theme to remove it.

    Cheers!
    Yigit

    #443057

    Hi!

    Thank you for your work Yigit!
    One last question, if I want to change the font size , I do it in the style.css file ?

    thank you very much for your help!

    Morgane.

    #443063

    Hey Morgane!

    Yes, you can add custom CSS code to Style.css file of your child to make adjustments

    span.subtext {
      color: red;
      font-size: 20px;
    }

    Best regards,
    Yigit

    #443079

    Thank you Yigit, but I have another problem.. I have a error in apparence theme : ERROR: The model is missing.
    And I lost all my settings..

    #443083

    Hi!

    I fixed it. Please add your code below this line – “/*Add your own styles here:*/” and do not adjust the lines above.

    Regards,
    Yigit

    #443089

    Yigit!
    Do not take into account my last message , I do not know why or how but it works normally again … Sorry for inconvenience !

    best regards and have a good day!! ;)

    #443099

    Hi!

    I think you missed this one – https://kriesi.at/support/topic/add-site-title-and-tagline-in-enfold-child-theme/#post-443083 :)
    You are welcome, we are always happy to help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Cheers!
    Yigit

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Add site title and tagline in enfold child theme’ is closed to new replies.