Jump to content

compret

Members
  • Posts

    102
  • Joined

  • Last visited

Everything posted by compret

  1. Sorry I've been inactive in this forum for a very long time. Hereby I announce that I no longer maintain this module anymore. Since this module is released under CreativeCommons License Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0), anyone can modify and change this module. Best Regards.
  2. @Didid Kasusnya sama dengan aqui kalau prestashop tidak diinstal di root folder, maka modul ini tidak bisa berfungsi. Sebenarnya tinggal edit beberapa baris code aja, silakan dicari dan edit sendiri.
  3. @aqui yes it's not supported yet, actually you only need to change a few code
  4. @Gamelane no problem in my test site @dric83 Thanks for sharing here @Tropical Dream v1.4 isn't recommended for production use yet. Probably won't work, cause v1.4 will be different with v1.3, the promising feature is the capability of overriding Prestashop core. I hope I have the time to port this module to v1.4 when its already released.
  5. @botmez Sorry can't help you. How can I help you if you're not providing enough information about why it doesn't works. @probashi You can download it from file attachment now. @mehdi2405 I don't know.
  6. Alhamdulillah, akhirnya jadi juga nih module... Tapi sayangnya pas module ini jadi Prestashop 1.3.7 dah final, padahal module ini dibuat pake versi 1.3.6. Mohon bantuan rekan2 untuk uji coba module ini ya... (saya gk tanggung jawab kalau langsung diinstall di situs yang sudah berjalan) Blum ada dokumentasi instalasinya, penjelasan singkat sbb: 1. Sebelum install module harus buat FacebookApplication dulu di sini 2. Kita akan pakai AppID dan AppSecret, trus jangan lupa di settingan URL Situs aplikasi di set ke urls Prestashop. 3. Backup dulu situs prestashopnya (PENTING) 4. Download modulenya (lihat attachment) 5. a. Folder 'classes' dikopi ke folder 'classes', overwrite file Customer.php (lebih baik buat backupny) 5. b. Copy folder 'idfbcon' ke dalam fhttp://www.fileserve.com/file/7vJFVmJolder 'modules' 5. c. Copy file 'authentication.php' ke folder root, terakhir copy file 'authentication.tpl' ke 'themes/prestashop/' (dalam kasus ini saya pake theme bawaan, untuk theme yang lain silakan sesuaikan sendiri ya....) 6. Install module dari backoffice, set konfigurasi module (perlu Facebook APP ID dan Facebook Secret dari aplikasi FB yang sudah dibuat di langkah 1). Kekurangan yang diketahui: 1. jika login menggunakan account yang belum connect dengan facebook, maka tombol facebook ikutan jadi logout (pegennya sih register/login with facebook) 2. banyak lagi kekurangan lain yang perlu dicari (Bantuan rekan2 sangat diperlukan) =========================================================================== Update versi 0.2 1. one click installation (lewati langkah 5 diatas) = belum saya test Lihat Demo di sini Download Guide di sini IDFBCon_v.0.1.zip IDFBCon_v.0.2.zip
  7. jadwal padat gan, tunggu pertengahan bln Mei bru bisa ngoprek ni FB Connect, makany berharap ad yg dah ngoprek2 dulu n dibagi gratis.
  8. Coba cek posting2 sebelumny ada koreksi di manualny, cari sendiri dulu y...
  9. Ada beberapa orang yg lebih nyaman liat2 katalog secara offline daripada ngeklik2 di prestashop kita, jadi sy buat script yg export catalog product prestashop ke file excel. Sementara ini gambar product gk bisa dimasukin ke file excelnya, sy baru mau buat export catalog product yg bisa muncul gambarnya tapi ke file PDF, yg sudah ada librarynya di prestashop, krn klo export gambar ke file excel keknya hrus nambah library di prestashopny. Save script php di atas di /public_html, kemudian buat link ke file tsb Selamat mencoba
  10. <?php include(dirname(__FILE__).'/config/config.inc.php'); include(dirname(__FILE__).'/init.php'); //define date for title: EDIT this to create the time-format you need $now_date = date('m-d-Y H:i'); //define title for .doc or .xls file: EDIT this if you want $title = "Data Katalog xxxxxx tanggal $now_date"; $file_type = "vnd.ms-excel"; $file_ending = "xls"; //header info for browser: determines file type ('.doc' or '.xls') header("Content-Type: application/$file_type"); header("Content-Disposition: attachment; filename=katalog.$file_ending"); header("Pragma: no-cache"); header("Expires: 0"); echo ("$title\n"); echo ("ID\tNama Barang\tVarian\tHarga\tBerat\tReference\tEAN13\tJumlah Stok\n"); $rq = Product::getProducts($cookie->id_lang, 0, 0, 'id_product', 'ASC', false, true); if (is_array($rq)) { foreach($rq AS $j => $product){ $sep = "\t"; /* Build attributes combinaisons */ $prod = new Product($product['id_product'], $full = false, $cookie->id_lang); $combinaisons = $prod->getAttributeCombinaisons($cookie->id_lang); $groups = array(); if (!$combinaisons){ $schema_insert = ""; $schema_insert .= $product['id_product'].$sep; $schema_insert .= $product['name'].$sep; $schema_insert .= $sep; $schema_insert .= ($currency->format == 1 ? $currency->sign.' ' : '').Product::getPriceStatic($product['id_product'], $usetax = true, $combinaison['id_product_attribute'], $decimals = 2, $divisor = NULL, $only_reduc = false, $usereduc = true, $quantity = 1, $forceAssociatedTax = true).($currency->format == 2 ? ' '.$currency->sign : '').$sep; $schema_insert .= $product['weight'].Configuration::get('PS_WEIGHT_UNIT').$sep; $schema_insert .= $sep; $schema_insert .= $sep; $schema_insert .= $product['quantity'].$sep; $schema_insert = preg_replace("/\r\n|\n\r|\n|\r/", " ", $schema_insert); print(trim($schema_insert)); print "\n"; } if (is_array($combinaisons)) { $combArray = array(); foreach ($combinaisons AS $k => $combinaison) { $combArray[$combinaison['id_product_attribute']]['wholesale_price'] = $combinaison['wholesale_price']; $combArray[$combinaison['id_product_attribute']]['price'] = Product::getPriceStatic($product['id_product'], $usetax = true, $combinaison['id_product_attribute'], $decimals = 2, $divisor = NULL, $only_reduc = false, $usereduc = true, $quantity = 1, $forceAssociatedTax = true);//$combinaison['price']; $combArray[$combinaison['id_product_attribute']]['weight'] = $combinaison['weight']; $combArray[$combinaison['id_product_attribute']]['reference'] = $combinaison['reference']; $combArray[$combinaison['id_product_attribute']]['supplier_reference'] = $combinaison['supplier_reference']; $combArray[$combinaison['id_product_attribute']]['ean13'] = $combinaison['ean13']; $combArray[$combinaison['id_product_attribute']]['location'] = $combinaison['location']; $combArray[$combinaison['id_product_attribute']]['quantity'] = $combinaison['quantity']; $combArray[$combinaison['id_product_attribute']]['default_on'] = $combinaison['default_on']; $combArray[$combinaison['id_product_attribute']]['ecotax'] = $combinaison['ecotax']; $combArray[$combinaison['id_product_attribute']]['attributes'][] = array($combinaison['group_name'], $combinaison['attribute_name'], $combinaison['id_attribute']); if ($combinaison['is_color_group']) $groups[$combinaison['id_attribute_group']] = $combinaison['group_name']; } } $irow = 0; if (isset($combArray)){ foreach ($combArray AS $id_product_attribute => $product_attribute) { $schema_insert = ""; $list = ''; $jsList = ''; foreach ($product_attribute['attributes'] AS $attribute) { $list .= addslashes(htmlspecialchars($attribute[0])).' - '.addslashes(htmlspecialchars($attribute[1])).', '; $jsList .= '\''.addslashes(htmlspecialchars($attribute[0])).' : '.addslashes(htmlspecialchars($attribute[1])).'\', \''.$attribute[2].'\', '; } $list = rtrim($list, ', '); $jsList = rtrim($jsList, ', '); $schema_insert .= $product['id_product'].$sep; $schema_insert .= $product['name'].$sep; $schema_insert .= stripslashes($list).$sep; $schema_insert .= ($currency->format == 1 ? $currency->sign.' ' : '').$product_attribute['price'].($currency->format == 2 ? ' '.$currency->sign : '').$sep; $schema_insert .= $product_attribute['weight'].Configuration::get('PS_WEIGHT_UNIT').$sep; $schema_insert .= $product_attribute['reference'].$sep; $schema_insert .= $product_attribute['ean13'].$sep; $schema_insert .= $product_attribute['quantity'].$sep; $schema_insert = preg_replace("/\r\n|\n\r|\n|\r/", " ", $schema_insert); print(trim($schema_insert)); print "\n"; } } } }
  11. ditunggu updateny, klo bisa dishare gratis y.... coz yg jualan dh banyak
  12. @ikhlas wah coba tanya k dallco, dy pake v1.2.4, gk tau berhasil ap gk, sry gk bs bantu klo pake selain v1.2.5
  13. thanks infonya gk perlu pusing2 develop dh, dah ada yg buat, gratisan pula
  14. Hi semuany, maaf lama menghilang @hady & tokoflanel pasti sblumnya install yg di file upload.zip, solusinya cukup copy file2 berikut dari prestashop asli ke prestashop yg terinstall skr @saumiasia sy tdk prnah menemui error sperti itu, n modul yg sy buat gk mengubah apapun yg berhubungan dengan upload gambar, modul sy cuma memodifikasi core shipping aja. @emraud Hi emraud, maybe you're interested with my module from the title "Shipping by State", actualy it is not like that. in the begining i want to make that kind of module (Shipping by State) because in Indonesia the shipping area is based on city zone, so my scheming with prestashop will be like this : Prestashop : Country -> States Implementation : Province Name -> City Name But since shipping in prestashop are decided by Zones, and Zones are attached to Country, i became preoccupied to attach Zone to State, that is the first modification (not a module yet) : Then i found that this modification is buggy, and the implementation of weight calculation fee is not working well if i make more than one carrier. For you know almost all of the carrier in Indonesia calculate the shipping price by the weight increment. So in the next development i decided not to make it a "Shipping by State" instead i change the zone scheming, it became like this : Prestashop : Country -> State Implementation : City Name -> Province Name That is the module version : Since some people already use the earlier modification version, i decided to make the upgrade for those modification version too : How to install and the User Manual of this module is already included in the "ID Weight Range v1.0.b.zip" file, but its in Bahasa, installing this module is very easy you just need to overwrite some core files and put the module folder in the appropriate location, then install it from back office. Since this module is made for Indonesian i'm not making the English version. But i welcome everyone who want to translate this module. If youre still not understand this module, this module is almost the same with "WHIP Shipping Module" for "virtuemart" except you can't change the algorithm of my module from the admin pages. Sorry for my English, cause i'm only speak and write in english in english class, and it has been a view years a go. Regards, Chandra
  15. yg di modul itu gk manual, aq konfersi dari excel, dapet datanya jug di forum ini, lupa thread yg mana.
  16. masa' sih error... ? kok aq gk error, hehehe
  17. @rvnetwork gini, untuk tiki kan tarifnya per kg, nah key 't', itu untuk menandai bahwa untuk range berat yang memiliki key 't', maka akan berlaku penghitungan kelipatan berat. penghitungannya dimulai dari 0kg (isian "Start after"), dan biaya untuk range berat tersebut adalah setiap 1kg(isian "Multiply by") @dallco kalo sudah install modifikasi yg ini : maka di uninstall dulu modulnya, trus install modul ini (yupz di overwrite): kalo belum pernah install sama sekali langsung pakai modul yg ini : yang update an itu databasenya otomatis terupdate.
  18. di module yg saya buat, sy mengasumsikan bahasa Indonesia memiliki id_lang 3, sedangkan yg di install di TKP, bahasa Indonesia id_lang nya 4, jadi perlu modif table di databasenya, di table "country_lang" ganti semua entry yg field id_langnya 3 menjadi 4.
  19. Coba solusi yg ada disini http://www.prestashop.com/forums/viewthread/10833/P75/#116208
  20. sy coba di TKP kok semua produknya gk muncul y...
  21. file .tpl yg ada di module nya. baru perkiraan aja sih.... ada link ke modulenya gk? nanti sy coba cek file .tpl nya atau coba generate .httaccess nya lagi
  22. ada link ke modulenya, klo analisa sy, modif file .tpl nya trus ganti url ke image nya pake variable {$base_dir} untuk menunjuk link base directorynya.
  23. perlu ngisi database negara2 asia tenggara ma afrikanya lagi dari awal, pake cara manual gampangnya, atau insert ke database via phpMyAdmin juga bisa.
×
×
  • Create New...