Jump to content

em.pe

Members
  • Posts

    14
  • Joined

  • Last visited

em.pe's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. You must also change (global.css): #primary_block #image-block { border: #d0d1d5 solid 1px; height: 300px; width: 300px } to: #primary_block #image-block { border: #d0d1d5 solid 1px; height: auto; width: 300px }
  2. Yes, html is correct and I added it to all languages. Someone can test it?
  3. Hello, I'm trying to add delay to confirmation email: In PaymentModule.php I added something like this: '{delay}' => $carrier->delay, Of course in order_conf.html template I have {delay}. But it's not working. Someone can help me? Thank in advance.
  4. You must edit global.css (from your theme): #primary_block #image-block img#bigpic { cursor: pointer; height: 300px; width: 300px } For example: change height: 300px to height: auto I didn't change sizes for thickbox, but I display original size (without "-large"). Here is the solution: http://www.prestashop.com/forums/viewthread/59761/#261012
  5. Preferences >> Products >> Image generated by: width In Preferences >> Image set width/height and regenerate thumbinals.
  6. No, no... I know about settings in the BO. I'm trying to display (in new-products.php) last added products even if this products was added 3 months, 2 years, 10 years, 20 years ago...
  7. Thanks for reply, but I think that you don't understand me... 1. In new-products.php (not home featured). 2. Latest = not related with date added.
  8. Hello, In BO > Preferences > Products I can change the "Number of days during which the product is considered 'new':", but... ...how can I display latest added products (for example 100)? Thanks in advance!
  9. Thank you very much for this code! But I have a problem... Now this code generate something like this: But how to display attributes with names of groups inside? Thanks in advance.
  10. Hello, I want to import orders from my old store. On which tables in Presta should I operate? Thank's in advance. Sorry for my english.
  11. Hello, Combination with impact on price looks like: (pre-tax price + tax) + impact price I'm trying to change code to: (pre-tax price + impact price) + tax In classes/Product.php I chenged this: $price += $attribute_price; to: $price += $attribute_price + ($attribute_price * ($tax / 100)); And it works, but only in cart. What I must change (in themes\prestashop\product.js?) to see correct prices in product card?
  12. Thank you very much for quickly answer. So, you an Tomer modify only "classes/Customer.php" file?
  13. Hello, I have about 100 customers in Zencart. After import, login by customers is not possible. I found a problem: In Zencart - saving password looks like: $salt = substr(md5($password), 0, 2); $password = md5($salt . $password) . ':' . $salt; (e.g. b3fc93970326ba7dcda25ea193017f90:72) In Prestashop: md5(_COOKIE_KEY_.$passwd) 1. Can I convert old passwords to new string (acceptable by Presta)? Is it possible? 2. If not, what is a solution? I have two ideas: a) Edit files in Presta (adjust decrypt to Zencart method). (?) Edit files, but: if ID's are from, e.g. 1 to 100 - use old (Zencart) method, for others ID's - use new method from Presta. (?) Thanks in advance.
×
×
  • Create New...