Jump to content

stullko

Members
  • Posts

    9
  • Joined

  • Last visited

stullko's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I cannot create a new account in 1.6.0.9 I get an error when pressing the button: Register - it says "There is 1 error 1. An error occured while creating your account" When i look in DB, if i try to register new account, id assigned to new user is 0. url: http://www.domace.sk/objednavka Anyone who may help me?
  2. Can anybody help me? Thanks in advance! Also when i want confirm order, nothing happens and in cosole shows this error: Uncaught TypeError: Cannot read property 'result' of null jquery-1.11.0.min.js:4
  3. Same problem here. If i click on add new comment, nothing happens. Prestashop version 1.6.0.9 Thanks
  4. Changed url in BO and my version is 1.6.0.9. Thanks
  5. Hello, i have problem with my prestashop. I need change prestashop store url from non-www to www.mysite.com. But when i change it, cart and login not working. I think its problem with old cookies. Can anybody help me? Thanks in advance!
  6. yes i know that.. it is possible when im importing, change category id from 1 to 4 and 2 to 5? my presta is 1.5.4. Thanks in advance!
  7. Hello, how can i change category id in database? It is possible? I need for my csv import change home category to other number than 2. Thanks!
  8. Hello, i have this export code, but i need export attributes too. I was try many solution, but its still not working. I have 3 groups and many attributes, for example attributes_4, attributes_7... Can anybody please help me. <?php $shopUrl = 'http://www.mysite.com'; include(dirname(__FILE__).'/config/config.inc.php'); include(dirname(__FILE__).'/init.php'); error_reporting(0); $p=Product::getProducts(4, 0, 0, 'id_product', 'desc', false,true); $products=Product::getProductsProperties(3, $p); header("Content-Type: text/xml"); echo '<?xml version="1.0" encoding="utf-8"?> <SHOP>'; foreach ($products as $row) { $kategorie=array(); $category = new Category(intval($row['id_category_default']), intval(4)); while ($category->id <> 1) { $kategorie[]=$category->hideCategoryPosition($category->name); $category = new Category(intval($category->id_parent), intval(4)); } $img=Product::getCover($row['id_product']); echo ' <SHOPITEM> <PRODUCT>'.str_replace("&", "and", strip_tags($row['name'])).'</PRODUCT> <DESCRIPTION>'.str_replace("&", "&",strip_tags(html_entity_decode($row['description_short'], ENT_COMPAT, 'utf-8'))).'</DESCRIPTION> <IMAGE>http://www.mysite.com/img/p/'.$row['id_product'].'-'.$img['id_image'].'.jpg</IMAGE> <PRICE>'.($row['price']*1).'</PRICE> <MANUFACTURER>'.htmlspecialchars($row['manufacturer_name']).'</MANUFACTURER> <CATEGORY>'.implode(' , ',array_reverse($kategorie)).'</CATEGORY> </SHOPITEM>'; } echo '</SHOP>'; ?>
  9. Viete mi niekto poradit ako exportovat velkosti? Pre tych co ma nechapu, takto sa exportuje produkt: <PRODUCT>'.str_replace("&", "and", strip_tags($row['name'])).'</PRODUCT> Teda potrebujem vediet ako sa daju velkosti. Vopred velmi pekne dakujem!
×
×
  • Create New...