Jump to content

Kolczatka

Members
  • Posts

    21
  • Joined

  • Last visited

Profile Information

  • Location
    Poland
  • Activity
    Freelancer

Kolczatka's Achievements

Newbie

Newbie (1/14)

0

Reputation

2

Community Answers

  1. Unfortunately, not yet. I have suspended this project lately, but when I solve this problem, i will surely post solution here. I'm going to: make full backup of old (1.4) shop, use one-click-update on it, and then use built-in methods that are included in versions above 1.4 to move data to new shop.
  2. @hatak, trochę Cię okłamałem: old.hamer.sklep.pl jest już kopią oryginalnej strony: hamer.sklep.pl Tak więc z Twoim rozwiązaniem nie będzie problemów. Czyli update'ować old do wersji chociażby 1.5, i z tamtąd eksportem do plików CSV przesłać to na beta.hamer.sklep.pl? Wydaje się to rozsądne, patrząc na to że innych rozwiązań szukałem nawet na drugich i trzecich stronach google. Po tym jak wykonam całą akcję napiszę tutaj i oznaczę temat jako rozwiązany
  3. Mam stary sklep: old.hamer.sklep.pl i nowy: beta.hamer.sklep.pl Przerabiam nowy żeby wyglądał jak stary, przeniosę dane, potem stary się wyłączy i na dns starego wsadzi się nowy. Prawda, mógłbym upgrade'ować stary przynajmniej do wersji 1.5, i stamtąd przenieść dane z tego co wiem już jest łatwiej, więc mógłbym tak zrobić. Ale rozwiązanie jest trochę absurdalne, więc kombinuję czy nie ma jakiegoś lepszego rozwiązania? I've got old shop under: old.hamer.sklep.pl and new one: beta.hamer.sklep.pl I'am making new one to look like old, after that im gonna export data to beta, then turn off old shop and move new shop to olds address. True, I could upgrade old one to i. e. 1.5 version, and then export data- it's easier from 1.5 version as I've heard. But don't we have easier or more obvious method?
  4. Witajcie! Pytałem o to na angielskim forum, lecz chyba nikt nie może mi pomóc... Muszę przenieść wszystkie dane typu produkty, kategorie, użytkownicy itp... Szukałem oczywiście pomocy w googlach, lecz bez sukcesów: Próbowałem moduł exportproducts: http://www.prestashop.com/forums/topic/37900-module-product-export-module-v20-updated-for-16-free/ lecz on chyba tylko eksportuje dane do pliku, nie sądzę żeby nadawały się do importu do 1.6. Oraz storeexport: http://www.presta-shop-modules.com/prestashop-14-modules/25-prestashop-store-shop-export.html Ten nie chciał mi się zainstalować, po imporcie zip'a do presty, nie pojawiał się w spisie modułów. Czy ktokolwiek robił kiedyś coś podobnego lub wie gdzie szukać rozwiązania?
  5. Okay, I think I figured it out! this: $("#header .shopping_cart a:first").hover( function(){ if (ajaxCart.nb_total_products > 0 || cart_qty > 0) $("#header .cart_block").stop(true, true).slideDown(450); }, function(){ setTimeout(function(){ if (!shopping_cart.isHoveringOver() && !cart_block.isHoveringOver()) $("#header .cart_block").stop(true, true).slideUp(450); }, 200); } ); had to become this: $("#header .shopping_cart a:first").hover( function(){ /*if (ajaxCart.nb_total_products > 0 || cart_qty > 0)*/ $("#header .cart_block").stop(true, true).slideDown(450); }, function(){ setTimeout(function(){ if (!shopping_cart.isHoveringOver() && !cart_block.isHoveringOver()) $("#header .cart_block").stop(true, true).slideUp(450); }, 200); } );
  6. Hello! I know that this topic was discussed many times, but I couldn't find answer even on second pages of google. I need to import data from old store(1.4.4.1) to new store(1.6.0.9). Data like categories, user accounts, and ofc. products. I'vh tried this module exportproducts: http://www.prestashop.com/forums/topic/37900-module-product-export-module-v20-updated-for-16-free/ But I don't think it's something that I could successfully use. I also tried storeexport: http://www.presta-shop-modules.com/prestashop-14-modules/25-prestashop-store-shop-export.html But I wasn't able to install it- it doesn't appear on modules list after import. Could anybody help me?
  7. It is a good idea with this cart_qty. I have tried to find function responsible for expanding, but I failed. Would You be so kind and try to find this part of code that makes decision about expanding? My knowledge about javascript is near zero:/
  8. I am sorry, I wasn't very precise- It works when a product is already in the cart, but when cart is empty, it does not expand :/ After I add and then delete product from cart- then it works, but not when you are entering the page first time. Sorry for any language mistakes
  9. Hehe, fakt trochę mnie zaskoczyłeś Jako że robiąc ten wygląd wzoruję się na innej stronie: hamer.sklep.pl dałoby się tak zrobić żeby to się rozwijało nawet jeśli koszyk jest pusty? Rozumiesz, pokazywałoby się 0,00zł i "brak produktów" EDIT: Zauważyłem, że jak doda się produkt do koszyka, potem go wywali, to ten koszyk się fajnie rozwija. Jednak, gdy po prostu wejdzie się na stronę, to rozwijanie nie działa :/
  10. dzięki za Twoją odpowiedź endriu107! Problem w tym że nie mam pojęcia jak osiągnąłeś to co mi wysłałeś w screenie! Właśnie ten dolny, z 1.6 mi się nie chce rozwijać, a górny że się nie rozwija to dobrze, bo nie ma się rozwijać Próbowałem na Chromie, IE i Firefoxie - jak to się stało że ten dolny Ci się rozwinął?
  11. Hi! I have a problem with cart: it does not expand :/ http://beta.hamer.sklep.pl/ This theme you see under link above is modified default-bootstrap theme, presta 1.6. Everything I've done there is change css files, so it's strange that I've broken cart expand. I don't know when and how I did this. Could somebody be so helpful and could try to find what is wrong with this cart? I would also greatly appreciate some explanation, couse I'm very not familiar with javascript/ajax.
  12. Witajcie! Mam problem z nie rozwijającym się koszykiem. http://beta.hamer.sklep.pl/ Theme który tam widzicie jest przeróbką z default-bootstrap. Jedyne co tam ruszałem, to pliki css, więc nie mam pojęcia jak mogłem zepsuć koszyk. Nie znam się za bardzo na ajax-ie i javascripcie, więc byłbym widzięczny za radę i wyjaśnienie. Dzięki z góry za pomoc!
  13. Thanks El Patron for your reply! yes, am sure, file was correct: /themes/my_theme/product_list.tpl Somehow, i really don't know how, my changes bacame visible. After repeatedly cleaning browsers cache, setting "always compile" and turning cache off, i think that clearing cache made a difference. If I am right, it's pretty stupid that you have to hit "clear cache" in prestashop even after you set cache off. Thanks for your help!! I will not set this topic as solved, becouse original problem posted by billieluxu has not been solved. Also, sorry for any language mistakes
  14. Hi! I have encountered the very same problem. I can simply delete big parts of code from product_list.tpl and nothing happens I would be really happy if someone could help us! PS. setting "always compile" and turn cache off didn't help either.
  15. do htmlBox wrzuciłem ten kod: <script src= "/js/jquery/jquery.easing.1.3.js" type="text/javascript"></script> <script src= "/js/jquery/jquery-1.4.4.min.js" type="text/javascript"></script> <script src= "/modules/htmlbox/jquery.cycle.all.latest.js" type="text/javascript"></script> <script src= "/js/bannerFadeCycle.js" type="text/javascript"></script> <div id="slides-box" class="slides-box-table" style="background: url('../img/cms/js.gif') center 0px no-repeat; width: 100%; margin: auto; padding: 0px 0px 0px 0px; float: none; position: relative; height: 150px;"> <div class="container"> <div id="featured"> <div id="slideshow" class="slideshow"> <img src="../img/cms/fotolia2.png" alt="" class="active" style="position: absolute; top: 0px; left: 0px; display: block; z-index: 3; opacity: 1; width: 350px; height: 160px;" /> <img src="../img/cms/fotolia3.png" alt="" style="position: absolute; top: 0px; left: 0px; display: block; z-index: 3; opacity: 0; width: 350px; height: 160px;"/> <img src="../img/cms/fotolia1.png" alt="" style="position: absolute; top: 0px; left: 0px; display: block; z-index: 3; opacity: 0; width: 350px; height: 160px;"/> </div> </div> </div> </div> a oto kod bannerFaceCycle.js : $(document).ready(function() { $('#slideshow').cycle(); });
×
×
  • Create New...