Jump to content

ajnglagla

Members
  • Posts

    68
  • Joined

  • Last visited

5 Followers

About ajnglagla

  • Birthday 12/28/1985

Profile Information

  • Activity
    Freelancer

Recent Profile Visitors

4,050,918 profile views

ajnglagla's Achievements

Newbie

Newbie (1/14)

3

Reputation

2

Community Answers

  1. Hello, I have designed a website with seperated login and register page. And i want to implement my design to prestashop. This is my sign up pop up page; Now its static, but i want to implement it, and make it work. When i copy the code into the popup; <form action="index.php?controller=authentication&back=my-account" method="post" id="create-account_form" class="std"> <fieldset> <span class="sun-mail-heading">E-mail adresin ile üye ol</span> <div class="form_content clearfix"> <div class="error" id="create_account_error" style="display:none"></div> <p class="text"> <label for="email_create">{l s='Email address'}</label> <span><input type="text" id="email_create" name="email_create" onblur="if(this.value=='')this.value=this.defaultValue;" onfocus="if(this.value==this.defaultValue)this.value='';" value="[email protected]" class="account_input" /></span> </p> <p class="submit"> {if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if} <input type="submit" id="SubmitCreate" name="SubmitCreate" class="button_large" value="Üye ol" /> <input type="hidden" class="hidden" name="SubmitCreate" value="{l s='Create an account'}" /> </p> </div> </fieldset> </form> I am having error; when i try to complete the registration.
  2. Last time i made my "memory_limit = 4290M " Php info same as my php.ini max_execution_time 1000 1000 max_file_uploads 20 20 max_input_nesting_level 64 64 max_input_time 600 600 max_input_vars 5700 5700 Does these "max_execution_time" ,"max_input_time", "memory_limit" and "max_input_vars" values has a TOP limit?
  3. I set my php.ini like that; max_execution_time = 1000; max_input_time = 600; memory_limit = 2290M; max_input_vars = 5700; But still same error. :/
  4. Hello, I took "503 Service Temporarily Unavailable" error when i try to save translations (after editing). Is there anyone know the solution / reason?
  5. and also you may need to LANG ISO CODE after your product id. (ex: "473-tr")
  6. if you want to see the prices right, this code {$product->getPrice(false, $smarty.const.NULL, $priceDisplayPrecision)} must be chaged to {$product->getPrice(true, $smarty.const.NULL, $priceDisplayPrecision)}
  7. Bu şekilde sorarsan cevap alman çok zor. Birinin oturup bu kodları yazması lazım. Onun yerine daha kolay ve yararlı olan yapman ve öğrenmen gereken bazı adımlar var. Eğer modül içine yazacak isen ki bu konuda nasıl modül oluşturacağına dair çok güzel ve açıklayıcı dersler var onlar ile öncelikle modül yazmayı öğrenmen senin çok büyük yararına olacaktır. Bunu yaptıktan sonra modülü nasıl istediğin yerde göstereceksin, hook ları öğreneceksin. Yukarıdaki hesaplamayı yapmak zaten kolay. Geriye hesapladığın fiyatı nasıl asıl fiyatın üzerine sorunsuz bir şekilde yazabileceğin kalıyor. Bunu sandığın gibi statik bir şekilde yapamazsın. Oraya yazacağın fiyatı yazmak ile kalmayıp sepete eklerken de hata vermeyecek şekilde assign etmen lazım.
  8. Biraz daha detay verebilir misin? Hangi versiyonu kullanıyorsun ve ürün fiyatını neye göre güncellemek istiyorsun açık açık yazabilirsen eminim yardım alma ihtimalin artacaktır. Olmadı ingilizceye çevirip sorarız, Vekia yada biri bakar mutlaka biz çözemez isek.
  9. I did like that; but i have a problem. How can i show a text if one product is not belong any of these categories? I have added "else" but its pringting 3 times {foreach from=$product->moi_categories_names item=moi_category_name} {if $moi_category_name=="Category A"} This product belong to Category A and {elseif $moi_category_name=="Category B"} This product belong to Category B and {elseif $moi_category_name=="Category C"} This product belong to Category C and {/if} {/foreach}
×
×
  • Create New...