Posts

Showing posts with the label Prestashop

Prestashop blank BO and FO because of Rijndael.php

Artikel ini saya dapatkan ketika mendapatkan web prestashop saya blank back office dan front office setelah migrasi ke server baru berikut kutipannya. Hello Prestashopper. Sometimes when you try to move your prestashop website from one hosting to a new hosting, or when you migrate your database to an existing website database, it may cause a Blank Back-Office and blank Front-Office !!! this is somehow confusing, but we can fix it as follows : 1- Open your site's file manager, and open config/config.inc.php 2- Search for @ini_set('display_errors', 'off') and change 'off' to 'on'. 3- Now refresh your Front Office, if you find the following error :        Fatal error : Call to undefined function mcrypt_decrypt() in .................... Rijndael.php 4- Open your database using any database management system ( e.g phpmyadmin ). 5- Search for "  PS_CIPHER_ALGORITHM " in "  ps_configuration " table. 6- click on Edit, and change its val...

Grid View Sub Kategori Prestashop 1.5

Image
Hari ini saya ingin share cara membuat sub kategori pada prestashop 1.5 dari list view menjadi grid view. Artikel saya sajikan melalui bahasa inggris ya, cekidot semua... Today i want to show you how to change subcategories view in your prestashop store. By default prestashop in version 1.5.x displays subcategories in list with descriptions. I will show step by step how you can easily change it.  Are you ready  to display subcategories as a grid?  so, let's go ;) default subcategories view in default prestashop template And we want to modify view of the list to: default prestashop theme and subcategories grid display What we have to change? We will modify two things, theme category.tpl file and it's css styles from category.css stylesheet file. From category.tpl file we will remove the subcategory description (we will move it to the category image alternative text). In the css styles file we will change appearance of the categories list. Category....

Menambahkan Nomor HP Konsumen Pada Halaman Order Detail Admin Prestashop 1.4

Q: Hi, I am using prestashop 1.4.1 I want customer mobile phone number to display on order details page. Currently only home phone is displayed on order details page. I appreciate if anyone can help me do do it. A: Thank you, It worked. it need database access. What i did is: Go to ps_address_format table. Find your countries ID & edit record. At the end of format field add phone_mobile & save. The mobile phone will start showing up on order details page. > PS: Biasanya Indonesia ada pada ID 111, silakan edit ps_address_format dengan ID 111 atau indonesia lalu rubah dari: firstname lastname  company  vat_number  address1  address2  postcode  city  Country:name  phone  menjadi: firstname lastname  company  vat_number  address1  address2  postcode  city  Country:name  phone  phone_mobile http://www.prestashop.com/forums/topic/1...

Export Product Prestashop 1.4 SQL Script

Use this sql query to get almost everything you could need (or be able to import back into PrestaShop.) The things this query lacks is: multiple categories for multiple products, tags, image urls, discount amount, discount percent, discount from and discount to. SELECT p.id_product AS 'ID', p.active AS 'Active (0/1)', pl.name AS 'Name', p.id_category_default AS 'Default Category', p.price AS 'Price tax excl.', p.id_tax_rules_group AS 'Tax rules ID', p.wholesale_price AS 'Wholesale price', p.on_sale AS 'On sale (0/1)', p.reference AS 'Reference #', p.supplier_reference AS 'Supplier reference #', sl.description AS 'Supplier', ml.description AS 'Manufacturer', p.ean13 AS 'EAN13', p.upc AS 'UPC', p.ecotax AS 'Ecotax', p.weight AS 'Weight', p.quantity AS 'Quantity', pl.description_short AS 'Short description', pl.description ...

Pencarian Sub Stings Prestashop 1.5.x

Fungsi Search pada prestashop 1.5.x tidak memungkinkan kita melakukan pencarian untuk phrase yang berada di tengah kata. Jadi jika ada produk bernama "Indonesia" maka kita bisa mencarinya hanya jika kita mengetikkan kata "indonesia", "indo", "indone" atau yang lainnya dan harus dari karakter pertama kata. Tetapi jika kita mencari dengan mengetikkan "ndone", "nesia", "esia" maka produk "Indonesia" tidak akan muncul. Hal tersebut biasa disebut Sub String . Nah saya akan membagikan cara agar kita bisa mencari kata-kata potongan dari tengah pada produk kita yang ada pada CMS prestashop kita. Berikut caranya... Mohon maaf saya pertahankan seperti artikel aslinya supaya tidak hilang sense nya hehehe... /************************** Then, you can modify the file (.../classes/search.php) to substring all the searches with (%) variable or whatever you want. From line 190 to 197 AND sw.word LIKE      ...

Membuat Multistore dengan Prestashop

Image
Salah satu fitur Prestashop 1.5 adalah multistore yang memungkingkan kita untuk membuat beberapa jenis toko sekaligus yang ada pada sebuah website.. Penasaran dengan fitur tersebut, silakan baca tutorialnya melalui link: http://doc.prestashop.com/display/PS15/Managing+multiple+shops atau baca bisa juga membacanya melalui artikel di bawah ini. Managing multiple shops One of the main features PrestaShop 1.5 is called "multistore", meaning the ability to manage multiple shops from the same back-office. Thanks to this feature, you can manage many customized shops, which share many common elements. For more efficiency, you can even create groups of shops. How to decide if you need the multistore feature You can find yourself wanting to use the multistore feature, where in fact it is not necessary. For instance, if you want a multilingual shop, or if you need to use more than one currency, or if you would like to have a different graphic template for each category. H...