Forum PrestaShop

Il Forum di PrestaShop è lo spazio in cui puoi condividere con la comunità di PrestaShop consigli pratici sull'e-commerce e trovare la risposta a tutte le domande tecniche e funzionali.

Forum PrestaShop

Jump to content

 

[Free Prestashop Themes] iNove Free Prestashop Theme

34 replies to this topic
#1
Ardian Yuli Setyanto

    PrestaShop Fanatic

  • Moderators
  • 1029 posts
Just a quick solution to combine wordpress and prestashop by using same theme. We have converted iNove wordpress theme to prestashop theme.
Demo here Free Prestashop Theme
Download here Download iNove Prestashop Theme

#2
sheepdear

    PrestaShop Newbie

  • Members
  • Pip
  • 14 posts
this is cool thanks
Promotional nail clipper, personal care product
http://1stidea.com

#3
tonnyz

    PrestaShop Newbie

  • Members
  • Pip
  • 8 posts
i've downloaded. Thanks for shared

#4
Prestashopic

    PrestaShop Apprentice

  • Members
  • PipPip
  • 352 posts
That is an elegant theme. Thanks for sharing it. I like header color of your theme

#5
Ardian Yuli Setyanto

    PrestaShop Fanatic

  • Moderators
  • 1029 posts
thanks for downloading it.

#6
adiboo

    PrestaShop Apprentice

  • Members
  • PipPip
  • 128 posts
hi great template, ,can you tell us how to convert wordpress to prestashop templates.
thanks

#7
Ardian Yuli Setyanto

    PrestaShop Fanatic

  • Moderators
  • 1029 posts
Hi, thanks for your comments, But as junior programmer, We prefer share it for free better than writing documentation, it's time consuming for us, but I'll add this to my to do list. Thanks.

#8
Maxix

    PrestaShop Newbie

  • Members
  • Pip
  • 3 posts
Hi, Ardian Yuli Setyanto, thanks for template. I am install it, but have some problems.

1. Ajax not work in cart.
2. Strange phrase "Biaya kirim akan muncul setelah anda memilih Jasa Pengiriman, tekan". This phrase on demo site in "Shopping cart summary". http://ardianys.com/...-demo/order.php, and i see it in installed theme too. You can see it in attached screenshots.
3. Zero in "Shopping cart summary"

In standart Prestashop theme all work correctly.
How i can fix this?

Thanks

Attached Files



#9
Ardian Yuli Setyanto

    PrestaShop Fanatic

  • Moderators
  • 1029 posts
Hy Maxix, sorry forget to mention that this theme is based on presta 1.3. What about yours ? Prestashop 1.3 stable version is available now. I have make update in file order-carrier.tpl and shopping-cart.tpl to remove the strange phrase. Regards.

#10
henkmeid

    PrestaShop Newbie

  • Members
  • Pip
  • 9 posts
Hi There,

I can't seem to get the wiznav bar working. I installed it, but it is not showing up on the shop.

Gr,

Henk

#11
msk69

    PrestaShop Apprentice

  • Members
  • PipPip
  • 403 posts
is it listed in > module > positions > Top of pages?
If not try to add it.

#12
Ardian Yuli Setyanto

    PrestaShop Fanatic

  • Moderators
  • 1029 posts
Hi, thanks for your comment. You should have modify your prestashop/header.php file to include wiznav hook.
/* Hooks are volontary out the initialize array (need those variables already assigned) */
$smarty->assign(array(
'HOOK_HEADER' => Module::hookExec('header'),
'HOOK_LEFT_COLUMN' => Module::hookExec('leftColumn'),
'HOOK_TOP' => Module::hookExec('top'),
'HOOK_WIZNAV' => Module::hookExec('wiznav'),
'static_token' => Tools::getToken(false),
'token' => Tools::getToken(),
'priceDisplayPrecision' => _PS_PRICE_DISPLAY_PRECISION_,
'content_only' => intval(Tools::getValue('content_only'))
));

#13
henkmeid

    PrestaShop Newbie

  • Members
  • Pip
  • 9 posts
I tried this, but my shop gives me a "hack attempt" message.

Any suggestions?

#14
henkmeid

    PrestaShop Newbie

  • Members
  • Pip
  • 9 posts
Or can someone give me a complete header.php file? i'm using 1.3.

#15
henkmeid

    PrestaShop Newbie

  • Members
  • Pip
  • 9 posts
Anyone any suggestions? I'm kind of stuck here..

#16
Ardian Yuli Setyanto

    PrestaShop Fanatic

  • Moderators
  • 1029 posts
Hi, sorry, I'm in a vacation. You should not overwrite all of file contents but you should find something look like ‘HOOK_TOP’ => Module::hookExec(‘top’), and then insert code ‘HOOK_WIZNAV’ => Module::hookExec(‘wiznav’), below it

#17
henkmeid

    PrestaShop Newbie

  • Members
  • Pip
  • 9 posts
I'm sorry, but when i do this i get the error hack attempt:

<?php

// P3P Policies (http://www.w3.org/TR...ompact_policies)
header('P3P: CP="IDC DSP COR CURa ADMa OUR IND PHY ONL COM STA"');

require_once(dirname(__FILE__).'/init.php');

/* CSS */
$css_files[_THEME_CSS_DIR_.'global.css'] = 'all';

/* Hooks are volontary out the initialize array (need those variables already assigned) */
$smarty->assign(array(
'HOOK_HEADER' => Module::hookExec('header'),
'HOOK_LEFT_COLUMN' => Module::hookExec('leftColumn'),
'HOOK_TOP' => Module::hookExec('top'),
‘HOOK_WIZNAV’ => Module::hookExec(‘wiznav’), 'static_token' => Tools::getToken(false),
'token' => Tools::getToken(),
'priceDisplayPrecision' => _PS_PRICE_DISPLAY_PRECISION_,
'content_only' => intval(Tools::getValue('content_only'))
));

if(isset($css_files) AND !empty($css_files)) $smarty->assign('css_files', $css_files);
if(isset($js_files) AND !empty($js_files)) $smarty->assign('js_files', $js_files);

$smarty->display(_PS_THEME_DIR_.'header.tpl');

?>

#18
BertB

    PrestaShop Apprentice

  • Members
  • PipPip
  • 34 posts
Works fine on 1.3. Can it be adapted for three columns?

#19
giuly

    PrestaShop Apprentice

  • Members
  • PipPip
  • 131 posts

From 1274909773:

Hi, thanks for your comment. You should have modify your prestashop/header.php file to include wiznav hook.
/* Hooks are volontary out the initialize array (need those variables already assigned) */
$smarty->assign(array(
'HOOK_HEADER' => Module::hookExec('header'),
'HOOK_LEFT_COLUMN' => Module::hookExec('leftColumn'),
'HOOK_TOP' => Module::hookExec('top'),
'HOOK_WIZNAV' => Module::hookExec('wiznav'),
'static_token' => Tools::getToken(false),
'token' => Tools::getToken(),
'priceDisplayPrecision' => _PS_PRICE_DISPLAY_PRECISION_,
'content_only' => intval(Tools::getValue('content_only'))
));


Hello, great template, thanks, it doesn't work the wiznav bar...
also if I have modified the header.php
any solution?
thanks

#20
Guest__*
  • Guests
Great theme! I love it. Thank you