Jump to content
  • 0

Jak podlinkować numer telefonu w nawigacji i stopce?


Kst

Question

8 answers to this question

Recommended Posts

  • 0

Może pytanie jest głupie, ale w którym miejscu mam to dodać jeśli skrypt wygląda tak:

 

<div id="_desktop_contact_link">
  <div id="contact-link">
    {if $contact_infos.phone}
      {* [1][/1] is for a HTML tag. *}
      {l
        s='Call us: [1]%phone%[/1]'
        sprintf=[
          '[1]' => '<span>',
          '[/1]' => '</span>',
         '%phone%' => $contact_infos.phone
        ]
        d='Shop.Theme.Global'
      }
    {else}
      <a href="{$urls.pages.contact}">{l s='Contact us' d='Shop.Theme.Global'}</a>
    {/if}
  </div>
</div>
 

Link to comment
Share on other sites

  • 0

To:

  {l
        s='Call us: [1]%phone%[/1]'
        sprintf=[
          '[1]' => '<span>',
          '[/1]' => '</span>',
         '%phone%' => $contact_infos.phone
        ]
        d='Shop.Theme.Global'
      }

zamień na

  <a href="tel:{$contact_infos.phone}">{l
        s='Call us: [1]%phone%[/1]'
        sprintf=[
          '[1]' => '<span>',
          '[/1]' => '</span>',
         '%phone%' => $contact_infos.phone
        ]
        d='Shop.Theme.Global'
      }
</a>

 

Link to comment
Share on other sites

  • 0

Po podmianie wyszedł błąd Fatal error: Uncaught --> Smarty Compiler: Syntax error in template "module:module:pscontactinfonav.tpl" on line 40 "<a href="{$urls.pages.contact}">{l s='Contact us' d='Shop.Theme.Global'}</a>" - Unexpected "/" <-- thrown in

Link to comment
Share on other sites

  • 0
1 hour ago, Kst said:

Po podmianie wyszedł błąd Fatal error: Uncaught --> Smarty Compiler: Syntax error in template "module:module:pscontactinfonav.tpl" on line 40 "<a href="{$urls.pages.contact}">{l s='Contact us' d='Shop.Theme.Global'}</a>" - Unexpected "/" <-- thrown in

Zobacz czy przy okazji nie usunąłeś lub zmieniłeś czegoś więcej ponieważ błąd wskazuje następny warunek a w nim nie robisz żadnych zmian.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...