[TYPO3-commerce] Shop Navigation does not show up with alternative Site Language [solved]

Stefan Kraus - NETFORMIC GmbH stefan.kraus at netformic.de
Fri Mar 20 14:29:41 CET 2009


Thanks to Sascha, 
with two snippets from the latest trunk-version of class.tx_commerce_navigation.php it finally works.

Just add:

if ( ($GLOBALS['TSFE']->tmpl->setup['config.']['sys_language_uid'] > 0) || ($GLOBALS['TSFE']->tmpl->setup['page.']['config.']['sys_language_uid'] > 0)) {
 	$nodeArray['_PAGES_OVERLAY'] = $dataRow['title'];
}

to function makeArrayPostRender and makeSubChildArrayPostRender after the line $nodeArray['title'] = $dataRow['title'];

Greeting,
Stefan Kraus


-----Ursprüngliche Nachricht-----
Von: typo3-project-commerce-bounces at lists.netfielders.de [mailto:typo3-project-commerce-bounces at lists.netfielders.de] Im Auftrag von typo3-project-commerce-request at lists.netfielders.de
Gesendet: Dienstag, 17. März 2009 12:36
An: typo3-project-commerce at lists.netfielders.de
Betreff: TYPO3-project-commerce Digest, Vol 26, Issue 11

Send TYPO3-project-commerce mailing list submissions to
	typo3-project-commerce at lists.netfielders.de

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

or, via email, send a message with subject or body 'help' to
	typo3-project-commerce-request at lists.netfielders.de

You can reach the person managing the list at
	typo3-project-commerce-owner at lists.netfielders.de

When replying, please edit your Subject line so it is more specific than "Re: Contents of TYPO3-project-commerce digest..."


Today's Topics:

   1. Re: TYPO3-project-commerce Digest, Vol 26, Issue 10
      (Stefan Kraus - NETFORMIC GmbH)
   2. Re: TYPO3-project-commerce Digest, Vol 26, Issue 8
      (Stefan Kraus - NETFORMIC GmbH)


----------------------------------------------------------------------

Message: 1
Date: Tue, 17 Mar 2009 12:26:08 +0100
From: "Stefan Kraus - NETFORMIC GmbH" <stefan.kraus at netformic.de>
Subject: Re: [TYPO3-commerce] TYPO3-project-commerce Digest, Vol 26,
	Issue 10
To: <typo3-project-commerce at lists.netfielders.de>
Message-ID:
	<mailman.857.1237289177.27889.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain;	charset="iso-8859-1"

Hello Mario,

I think you have to put the expandAll = 1 in the special part of your TS 

special {
...
	expandAll = 1
...
}

So it worked for me for instance...

greetings, Stefan

-----Urspr?ngliche Nachricht-----
Von: typo3-project-commerce-bounces at lists.netfielders.de [mailto:typo3-project-commerce-bounces at lists.netfielders.de] Im Auftrag von typo3-project-commerce-request at lists.netfielders.de
Gesendet: Dienstag, 17. M?rz 2009 12:00
An: typo3-project-commerce at lists.netfielders.de
Betreff: TYPO3-project-commerce Digest, Vol 26, Issue 10

Send TYPO3-project-commerce mailing list submissions to
	typo3-project-commerce at lists.netfielders.de

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

or, via email, send a message with subject or body 'help' to
	typo3-project-commerce-request at lists.netfielders.de

You can reach the person managing the list at
	typo3-project-commerce-owner at lists.netfielders.de

When replying, please edit your Subject line so it is more specific than "Re: Contents of TYPO3-project-commerce digest..."


Today's Topics:

   1. Re: expAll for shopmenu (Mario Hinterreiter)


----------------------------------------------------------------------

Message: 1
Date: Tue, 17 Mar 2009 10:10:33 +0100
From: Mario Hinterreiter <mrng at gmx.net>
Subject: Re: [TYPO3-commerce] expAll for shopmenu
To: TYPO3 commerce extension project
	<typo3-project-commerce at lists.netfielders.de>
Message-ID:
	<mailman.788.1237281040.27889.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset=ISO-8859-15; format=flowed

Hi Sascha,

Thanks for your help, but I'm afraid expandAll doesn't work either. :-(

cheers, mario

Sascha Egerer schrieb:
> Hi Mario,
> 
> the correct value should be expandAll.
> 
> lib.catmenu.1.expandAll = 1
> 
> Greets
> 
> Sascha
> 
> ***************************************
> SoftVision Media GmbH
> 
> Sascha Egerer
> 
> Firmensitz:
> Kurf?rstenstra?e 15, 36037 Fulda
> 
> Telefon. 0661.242 767.0
> Telefax. 0661.242 767.1
> 
> eMail. seg at softvision.de
> web. www.softvision-media.de
> 
> Registergericht:
> Amtsgericht Fulda, HRB 2278
> 
> Gesch?ftsf?hrer:
> Christian Schiller
> ***************************************
> We solve problems!
> ***************************************
> 
> 
> Mario Hinterreiter schrieb:
>> Hi,
>>
>> Does anyone of you know how to show the shopmenu opened, so that all 
>> products can be seen immediately?
>> As with "expAll = 1" in a normal menu but expAll seems not to work here.
>>
>> I created my shopmenu as described here: 
>> http://www.sk-typo3.de/Shop-aufsetzen-mit-commerce-Quickt.286.0.html
>>
>> ... and that's my TS for the menu:
>>
>> lib.catmenu = HMENU
>> lib.catmenu {
>>
>>     wrap = <div class="pN"> | </div>
>>
>>         special = userfunction
>>         special.userFunc = user_tx_commerce_catmenu_pub->init
>>         special {
>>                 category = {$plugin.tx_commerce_lib.catUid}
>>                 showProducts = 0
>>                 overridePid = {$plugin.tx_commerce_lib.overridePid}
>>         }
>>
>>     1 = TMENU
>>     1 {
>>         wrap = <ul>|</ul>
>>         itemArrayProcFunc = user_tx_commerce_catmenu_pub->clear
>>             expAll = 1
>>             noBlur = 1
>>            
>>             NO.wrapItemAndSub = <li>|</li>
>>     }
>>     
>>     2 < .1
>>     3 < .1
>> }
>>
>> cheers, mario
>>
>>
> _______________________________________________
> TYPO3-project-commerce mailing list
> TYPO3-project-commerce at lists.netfielders.de
> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-com
> merce
> 


------------------------------

_______________________________________________
TYPO3-project-commerce mailing list
TYPO3-project-commerce at lists.netfielders.de
http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

End of TYPO3-project-commerce Digest, Vol 26, Issue 10
******************************************************


------------------------------

Message: 2
Date: Tue, 17 Mar 2009 12:35:49 +0100
From: "Stefan Kraus - NETFORMIC GmbH" <stefan.kraus at netformic.de>
Subject: Re: [TYPO3-commerce] TYPO3-project-commerce Digest, Vol 26,
	Issue 8
To: <typo3-project-commerce at lists.netfielders.de>
Message-ID:
	<mailman.860.1237289759.27889.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain;	charset="iso-8859-1"

Hello Sascha,

Thanks for the Tipp with the latest trunk Version!
So my Maincategories now appear in the Navigation. 
But Subcategories and Products are still not showing up.
I only took some parts from the class.tx_commerce_navigation.php.
If replacing the whole class, the Menustates were changed too much and i would have to build another TS.
Does the navigation class do all the work, or is there another class i could try to replace?

Thanks a lot,
Stefan

-----Urspr?ngliche Nachricht-----
Von: typo3-project-commerce-bounces at lists.netfielders.de [mailto:typo3-project-commerce-bounces at lists.netfielders.de] Im Auftrag von typo3-project-commerce-request at lists.netfielders.de
Gesendet: Sonntag, 15. M?rz 2009 12:00
An: typo3-project-commerce at lists.netfielders.de
Betreff: TYPO3-project-commerce Digest, Vol 26, Issue 8

Send TYPO3-project-commerce mailing list submissions to
	typo3-project-commerce at lists.netfielders.de

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

or, via email, send a message with subject or body 'help' to
	typo3-project-commerce-request at lists.netfielders.de

You can reach the person managing the list at
	typo3-project-commerce-owner at lists.netfielders.de

When replying, please edit your Subject line so it is more specific than "Re: Contents of TYPO3-project-commerce digest..."


Today's Topics:

   1. Re: TYPO3-project-commerce Digest, Vol 26, Issue 6 (Sascha Egerer)


----------------------------------------------------------------------

Message: 1
Date: Sat, 14 Mar 2009 12:31:19 +0100
From: Sascha Egerer <seg at softvision.de>
Subject: Re: [TYPO3-commerce] TYPO3-project-commerce Digest, Vol 26,
	Issue 6
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1237030280.14366.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Hi Stefan,

have you tried the latest dev version from trunk?
http://forge.typo3.org/repositories/show/extension-commerce

Greets

sascha

Stefan Kraus - NETFORMIC GmbH schrieb:
> Hi,
> 
> Thanks for the answer,
> 
> only the Subfolders for Incoming / Working / Waiting / Delivered had no Translation. 
> I added the "alternative language record" for those, but still get no category-tree in the shop.
> 
> Any other Ideas? Which Classes / Functions are responsible for the Navigation-Rendering in Typo?
> The Data from the class.tx_commerce_navigation.php seems to be ok. 
> The only difference between the german and english navigation array are the categorie and product titles.
> So the output had to be stopped by a function that renders the menu i guess...
> 
> Anybody ever configurated this or had similar problems?
> Please Help!
> 
> 
> -----Urspr?ngliche Nachricht-----
> Von: typo3-project-commerce-bounces at lists.netfielders.de
> [mailto:typo3-project-commerce-bounces at lists.netfielders.de] Im 
> Auftrag von typo3-project-commerce-request at lists.netfielders.de
> Gesendet: Donnerstag, 12. M?rz 2009 13:40
> An: typo3-project-commerce at lists.netfielders.de
> Betreff: TYPO3-project-commerce Digest, Vol 26, Issue 6
> 
> Send TYPO3-project-commerce mailing list submissions to
> 	typo3-project-commerce at lists.netfielders.de
> 
> To subscribe or unsubscribe via the World Wide Web, visit
> 	
> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-com
> merce
> 
> or, via email, send a message with subject or body 'help' to
> 	typo3-project-commerce-request at lists.netfielders.de
> 
> You can reach the person managing the list at
> 	typo3-project-commerce-owner at lists.netfielders.de
> 
> When replying, please edit your Subject line so it is more specific than "Re: Contents of TYPO3-project-commerce digest..."
> 
> 
> Today's Topics:
> 
>    1. Re: Shop Navigation does not show up with alternative Site
>       Language (Sascha Egerer)
>    2. Re: commerce_german_tax_rate: Categories : Data Structure
>       ERROR (Sascha Egerer)
>    3. Re: Missing attribute drop-dowm menu (Sascha Egerer)
>    4. Re: category-tree (graytree) and article-prices are broken in
>       commerce 0.11.4? (Sascha Egerer)
>    5. Re: expAll for shopmenu (Sascha Egerer)
>    6. Re: category-tree (graytree) and article-prices	are broken in
>       commerce 0.11.4? (Alexander Elsner)
>    7. Re: category-tree (graytree) and article-prices are broken in
>       commerce 0.11.4? (Josef Prochazka)
> 
> 
> ----------------------------------------------------------------------
> 
> Message: 1
> Date: Thu, 12 Mar 2009 12:08:59 +0100
> From: Sascha Egerer <seg at softvision.de>
> Subject: Re: [TYPO3-commerce] Shop Navigation does not show up with
> 	alternative Site Language
> To: typo3-project-commerce at lists.netfielders.de
> Message-ID:
> 	
> <mailman.1.1236856139.19798.typo3-project-commerce at lists.netfielders.d
> e>
> 	
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> Hi Stefan,
> 
> have you added a translation for the commerce sys-folders? Afaik you have to add a "alternative language record" for each Sysfolger of Commerce.
> 
> Greets
> 
> Sascha
> 
> ***************************************
> SoftVision Media GmbH
> 
> Sascha Egerer
> 
> Firmensitz:
> Kurf?rstenstra?e 15, 36037 Fulda
> 
> Telefon. 0661.242 767.0
> Telefax. 0661.242 767.1
> 
> eMail. seg at softvision.de
> web. www.softvision-media.de
> 
> Registergericht:
> Amtsgericht Fulda, HRB 2278
> 
> Gesch?ftsf?hrer:
> Christian Schiller
> ***************************************
> We solve problems!
> ***************************************
> 
> 
> Stefan Kraus - NETFORMIC GmbH schrieb:
>> Hello,
>>  
>> My Project is a Multilanguage-Page with two Commerce-Shops
>>  
>> tx_commerce 0.9.8
>> graytree 0.2.1
>>  
>> I'm using following TS Code for my Shop Category + Product Menu:
>>  
>> ##########################################
>> lib.navigationCommerce = HMENU
>> lib.navigationCommerce {
>>  
>>   special = userfunction
>>         special {
>>     userFunc = user_tx_commerce_catmenu_pub->init 
>>                 #category = 2
>>     category = {$plugin.tx_commerce_lib.catUid}
>>                 showProducts = 1
>>     expAll = 1
>>                 overridePid = {$plugin.tx_commerce_lib.overridePid}
>>         }
>>  
>>         1 = TMENU
>>         1 {
>>                 wrap = <ul class="navigation-vertical-1">|</ul>
>>                 itemArrayProcFunc = user_tx_commerce_catmenu_pub->clear
>>                 noBlur = 1
>>                 NO.wrapItemAndSub = <li><span 
>> class="navigation-vertical-1-span">|</span></li>
>>  
>>                 ACT = 1
>>     ACT.doNotLinkIt = 1
>>                 ACT.wrapItemAndSub = <li 
>> class="navigation-level1-active"><span
>> class="navigation-vertical-1-active-span">|</span></li>
>>  
>>                 CUR = 1
>>     CUR.doNotLinkIt = 1
>>                 CUR.wrapItemAndSub = <li class="navigation-level1-active"><span class="navigation-vertical-1-active-span">|</span></li>
>>    }
>>  
>>     ... then the levels 2, 3, 4, 5 ...
>>  
>> }
>> ##########################################
>>  
>> In my default Langugae "german" everything is fine. When i switch to my alternativeSite Langugae "english" the Menu is not showing up.
>> When i look at the output from the user_tx_commerce_catmenu_pub, the 
>> array in $mTree it's all the same, just the English titles instead of the german titles. Same IDs and everything.
>>  
>> So perhaps the HMENU Function does not output my Menu?
>> The normal Navigation and Content are displayed in german and english without errors.
>>  
>> Did anyone have this Error and cann tell me where to look for the solution?
>>  
>>  
>> Mit freundlichen Gr??en
>>
>> Stefan Kraus
>> Senior Web-Developer
>> ____________________________________________
>>
>> Direkt: 
>> E-Mail: stefan.kraus at netformic.de
>>
>> NETFORMIC GmbH
>> Hermannstra?e 5A
>> 70178 Stuttgart
>> Telefon: +49 (0)711 673740-0
>> Telefax: +49 (0)711 673740-26
>> Internet: http://www.netformic.de
>>
>> Amtsgericht Stuttgart, HRB 720729
>> Gesch?ftsf?hrer: Stephan Sigloch, Timo Weltner 
>> ____________________________________________
>> Wir bei Google Maps: http://miclink.de/21774 
>> <http://miclink.de/21774>
>>  
> 
> 
> ------------------------------
> 
> Message: 2
> Date: Thu, 12 Mar 2009 12:11:58 +0100
> From: Sascha Egerer <seg at softvision.de>
> Subject: Re: [TYPO3-commerce] commerce_german_tax_rate: Categories :
> 	Data Structure ERROR
> To: typo3-project-commerce at lists.netfielders.de
> Message-ID:
> 	
> <mailman.1.1236856318.19798.typo3-project-commerce at lists.netfielders.d
> e>
> 	
> Content-Type: text/plain; charset=ISO-8859-15; format=flowed
> 
> Hi Michael,
> 
> i don't think that this extension has something to do with you problem. 
> The extension simply modifies the TCA of tx_commerce_articles. So there is no change made with categories.
> 
> Greets
> Sascha
> 
> ***************************************
> SoftVision Media GmbH
> 
> Sascha Egerer
> 
> Firmensitz:
> Kurf?rstenstra?e 15, 36037 Fulda
> 
> Telefon. 0661.242 767.0
> Telefax. 0661.242 767.1
> 
> eMail. seg at softvision.de
> web. www.softvision-media.de
> 
> Registergericht:
> Amtsgericht Fulda, HRB 2278
> 
> Gesch?ftsf?hrer:
> Christian Schiller
> ***************************************
> We solve problems!
> ***************************************
> 
> Michael Janssen schrieb:
>> Hi,
>>
>> with the newest version from forge and "Commerce German tax rates" 
>> enabled, there is an error with making new categories. Under "Select 
>> Attributes" there is only the text: Data Structure ERROR: No ROOT 
>> element found for sheet "sDEF". If i disable "Commerce German tax rates"
>> everthing is okay. Under forge there is no project for this extension. 
>> And i think on this way the bug-report will be read ;-)
>>
>> Wishes,
>>
>> Michael
> 
> 
> ------------------------------
> 
> Message: 3
> Date: Thu, 12 Mar 2009 12:14:31 +0100
> From: Sascha Egerer <seg at softvision.de>
> Subject: Re: [TYPO3-commerce] Missing attribute drop-dowm menu
> To: typo3-project-commerce at lists.netfielders.de
> Message-ID:
> 	
> <mailman.1.1236856471.19798.typo3-project-commerce at lists.netfielders.d
> e>
> 	
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> Hi Franz,
> 
> should be fixed in trunk Version...
> 
> 
> Greets sascha
> 
> ***************************************
> SoftVision Media GmbH
> 
> Sascha Egerer
> 
> Firmensitz:
> Kurf?rstenstra?e 15, 36037 Fulda
> 
> Telefon. 0661.242 767.0
> Telefax. 0661.242 767.1
> 
> eMail. seg at softvision.de
> web. www.softvision-media.de
> 
> Registergericht:
> Amtsgericht Fulda, HRB 2278
> 
> Gesch?ftsf?hrer:
> Christian Schiller
> ***************************************
> We solve problems!
> ***************************************
> 
> Franz Steinmetz schrieb:
>> OK I have more information, perhaps I have found a bug:
>>
>> In class.tx_commerce_p1.php the markers
>>
>> $markerArray['###SELECT_ATTRIBUTES_TITLE###']
>> $markerArray['###SELECT_ATTRIBUTES_ON_CHANGE###']
>> $markerArray['###SELECT_ATTRIBUTES_HTML_ELEMENT_KEY###']
>> $markerArray['###SELECT_ATTRIBUTES_HTML_ELEMENT_NAME###']
>> $markerArray['###SELECT_ATTRIBUTES_ITEM_TEXT_ALL###']
>> $markerArray['###SELECT_ATTRIBUTES_UNIT###']
>>
>> are replaced. But these markers do not exist! It seems that the template file isn't updated with these new markers, that do not exist in the old version (0.9.4).
>>
>> Can anyone verify this?
>>
>>  Franz
>>
>>
>>
>>
>>
>> ----- Urspr?ngliche Mail ----
>> Von: Franz Steinmetz <franzlst at yahoo.de>
>> An: typo3-project-commerce at lists.netfielders.de
>> Gesendet: Samstag, den 14. Februar 2009, 16:10:03 Uhr
>> Betreff: [TYPO3-commerce] Missing attribute drop-dowm menu
>>
>>
>> Hi,
>>
>> I started a new commerce shop in the official version 0.9.4 and then updated to 0.11.7 from the repository (also run UPDATE in the option menu of this extension). I use Typo 4.2.5 PHP 5 and the newest versions of the needed extensions.
>> Everything seems to work well, except the drop-down menu where you select the attribte values aren't shown. plugin.tx_commerce_pi1.allArticlesis set to 0 (set to 1 all possible articels are shown correctly).
>>
>> In the documentation I read that havascript must be enabled for this option, thus I assume commerce includes some javascript, but neither a *.jsfile in imported, nor the sourcecode of the html page is extended with some javascript code. Is that OK?
>>
>> I use the standart templates and haven't changed anything.What else can I do? All past bugs with the drop-down menu should have been selved in 0.11.7, shouldn't they?
>>
>> I hope you can help me
>>
>> Franz
>>
>>
>>       
>> _______________________________________________
>> TYPO3-project-commerce mailing list
>> TYPO3-project-commerce at lists.netfielders.de
>> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-co
>> m
>> merce
>>
>>
>>
>>       
> 
> 
> ------------------------------
> 
> Message: 4
> Date: Thu, 12 Mar 2009 12:16:48 +0100
> From: Sascha Egerer <seg at softvision.de>
> Subject: Re: [TYPO3-commerce] category-tree (graytree) and
> 	article-prices are broken in commerce 0.11.4?
> To: typo3-project-commerce at lists.netfielders.de
> Message-ID:
> 	
> <mailman.1.1236856608.19798.typo3-project-commerce at lists.netfielders.d
> e>
> 	
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> Hi,
> 
> did you already execute the UPDATE! function in the extension manager? 
> If click on the extension you get a dropdown on the upper left side. 
> There is a Point UPDATE! wich updates some required Database 
> informations
> 
> Greets
> Sascha
> 
> ***************************************
> SoftVision Media GmbH
> 
> Sascha Egerer
> 
> Firmensitz:
> Kurf?rstenstra?e 15, 36037 Fulda
> 
> Telefon. 0661.242 767.0
> Telefax. 0661.242 767.1
> 
> eMail. seg at softvision.de
> web. www.softvision-media.de
> 
> Registergericht:
> Amtsgericht Fulda, HRB 2278
> 
> Gesch?ftsf?hrer:
> Christian Schiller
> ***************************************
> We solve problems!
> ***************************************
> 
> Josef Prochazka schrieb:
>> Alexander Elsner napsal(a):
>>> Von: Alexander Elsner Gesendet: Donnerstag, 5. M?rz 2009 10:54
>>> An: typo3-project-commerce at lists.netfielders.de
>>> Betreff: category-tree (graytree) and article-prices are broken in 
>>> commerce 0.11.4?
>>>
>>>
>>> Hallo,
>>> ich habe das selbe problem mit dem cartree:
>>> http://lists.netfielders.de/pipermail/typo3-project-commerce/2009-Ja
>>> n
>>> uary/002634.html
>>>
>>>  
>>> Gibt es daf?r schon eine L?sung?
>>>  
>>> Besten Dank und gru? Alex
>> Hello,
>>
>> I have got the same problem, I solved it by not using  gray tree. 
>> However there is  missing parent category for root categories. So it 
>> seems as it is not working. In backend is root category (Categories) 
>> disallowed as a parent category so if you create a category, category 
>> is created but with no parent category and you can't see any categories in
>>   category tree. To solve it you need to create a correct record in 
>> category_parent_mm table. I don't know yet how to enable the root 
>> category as a valid parent categories for subcategories.
>>
>> Regard
>>
>> pepa
> 
> 
> ------------------------------
> 
> Message: 5
> Date: Thu, 12 Mar 2009 12:18:56 +0100
> From: Sascha Egerer <seg at softvision.de>
> Subject: Re: [TYPO3-commerce] expAll for shopmenu
> To: typo3-project-commerce at lists.netfielders.de
> Message-ID:
> 	
> <mailman.1.1236856736.19798.typo3-project-commerce at lists.netfielders.d
> e>
> 	
> Content-Type: text/plain; charset=ISO-8859-15; format=flowed
> 
> Hi Mario,
> 
> the correct value should be expandAll.
> 
> lib.catmenu.1.expandAll = 1
> 
> Greets
> 
> Sascha
> 
> ***************************************
> SoftVision Media GmbH
> 
> Sascha Egerer
> 
> Firmensitz:
> Kurf?rstenstra?e 15, 36037 Fulda
> 
> Telefon. 0661.242 767.0
> Telefax. 0661.242 767.1
> 
> eMail. seg at softvision.de
> web. www.softvision-media.de
> 
> Registergericht:
> Amtsgericht Fulda, HRB 2278
> 
> Gesch?ftsf?hrer:
> Christian Schiller
> ***************************************
> We solve problems!
> ***************************************
> 
> 
> Mario Hinterreiter schrieb:
>> Hi,
>>
>> Does anyone of you know how to show the shopmenu opened, so that all 
>> products can be seen immediately?
>> As with "expAll = 1" in a normal menu but expAll seems not to work here.
>>
>> I created my shopmenu as described here: 
>> http://www.sk-typo3.de/Shop-aufsetzen-mit-commerce-Quickt.286.0.html
>>
>> ... and that's my TS for the menu:
>>
>> lib.catmenu = HMENU
>> lib.catmenu {
>>
>>     wrap = <div class="pN"> | </div>
>>
>>         special = userfunction
>>         special.userFunc = user_tx_commerce_catmenu_pub->init
>>         special {
>>                 category = {$plugin.tx_commerce_lib.catUid}
>>                 showProducts = 0
>>                 overridePid = {$plugin.tx_commerce_lib.overridePid}
>>         }
>>
>>     1 = TMENU
>>     1 {
>>         wrap = <ul>|</ul>
>>         itemArrayProcFunc = user_tx_commerce_catmenu_pub->clear
>>             expAll = 1
>>             noBlur = 1
>>            
>>             NO.wrapItemAndSub = <li>|</li>
>>     }
>>     
>>     2 < .1
>>     3 < .1
>> }
>>
>> cheers, mario
>>
>>
> 
> 
> ------------------------------
> 
> Message: 6
> Date: Thu, 12 Mar 2009 12:44:58 +0100
> From: "Alexander Elsner" <Alexander.Elsner at alroma.de>
> Subject: Re: [TYPO3-commerce] category-tree (graytree) and
> 	article-prices	are broken in commerce 0.11.4?
> To: "TYPO3 commerce extension project"
> 	<typo3-project-commerce at lists.netfielders.de>
> Message-ID:
> 	
> <mailman.49586.1236858414.2904.typo3-project-commerce at lists.netfielder
> s.de>
> 	
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Hi,
> after the Update function the tree is working now.
> 
> -> If i use graytree the tree is cut off by articles.
> 
> Thanks
> 
> 
> 
> -----Urspr?ngliche Nachricht-----
> Von: typo3-project-commerce-bounces at lists.netfielders.de im Auftrag 
> von Sascha Egerer
> Gesendet: Do 12.03.2009 12:23
> An: typo3-project-commerce at lists.netfielders.de
> Betreff: Re: [TYPO3-commerce] category-tree (graytree) and article-prices are broken in commerce 0.11.4?
>  
> Hi,
> 
> did you already execute the UPDATE! function in the extension manager? 
> If click on the extension you get a dropdown on the upper left side. 
> There is a Point UPDATE! wich updates some required Database 
> informations
> 
> Greets
> Sascha
> 
> ***************************************
> SoftVision Media GmbH
> 
> Sascha Egerer
> 
> Firmensitz:
> Kurf?rstenstra?e 15, 36037 Fulda
> 
> Telefon. 0661.242 767.0
> Telefax. 0661.242 767.1
> 
> eMail. seg at softvision.de
> web. www.softvision-media.de
> 
> Registergericht:
> Amtsgericht Fulda, HRB 2278
> 
> Gesch?ftsf?hrer:
> Christian Schiller
> ***************************************
> We solve problems!
> ***************************************
> 
> Josef Prochazka schrieb:
>> Alexander Elsner napsal(a):
>>> Von: Alexander Elsner Gesendet: Donnerstag, 5. M?rz 2009 10:54
>>> An: typo3-project-commerce at lists.netfielders.de
>>> Betreff: category-tree (graytree) and article-prices are broken in 
>>> commerce 0.11.4?
>>>
>>>
>>> Hallo,
>>> ich habe das selbe problem mit dem cartree:
>>> http://lists.netfielders.de/pipermail/typo3-project-commerce/2009-Ja
>>> n
>>> uary/002634.html
>>>
>>>  
>>> Gibt es daf?r schon eine L?sung?
>>>  
>>> Besten Dank und gru? Alex
>> Hello,
>>
>> I have got the same problem, I solved it by not using  gray tree. 
>> However there is  missing parent category for root categories. So it 
>> seems as it is not working. In backend is root category (Categories) 
>> disallowed as a parent category so if you create a category, category 
>> is created but with no parent category and you can't see any categories in
>>   category tree. To solve it you need to create a correct record in 
>> category_parent_mm table. I don't know yet how to enable the root 
>> category as a valid parent categories for subcategories.
>>
>> Regard
>>
>> pepa
> _______________________________________________
> TYPO3-project-commerce mailing list
> TYPO3-project-commerce at lists.netfielders.de
> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-com
> merce
> 
> 
> 
> 
> 
> ------------------------------
> 
> Message: 7
> Date: Thu, 12 Mar 2009 13:38:09 +0100
> From: Josef Prochazka <pepa at comlinks.cz>
> Subject: Re: [TYPO3-commerce] category-tree (graytree) and
> 	article-prices are broken in commerce 0.11.4?
> To: typo3-project-commerce at lists.netfielders.de
> Message-ID:
> 	
> <mailman.1.1236861536.19648.typo3-project-commerce at lists.netfielders.d
> e>
> 	
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> Alexander Elsner napsal(a):
>> Hi,
>> after the Update function the tree is working now.
>>
>> -> If i use graytree the tree is cut off by articles.
>>
>> Thanks
>>
>>
>>
>> -----Urspr?ngliche Nachricht-----
>> Von: typo3-project-commerce-bounces at lists.netfielders.de im Auftrag 
>> von Sascha Egerer
>> Gesendet: Do 12.03.2009 12:23
>> An: typo3-project-commerce at lists.netfielders.de
>> Betreff: Re: [TYPO3-commerce] category-tree (graytree) and article-prices are broken in commerce 0.11.4?
>>  
>> Hi,
>>
>> did you already execute the UPDATE! function in the extension manager? 
>> If click on the extension you get a dropdown on the upper left side. 
>> There is a Point UPDATE! wich updates some required Database 
>> informations
>>
>> Greets
>> Sascha
>>
>> ***************************************
>> SoftVision Media GmbH
>>
>> Sascha Egerer
>>
>> Firmensitz:
>> Kurf?rstenstra?e 15, 36037 Fulda
>>
>> Telefon. 0661.242 767.0
>> Telefax. 0661.242 767.1
>>
>> eMail. seg at softvision.de
>> web. www.softvision-media.de
>>
>> Registergericht:
>> Amtsgericht Fulda, HRB 2278
>>
>> Gesch?ftsf?hrer:
>> Christian Schiller
>> ***************************************
>> We solve problems!
>> ***************************************
>>
>> Josef Prochazka schrieb:
>>> Alexander Elsner napsal(a):
>>>> Von: Alexander Elsner Gesendet: Donnerstag, 5. M?rz 2009 10:54
>>>> An: typo3-project-commerce at lists.netfielders.de
>>>> Betreff: category-tree (graytree) and article-prices are broken in 
>>>> commerce 0.11.4?
>>>>
>>>>
>>>> Hallo,
>>>> ich habe das selbe problem mit dem cartree:
>>>> http://lists.netfielders.de/pipermail/typo3-project-commerce/2009-J
>>>> a
>>>> nuary/002634.html
>>>>
>>>>  
>>>> Gibt es daf?r schon eine L?sung?
>>>>  
>>>> Besten Dank und gru? Alex
>>> Hello,
>>>
>>> I have got the same problem, I solved it by not using  gray tree. 
>>> However there is  missing parent category for root categories. So it 
>>> seems as it is not working. In backend is root category (Categories) 
>>> disallowed as a parent category so if you create a category, 
>>> category is created but with no parent category and you can't see any categories in
>>>   category tree. To solve it you need to create a correct record in 
>>> category_parent_mm table. I don't know yet how to enable the root 
>>> category as a valid parent categories for subcategories.
>>>
>>> Regard
>>>
>>> pepa
>> _______________________________________________
>> TYPO3-project-commerce mailing list
>> TYPO3-project-commerce at lists.netfielders.de
>> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-co
>> m
>> merce
>>
>>
>>
>>
> Hi Sascha,
> 
> thanks, that was the problem :-) . Actually I had not know about this Update function in extension manager. I was used to use only update button below the extension settings. Is there somwhere some description how to use this update function ? Or would it be somehow to highlight the button when update option is available ?
> 
> Regards
> 
> Pepa
> 
> 
> ------------------------------
> 
> _______________________________________________
> TYPO3-project-commerce mailing list
> TYPO3-project-commerce at lists.netfielders.de
> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-com
> merce
> 
> End of TYPO3-project-commerce Digest, Vol 26, Issue 6
> *****************************************************


------------------------------

_______________________________________________
TYPO3-project-commerce mailing list
TYPO3-project-commerce at lists.netfielders.de
http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

End of TYPO3-project-commerce Digest, Vol 26, Issue 8
*****************************************************


------------------------------

_______________________________________________
TYPO3-project-commerce mailing list
TYPO3-project-commerce at lists.netfielders.de
http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

End of TYPO3-project-commerce Digest, Vol 26, Issue 11
******************************************************


More information about the TYPO3-project-commerce mailing list