Showing posts with label prestahop. Show all posts
Showing posts with label prestahop. Show all posts

remove ads from dashboard prestashop 1.5


open file
\ADMIN\themes\default\template\controllers\home\content.tpl

find and remove

   

       

   

   


    {$tips_optimization}
   
{l s='Loading...'}

hapus iklan dashboard back office prestashop

http://www.prestashop.com/forums/topic/191030-how-to-hide-or-remove-dashboard-items/?hl=remove%20link&fromsearch=1
Continue Reading

hide left column in page home prestashop

meng hide left column pada halaman home di pestashop

buka dile header.tpl dengan editor kesayangan anda

cari tulisan


<!-- Left --><div id="left_column" class="column grid_2 alpha"> {$HOOK_LEFT_COLUMN}</div>

di ubah menjadi


<!-- Left -->
{if $page_name == index || $page_name == 'pagenotfound'}
{else}
<div id="left_column">
{$HOOK_LEFT_COLUMN}
</div>
{/if}

Continue Reading

free module prestasop

http://www.presto-changeo.com/id/7-prestashop-free-modules


http://catalogo-onlinersi.net/en/8-prestashop-modules?orderby=price&orderway=asc
http://www.leotheme.com/prestashop/modules.html




and will update
Continue Reading

Tips mengurutkan produk di homefeatured prestashop

pada prestashop ada modul home futured yaitu menampilkan max 10 produk pada kategori Home
untuk menurutkanya

buka file homefutured.php pada folder modules/homefutured, edit pada baris 106


$products = $category->getProducts((int)($params['cookie']->id_lang), 1, ($nb ? $nb : 10));

di ganti dengan


$products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10), 'date_add', 'DESC');


perhatikan 'date_add' dan 'DESC'
keduanya adalah kunci untuk mengurutkan ..

sumber http://www.prestashop.com/forums/topic/107398-tips-mengurutkan-produk-di-homefeatured-new-produk-first/page__pid__1078140__st__20#entry1078140

prestashop 1.5, prestashop, modified, homefutured modified, module, modul, modul homefutured, module homefutured, module homefutured prestashop 1.5
Continue Reading

change hook modul prestashop

Merubah Hook/posisi modul pada prestashop

ingin menampilkan hook editorial pada header menjadi top page

buka file modules/editorial.php dengan editor kesayangan anda

cari registerHook('displayHome')

ubah menjadi registerHook('displayTop')

lalu simpan

pergi ke halaman modul di BO dan reset module editorial

refresh FO anda

change hook prestashop 1.5. editorial prestashop, hook prestasop, change hook, merupah posisi hook prestasop, prestashop 1.5
Continue Reading