Access to PrestaShop corporate website
Bonjour, Invité |
| S'inscrire
Se souvenir de moi Mot de passe oublié ?
Site Map Plan du site Contact us Contactez-nous
PrestaShop e-commerce software
  765 Membres en ligne
Forum  >  English Forum  >  Third party modules  >  Fil

1 de 2
1
Répondre
Nouveau sujet
Blocknavigation (6 blocks in 1) v. [0.5] 0.6

online
Publié : 09 Février 2009 10:25 PM   [ Ignorer ]
V.I.P.
RankRankRankRank
Avatar

Messages :

  • au total : 987
  • 7 derniers jours : 0
Inscrit: 2008-08-10

Hi,
I was searching for some space in my pages,
so I compacted some modules standard and other that I made:
I made a navigation module compact with:
1) Search (optional autocomplete)
2) Categories structurated from the bo
3) Active manufactures
4) Active supplier
5) Tags
6) Cms documents

In FO all is show with combo-box

In the BO (see picture) you can choose what you can validate in fo.

Note: It’s better to remove the original blocks if you activate inside

Version 0.6:
I add options:
Show with products only
Show number of products

Sorry for my english!

Images jointes
FOnavigation.pngBOnavigation.png
Fichiers joints
blocknavigation_06.zip  (Taille du fichier : 14KB - Téléchargements : 1240)
 Signature 

Al mondo ci sono 11 tipi di persone: quelli che capiscono/non capiscono il codice binario e quelli che trovano tutti i moduli su prestamodules raspberry
-- Realizzo moduli e personalizzazioni per prestashop --

 
offline
Publié : 09 Février 2009 11:29 PM   [ Ignorer ]   [ # 1 ]
Club Member
RankRankRank
Avatar

Messages :

  • au total : 250
  • 7 derniers jours : 0
Inscrit: 2008-08-13

Thank you for sharing a good module

 
offline
Publié : 10 Février 2009 01:50 AM   [ Ignorer ]   [ # 2 ]
V.I.P.
RankRankRankRank
Avatar

Messages :

  • au total : 970
  • 7 derniers jours : 0
Inscrit: 2009-01-06

Thanks for sharing. Regard from indonesia.

 Signature 

Free Prestashop Theme from Wordpress Theme
Follow me ardianys
Download iNove Free Prestashop Theme

 
online
Publié : 10 Février 2009 02:39 PM   [ Ignorer ]   [ # 3 ]
V.I.P.
RankRankRankRank
Avatar

Messages :

  • au total : 987
  • 7 derniers jours : 0
Inscrit: 2008-08-10

Please share translations!

 Signature 

Al mondo ci sono 11 tipi di persone: quelli che capiscono/non capiscono il codice binario e quelli che trovano tutti i moduli su prestamodules raspberry
-- Realizzo moduli e personalizzazioni per prestashop --

 
offline
Publié : 13 Février 2009 02:25 AM   [ Ignorer ]   [ # 4 ]
Regular
RankRank

Messages :

  • au total : 57
  • 7 derniers jours : 0
Inscrit: 2009-01-13

thanks for link smile

 
offline
Publié : 14 Février 2009 04:02 PM   [ Ignorer ]   [ # 5 ]
Senior Member
RankRankRank
Avatar

Messages :

  • au total : 419
  • 7 derniers jours : 0
Inscrit: 2009-01-07

Thank you !

Best regards,

Mandrake.

 
offline
Publié : 14 Février 2009 04:58 PM   [ Ignorer ]   [ # 6 ]
Partner
RankRankRankRankRank
Avatar

Messages :

  • au total : 2193
  • 7 derniers jours : 2
Inscrit: 2008-10-06

Very nice work!

 Signature 

Norman in ‘t VeldtModeratorPrestaShopForums
Help PrestaShop, make a donation!

Op PrestaForums.nl vindt je Handleidingen, Handigheden en andere nuttige informatie in het Nederlands.

 
offline
Publié : 14 Février 2009 08:44 PM   [ Ignorer ]   [ # 7 ]
V.I.P.
RankRankRankRank
Avatar

Messages :

  • au total : 656
  • 7 derniers jours : 0
Inscrit: 2009-01-01

It is a very good idea. Thank you for sharing…

 Signature 

Blossomcart

Flowers and Gifts Shop

 
offline
Publié : 15 Février 2009 12:20 AM   [ Ignorer ]   [ # 8 ]
Regular
RankRank
Avatar

Messages :

  • au total : 59
  • 7 derniers jours : 0
Inscrit: 2008-11-26

Hey man !!! Great Job … Thank you !!!

 Signature 

userbar.png

userbarps.png

The Glory, Honor, Power and Strength to the Lord Jesus.

 
offline
Publié : 17 Février 2009 10:13 PM   [ Ignorer ]   [ # 9 ]
Partner
RankRankRankRankRank
Avatar

Messages :

  • au total : 2193
  • 7 derniers jours : 2
Inscrit: 2008-10-06

BUG?

If you choose from the option Categorie part of this great module Home and lets say the Laptops you cannot choose Home again because it already went back to home.
So the customer can only choose another part of your category but never Home.
I find this not user friendly and I think it should stay on the one you have choosen.
Any chance on fixing this?

Same goes for Manufacturers, Suppliers etc.

Thanks!

 Signature 

Norman in ‘t VeldtModeratorPrestaShopForums
Help PrestaShop, make a donation!

Op PrestaForums.nl vindt je Handleidingen, Handigheden en andere nuttige informatie in het Nederlands.

 
online
Publié : 18 Février 2009 12:11 AM   [ Ignorer ]   [ # 10 ]
V.I.P.
RankRankRankRank
Avatar

Messages :

  • au total : 987
  • 7 derniers jours : 0
Inscrit: 2008-08-10

in blocknavigation.tpl:

<!-- Navigationcategories -->
    
{foreach from=$cat_sel item=sel}
        {assign 
var=n value=0}
        {foreach from
=$sel item=opt}
        {if $n
==0}
        
<select id="categories_{$opt.id}" class="nav_input" name="categories_{$opt.id}">
            <
option value="0">{$opt.name}</option>
        
{assign var=n value=1}
        {else}
            
<option value="{$base_dir}category.php?id_category={$opt.id|intval}">{$opt.name}{if $cat_num==1}&nbsp;({$opt.products}){/if}</option>
        
{/if}
        {
/foreach}
        
</select>
    
{/foreach}
<!-- /Navigationcategories -->

to

<!-- Navigationcategories -->
    
{foreach from=$cat_sel item=sel}
        {assign 
var=n value=0}
        
<select id="categories_{$opt.id}" class="nav_input" name="categories_{$opt.id}">
        
{foreach from=$sel item=opt}
            
<option value="{$base_dir}category.php?id_category={$opt.id|intval}">{$opt.name}{if $cat_num==1}&nbsp;({$opt.products}){/if}</option>
        
{/foreach}
        
</select>
    
{/foreach}
<!-- /Navigationcategories -->

I not try but … try it smirk

 Signature 

Al mondo ci sono 11 tipi di persone: quelli che capiscono/non capiscono il codice binario e quelli che trovano tutti i moduli su prestamodules raspberry
-- Realizzo moduli e personalizzazioni per prestashop --

 
offline
Publié : 19 Avril 2009 11:53 PM   [ Ignorer ]   [ # 11 ]
Club Member
RankRankRank
Avatar

Messages :

  • au total : 132
  • 7 derniers jours : 0
Inscrit: 2009-04-17

Regards from Kazakhstan. Thanks for sharing

 Signature 

With regards from Kazakhstan kiss
http://www.buy.tentorium.kz
http://www.mti-shop.com

 
offline
Publié : 23 Mai 2009 12:31 AM   [ Ignorer ]   [ # 12 ]
Apprentice
RankRank

Messages :

  • au total : 25
  • 7 derniers jours : 0
Inscrit: 2009-05-08

Hi Vinoalvino

Thanks for sharing:-)

I´d like to know if the last version of that nice mod is full compatible with Presta 1.2.1 alfa.

Trying to install It on my local test server I have some errors:

Warning: require_once() [function.require-once]: Unable to access F:\OpenSource\prestashop\server2go_a2_psm\distribute_apache2.0\htdocs\multishop\config/../classes/ZipArchive.php in F:\OpenSource\prestashop\server2go_a2_psm\distribute_apache2.0\htdocs\multishop\config\config.inc.php on line 20

Warning: require_once(F:\OpenSource\prestashop\server2go_a2_psm\distribute_apache2.0\htdocs\multishop\config/../classes/ZipArchive.php) [function.require-once]: failed to open stream: Result too large in F:\OpenSource\prestashop\server2go_a2_psm\distribute_apache2.0\htdocs\multishop\config\config.inc.php on line 20

Fatal error: require_once() [function.require]: Failed opening required ‘F:\OpenSource\prestashop\server2go_a2_psm\distribute_apache2.0\htdocs\multishop\config/../classes/ZipArchive.php’ (include_path=’.;F:\OpenSource\prestashop\server2go_a2_psm\distribute_apache2.0\server\php\PEAR’) in F:\OpenSource\prestashop\server2go_a2_psm\distribute_apache2.0\htdocs\multishop\config\config.inc.php on line 20

and my blocks tab got broken, I had to uninstall the mod.

Thank you very much.

 Signature 

Brazilian Community
http://www.prestashopbr.com

 
offline
Publié : 24 Mai 2009 08:57 PM   [ Ignorer ]   [ # 13 ]
Apprentice
RankRank

Messages :

  • au total : 25
  • 7 derniers jours : 0
Inscrit: 2009-05-08

Does anyone confirm that behavior on 1.2.1 alfa???

Thanks

 Signature 

Brazilian Community
http://www.prestashopbr.com

 
offline
Publié : 25 Mai 2009 08:28 PM   [ Ignorer ]   [ # 14 ]
Apprentice
RankRank

Messages :

  • au total : 25
  • 7 derniers jours : 0
Inscrit: 2009-05-08

Hi

Jus a little bump grin

 Signature 

Brazilian Community
http://www.prestashopbr.com

 
offline
Publié : 25 Mai 2009 09:40 PM   [ Ignorer ]   [ # 15 ]
Apprentice
RankRank

Messages :

  • au total : 25
  • 7 derniers jours : 0
Inscrit: 2009-05-18

wilson - 25 Mai 2009 08:28 PM
Jus a little bump grin
I am using Prestashop: Version 1.2.0.2 – 0.863s. I just installed this module and it works just fine.

 
 
1 de 2
1
Réponse rapide
Nouveau sujet