Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #474583

    Hello
    How do I replace the Enfold Logo with the name of my website using text only.
    I have searched but cant find the solution.
    Also, On the Easy Slider, the Image caption and text, how do I make the backgrounds transparent rather than the translucent dark grey. Its on my front page.
    Thank you
    Marianne

    • This topic was modified 9 years, 4 months ago by HiMarianne.
    #474600

    Hey Marianne!

    Please try to remove the logo of the theme options, and then it will stay the text of the site title!

    Let me know if that helped

    Cheers!
    Basilis

    #474606

    Thank you.
    Where in theme options do I do that? I only see and option to upload a logo.
    Also, On the Easy Slider, the Image caption and text, how do I make the backgrounds transparent rather than the translucent dark grey. Its on my front page.
    Thanks
    Marianne

    #474618

    add_filter(‘avf_logo_final_output’, ‘avia_remove_default_logo’, 10, 6);
    function avia_remove_default_logo($logo, $use_image, $headline_type, $sub, $alt, $link){
    return ”;
    }
    I just put the above code in the php functions as stated by Dude and it removed the logo, it is now blank.
    How do I replace it with text?
    Thanks
    Marianne

    #474941

    Hey!

    Please add following code to Functions.php file in Appearance > Editor and adjust as needed

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

    Cheers!
    Yigit

    #477983

    Hello
    As soon as I entered the code above, I was no longer able to access my site or the back end, or log in for that matter.
    Thanks
    Marianne

    #478049

    Hello
    I contacted the ISP and they reset the file permissions. However when I go in the back end I cant activate the child theme.
    Help please.
    Thank you
    Marianne

    #478068

    Hi!

    Please provide us with FTP Access, so we can solve that issue for you.
    It must be something with the code posted.

    Best regards,
    Basilis

    #478155

    Hello
    The info you requested is below.
    Thank you
    Marianne

    #478161

    Hello
    The actual site name is wellnowfancythat.com, which is hosted under the name previously given.
    Thanks

    #478200

    Hi!

    I am not able to login to your WordPress dashboard and FTP access is not working. Can you please check them once again? WordPress admin login would be enough

    Best regards,
    Yigit

    #478341

    As requested
    Thank you

    #478343

    Hey!

    When i go to WordPress login screen i am getting “Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.”. I will ask my teammates to check your website.

    Best regards,
    Yigit

    #478454

    Hello
    I contacted my ISP and it sounded like the fix was too complicated for me so installed WP again.
    I uploaded Enfold and child theme which I downloaded somemonths ago.
    How do I update them?
    Thank you

    • This reply was modified 9 years, 4 months ago by HiMarianne.
    #478457

    Hey!

    You should go to ThemeForest and login with the account you used to purchase Enfold and then go to Downloads section to download the latest version – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Yigit

    #478477

    Thank you I successfully update the version to 3.2.3 The child theme is version 1
    So back to the original question.
    How do I replace the Enfold logo with text spelling out my website name. Also be able to adjust the text size and color.
    Presumably I shouldn’t use the code that you provided above.
    Thank you
    Marianne

    • This reply was modified 9 years, 4 months ago by HiMarianne.
    #478638

    Hi!

    I have made the changes for you. You can go to Appearance > Editor and open functions.php file of your child theme to change the text. Please review your website now.

    Cheers!
    Yigit

    #478644

    Hey Yigit
    Thank you very much. I appreciate it.
    Can I make the text a little bigger? And keep the same color as the menus.
    Thanks again

    • This reply was modified 9 years, 4 months ago by HiMarianne.
    #478648

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

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

    Cheers!
    Yigit

Viewing 19 posts - 1 through 19 (of 19 total)
  • You must be logged in to reply to this topic.