Tan Danışmanlık Posted January 5, 2021 Share Posted January 5, 2021 Merhabalar; Ödemeeye geç ekranında ekteki kodu düzenleyerek misafir girişi ile oturum aç alanlarının yerini değiştirdim. Fakat müşteri yanlış şifre girdiğinde login dosyasını 2. sekmede algılayarak hatayı misafir girişinde vermeye çalışıyor. bu sebeple eğer şifreyi hatalı girerse hatayı ilk sekmede vermesini nasıl sağlayabiliriz? Delirmek üzereyim yardımcı olursanız sevinrim. Yani durum şu ödemeye geç dendiğinde misafir olarak sipariş verme açıksa önce misafir olarak sipariş ver sonra üye girişi yap olarak iki sekmede veriyor. bu hali ile tüm alanlar çalışmasına rağmen 2. tarafa atıyor eğer {render file='checkout/_partials/login-form.tpl' ui=$login_form} ile {render file='checkout/_partials/customer-form.tpl' ui=$register_form guest_allowed=$guest_allowed} yerlerini değiştirirsem sıkıntı yok fakat tüm aşamalar o durumda terse dönüyor. Giriş yap ekranı misafir olarak sipariş ver diğer alansa tam tersi oluyor. Yani misafir olarak sipariş ver ekranı açıkken şifreyi birisi hatalı girerse 2. sekmeye gitmeden aynı sekme içerisinde hata vermesini sağlamam lazım. bu konuyla ilgili 3 arkadaş 1 haftadır çalışıyoruz. Fakat çözemedik. Müşterimde ısrarla ilk önce giriş yap ekranının gelmesini istiyor Ne olur yardım edin delirmek üzereyim site monohomestore.com sepete ekle diyip herhangibir hatalı kullanıcı adı şifre denerseniz görürsünüz. İlginiz ve desteğiniz için şimdiden teşekkürler {extends file='checkout/_partials/steps/checkout-step.tpl'} {block name='step_content'} {if $customer.is_logged && !$customer.is_guest} <p class="identity"> {* [1][/1] is for a HTML tag. *} {l s='Connected as [1]%firstname% %lastname%[/1].' d='Shop.Theme.Customeraccount' sprintf=[ '[1]' => "<a href='{$urls.pages.identity}'>", '[/1]' => "</a>", '%firstname%' => $customer.firstname, '%lastname%' => $customer.lastname ] } </p> <p> {* [1][/1] is for a HTML tag. *} {l s='Not you? [1]Log out[/1]' d='Shop.Theme.Customeraccount' sprintf=[ '[1]' => "<a href='{$urls.actions.logout}'>", '[/1]' => "</a>" ] } </p> {if !isset($empty_cart_on_logout) || $empty_cart_on_logout} <p class="alert alert-warning"><small>{l s='If you sign out now, your cart will be emptied.' d='Shop.Theme.Checkout'}</small></p> {/if} {else} <style>.create-account-links, .create-account-links + .form-group { display: none; }</style> <ul class="nav nav-inline"> </ul> <div class="tab-content"> <div class="tab-content"> </div> <div class="tab-pane {if !$show_login_form}active{/if}" id="checkout-login-form" role="tabpanel"> {render file='checkout/_partials/login-form.tpl' ui=$login_form} <li class="nav-item"> <a href="https://monohomestore.com/oturum-ac?create_account=1" class="nav-link" aria-controls="checkout-register-form" {if $show_login_form} aria-selected="true"{/if} > Yeni Ãœyelik OluÅŸtur </a> </li> <li style="list-style: none;"><p>Dilerseniz üye olmadan kolay ve hızlıca alışveriÅŸ yapabilirsiniz</p></li> <li class="nav-item"> <a class="nav-link {if $show_login_form}active{/if}" data-toggle="tab" href="#checkout-guest-form" role="tab" aria-controls="checkout-guest-form" {if $show_login_form} aria-selected="true"{/if} > {if $guest_allowed} {l s='Order as a guest' d='Shop.Theme.Checkout'} {else} {l s='Create an account' d='Shop.Theme.Customeraccount'} {/if} </a> </li> </div> <div class="tab-pane {if $show_login_form}active{/if}" id="checkout-guest-form" role="tabpanel"> {render file='checkout/_partials/customer-form.tpl' ui=$register_form guest_allowed=$guest_allowed} <li class="nav-item"> <a class="nav-link {if !$show_login_form}active{/if}" href="https://monohomestore.com/sipari%C5%9F%20vermi%C5%9F%20olmal%C4%B1s%C4%B1n%C4%B1z" role="tab" aria-controls="checkout-guest-form" {if !$show_login_form} aria-selected="true"{/if} > {l s='Sign in' d='Shop.Theme.Actions'} </a> </li> </div> </div> {/if} {/block} Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now