• Priority: 0
  • Status: Waiting on customer
  • Theme: Alysum
  • Assigned To: Fred
  • Private: No
  • Open Date: 30.03.25, 20:19
  • Opened by: francois andrieu

Ticket #26018 - logo

hello fred

in the main page i see that there is in the code a logo alysum

class=”logo” src=”https://alysum.promokit.eu/modules/pkelements/views/img/icons/logo-alysum.svg” alt=”Securachat” width=”160” height=”25” style=”min-width:160px;width:160

how to supress it ?

Comments

Fred 31 Mar 2025, 23:19

Hi, francois.
You can remove it in the file

/modules/pkelements/views/templates/pklogo.tpl
francois andrieu 17 Apr 2025, 10:10

yes , but in this code, what code i must suppress please

{assign var="logourl" value=$shop.logo}
{if (isset($svg_logo) && ($svg_logo == 'yes'))}
{assign var="logourl" value=$svg_link.url}
{/if}
<div class="header_logo h-100 w-100">
    {if isset($page.page_name) && $page.page_name != 'product' && $page.page_name != 'category'}
    <h1 class="m-0 logo-link-wrap">
    {else}
    <div class="logo-link-wrap">
    {/if}
    <a class="header_logo_img dib" href="{$urls.base_url}" title="{$shop.name}">
        <img class="logo" src="{$logourl}" alt="{$shop.name}" width="{$logo_width}" height="{$logo_height}" style="min-width:{$logo_width}px;width:{$logo_width}px;height:{$logo_height}px;">
    </a>
  {if isset($page.page_name) && $page.page_name != 'product' && $page.page_name != 'category'}</h1>{else}</div>{/if}
</div>
Fred 17 Apr 2025, 22:49

Ok, I see now.
You have mobile template where that logo is added https://mega.nz/file/4EBSkDoa#fN9Ua5joE2JWhZK-mC79pzHPaqweExOfZ8Tvv0vb7og so just go to that template and replace the image with your logo

francois andrieu 18 Apr 2025, 01:28

yes !!!! thanks Fred !

Fred 18 Apr 2025, 14:48

You are welcome!