Jump to content
  • 0

Blok podkategorii.


Ortez

Question

Witam,

nie mogę usunąć bloku podkategorii. Tzn nad listą produktów wyświetlają się kategorie i ich zdjęcia. Próbowałem w Konfigurator szablonu i zaznaczyłem "wyświetlaj podkategorie" na nie. I dalej jest ten blok. Tak samo wyłączyłem zapisywanie do newslettera i dalej w formularzu jest widoczny. Wiecie może w czym jest problem? strona: http://www.herbaway.se

Link to comment
Share on other sites

16 answers to this question

Recommended Posts

  • 0

Wyczyść cache przeglądarki, bo ja tych pól w formularzu rejestracji klienta nie widzę.

Ten szwedzki to papuaski język :) ledwo trafiłem do tego formularza.

Wyczyściłem, podczas rejestracji konta nie ma tych pól lecz jak się zarejestrujesz i wejdziesz w swoje konto masz tam zakładkę "Mina personlig information" czyli po polsku "moje dane osobiste" to tam dalej te dwie opcje są do zaznaczenia?

Link to comment
Share on other sites

  • 0

A w Preferencje -> Klienci masz ustawione na NIE newsletter i listę wysyłkową?

Jeśli tak masz, a dalej wyświetla, to szablon masz lekko wybrakowany.

W templatce identity.tpl powinny być warunki na te pola.

Tak to powinno wyglądać:

                {if isset($newsletter) && $newsletter}
                    <div class="checkbox">
                        <label for="newsletter">
                            <input type="checkbox" id="newsletter" name="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == 1} checked="checked"{/if}/>
                            {l s='Sign up for our newsletter!'}
                            {if isset($required_fields) && array_key_exists('newsletter', $field_required)}
                              <sup> *</sup>
                            {/if}
                        </label>
                    </div>
                {/if}
                {if isset($optin) && $optin}
                    <div class="checkbox">
                        <label for="optin">
                            <input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) && $smarty.post.optin == 1} checked="checked"{/if}/>
                            {l s='Receive special offers from our partners!'}
                            {if isset($required_fields) && array_key_exists('optin', $field_required)}
                              <sup> *</sup>
                            {/if}
                        </label>
                    </div>
                {/if}
Link to comment
Share on other sites

  • 0

Kodu nie dodawaj, tylko odszukaj blok zaczynający się od:
                    <div class="checkbox">
                        <label for="newsletter">

i zamknij go w warunek:

{if isset($newsletter) && $newsletter}
....tu blok...

{/if}

 

I z drugim to samo, tylko warunek:

{if isset($optin) && $optin}

....tu blok...

{/if}

Link to comment
Share on other sites

  • 0

Kodu nie dodawaj, tylko odszukaj blok zaczynający się od:

                    <div class="checkbox">

                        <label for="newsletter">

i zamknij go w warunek:

{if isset($newsletter) && $newsletter}

....tu blok...

{/if}

 

I z drugim to samo, tylko warunek:

{if isset($optin) && $optin}

....tu blok...

{/if}

Rozumiem, zrobiłem tak i zniknęła mi opcja ofert od partnerów lecz newsletter dalej został?

Link to comment
Share on other sites

  • 0

Wklejam kod jak jest zrobione:

 

                 {if isset($newsletter) && $newsletter}
 
                    <div class="checkbox">
 
                        <label for="newsletter">
 
                            <input type="checkbox" id="newsletter" name="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == 1} checked="checked"{/if}/>
 
                            {l s='Sign up for our newsletter!'}
{if isset($required_fields) && array_key_exists('newsletter', $field_required)}
                              <sup> *</sup>
                            {/if}
                        </label>
                    </div>
{/if}
 
{if isset($optin) && $optin}
 
                    <div class="checkbox">
 
                        <label for="optin">
 
                            <input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) && $smarty.post.optin == 1} checked="checked"{/if}/>
 
                            {l s='Receive special offers from our partners!'}
{if isset($required_fields) && array_key_exists('optin', $field_required)}
                              <sup> *</sup>
                            {/if}
                        </label>
 
                    </div>
                {/if}
Link to comment
Share on other sites

  • 0

A jak zakomentujesz blok, czyli:

             <!-- {if isset($newsletter) && $newsletter}
                    <div class="checkbox">
                        <label for="newsletter">
                            <input type="checkbox" id="newsletter" name="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == 1} checked="checked"{/if}/>
                            {l s='Sign up for our newsletter!'}
                            {if isset($required_fields) && array_key_exists('newsletter', $field_required)}
                              <sup> *</sup>
                            {/if}
                        </label>
                    </div>
                {/if} -->

to też się wyświetla?

Dziurawca masz ten szablon :(

Link to comment
Share on other sites

  • 0

A jak zakomentujesz blok, czyli:

             <!-- {if isset($newsletter) && $newsletter}
                    <div class="checkbox">
                        <label for="newsletter">
                            <input type="checkbox" id="newsletter" name="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == 1} checked="checked"{/if}/>
                            {l s='Sign up for our newsletter!'}
                            {if isset($required_fields) && array_key_exists('newsletter', $field_required)}
                              <sup> *</sup>
                            {/if}
                        </label>
                    </div>
                {/if} -->

to też się wyświetla?

Dziurawca masz ten szablon :(

Działa! No żebyś wiedział. 

 

A teraz inne pytanie, mam wrzucony moduł Theme Style Changer i tam niby jest opcja zmiany kolorów ale nie zmienia wszędzie. I nie wszystko działa. Ale to mniejsza o to już do producenta szablonu napisałem informację co myślę i gdzie mam jego szablon. Potrzebuję zmienić kolor czcionki w blokach które są wyświetlane w prawej kolumnie tak jak na 1 screenie oraz w footerze nie wszystko mi zmieniło na kolor taki jaki chciałem też screen. 

post-1094496-0-57184000-1442829387_thumb.jpg

post-1094496-0-06445800-1442829389_thumb.jpg

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...