• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

No Logo in Chrome displays error

spazl

Chevereto Member
Hi there

How do i fix the Chrome issue if im not using a Logo, i just use Website Name as Title of website it works in Firefox, but chrome displays just a X like a missing image...does not display the text or title of the website, also internet explorer display the Favorite icon....why all 3 different browsers display other stuff each how do i fix it so all browsers display just the Title of the website or the NAME...i do not want to use a logo...
 
Remove the logo from the app/themes/Peafowl/header.php file.
 
okey i was trouble shooting all sorts of way and i dont seem to get it working it still shows a x or error in its place on chrome and ie

so what do i edit here is the two codes i was tinkering with
Code:
<?php
if((int) CHV\getSetting('theme_logo_height') > 0) {
   $logo_height = (int) CHV\getSetting('theme_logo_height');
   echo '<style type="text/css">.top-bar-logo, .top-bar-logo img { height: '.$logo_height.'px; } .top-bar-logo { margin-top: -'.(int) ($logo_height/2).'px; } </style>';
}
?>

or
Code:
<div id="logo" class="top-bar-logo<?php if(is_private_gate()) { ?> text-align-left<?php } ?>"><a href="<?php echo CHV\Login::isLoggedUser() ? CHV\Login::getUser()['url'] : G\get_base_url(); ?>"><img class="replace-svg" src="<?php echo CHV\get_system_image_url(CHV\getSetting(CHV\getSetting('logo_vector_enable') ? 'logo_vector' : 'logo_image')); ?>" alt="<?php echo CHV\getSetting('website_name'); ?>"></a></div>

i still like to keep the settings where the it goes to the users profile when logged in and etc just so it only displays TEXT the site name what i have in the website setting in admin.
 
i dont seem to get it working sorry... i remove the dive and the class and id it moves to the left a little but thats not the problem it still shows random stuff i think im just gonna hardcode the Text into it, also a little off topic but do you think it is possible to optimize the images so we safe bandwidth and get better google page speed?

But to just add i fixed it by just hard-coding it, that works for me people can go to they account from the profile button anyways
 
Last edited:
Back
Top