Jump to content

cronic_pl

Members
  • Posts

    6
  • Joined

  • Last visited

cronic_pl's Achievements

Newbie

Newbie (1/14)

12

Reputation

  1. Is anyone here have problem with asigning categories to product in multistore? I added product in "all shops" and all is ok, shop A (deafault) and shop B have this product correctly assigned to categories. I want to change product description in each shop. I'm making changes on shop A (default) and then on shop B, when I want to edit anything in "all shops" options and I save this changes, categories assigned to shop B dissapear, all categories are unchecked in shop B... Whats going on? Really strange behavior. With this problem all multistore idea failed...
  2. In my shop (PS 1.6.0.8) I do this by little code modification in template "product.tpl" Maybe this will help You. This code: {foreach from=$group.attributes key=id_attribute item=group_attribute} <option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'html':'UTF-8'}">{$group_attribute|escape:'html':'UTF-8'}</option> {/foreach} Replace by this one: <option value="choose" selected="selected" title="--choose--">{l s='--choose--'}</option> {foreach from=$group.attributes key=id_attribute item=group_attribute} <option value="{$id_attribute|intval}" {if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute)} selected="selected" {/if} title="{$group_attribute|escape:'html':'UTF-8'}"> {$group_attribute|escape:'html':'UTF-8'} </option> {/foreach} But this modyfication have some weak points too... You can't set default combination for product from BO, --choose-- will be always default. I think in some cases You should edit product "availability_statut" translations too.
  3. I am working on solution, it will be small module, maybe this module help...
  4. W multistore 1.6.0.8 też działa tyle, że wymieniłem tylko fragmenty kodu, nie całe pliki. Dodatkowo od siebie zasugerowałbym jedną drobną modyfikację. Poniższą linię kodu: return "<img src=\"" + baseDir + "img/p/" + data.image.split('').join('/')+"/" + data.image+ "-mini.jpg\" alt=\"" + value + "\" />" + value; zamieniłbym na: return "<img src=\"" + baseDir + "img/p/" + data.image.split('').join('/')+"/" + data.image+ "-cart_default.jpg\" alt=\"" + value + "\" />" + value; W pierwszej wersji nie wyświetliło mi odpowiednio zdjęcia produktu, w drugiej wersji wszystko działa już poprawnie i wyświetla malutką miniaturkę, taką samą jak w koszyku. Tak w ogóle świetna robota i dzięki za podzielenie się nią z nami!
  5. Maybe I ask one more time Anyone knows how to solve this problem? Without this solution using multi-default currency feature doesn't make sense and not only in this case...
  6. Hi! I have quite strange problem with default currencies in new 1.6.0.8 multistore. I have multistore with few shops: - ShopA (default currency £) contains only products type AAA (narrow products range) - ShopB (default currency zł) contains only products type BBB (narrow products range) - ShopC (default currency €) contains only products type CCC (narrow products range) - ShopALL (default currency €) contains all products types from other shops + product type ALL ALL ALL Shops ABC have diffrents domains and diffrents templates. ShopALL is something like products container for all other shops and their products types with additional products type. I set few default currencies, because I must add products in different currency for almost each shop. I found this option in: shop name (multistore) / admin / localisation / default currency Than I set 4 currencies for each shop here: shop name (multistore) / admin / currencies Now each shop have own default currency + 3 other currencies, with proper currency exchange rate. Untill this point everything works great Now I want to add product AAA1 to ShopA, so I enter the price 10£ and everything works ok, exchange rate for other currencies for this shop works ok. But this prodcut is also visible in ShopALL... ShopALL display his price correctly but not in pounds but in euro... so ShopALL display price 10€. If prestashop want to display this price in €, its ok, but should display converted price... Other way should display price in correct currency... In my opinion this is quite big bug... Is anybody here, who can help me with this problem? All best, Gregory.
×
×
  • Create New...