• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Svg logo

Status
Not open for further replies.

Micka

Chevereto Member
Hi.
Problem with .svg file, I don't have my logo on the .SVG format.

I have tried to convert with Inkscape, no success...
 
Yes but the new update need an .SVG file so I can't set a logo on my site...

Idk why there is a setting to set a vector file...
 
I'm having the same problem the vector file that worked before the update doesn't work now with the update.
Thanks
Agreater
 
Seems that you don't care about the vector logo, ok. I will add a setting to enable/disable the use of a vector logo.

Now, why we use vector logo? This explains it very well:
Bitmap_VS_SVG_(tr).png


And that matters in modern mobile devices and high density screens (retina displays). Most likely you don't notice but is there. But anyway, don't worry I will add that setting so you won't be forced to use SVG logo.
 
Ha okay thanks.

I'm agree, the SVG file is usefull, but I don't know how to create it or convert from .PNG files. :(

I will wait an update. ;)
 
You can bypass the SVG in the header file by editing /public_html/app/themes/Peafowl/header.php on line 41

Change the SRC="" to the url of your old logo.

Example on how to bypass SVG logo:

Original Code:
Code:
<div id="logo" class="top-bar-logo"><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\get_chv_setting(CHV\get_chv_setting('logo_vector_enable') ? 'logo_vector' : 'logo_image')); ?>" alt="<?php echo CHV\get_chv_setting('website_name'); ?>"></a></div>

Altered Code:
Code:
<div id="logo" class="top-bar-logo"><a href="<?php echo G\get_base_url(); ?>"><img class="replace-svg" src="<?php echo G\Render\get_theme_file_url("theme-img/sp-logo-140x30.png"); ?>" alt="YourWebsite.com"></a></div>
 
Status
Not open for further replies.
Back
Top