TYPO3Jack.net - Das TYPO3 Mailinglist Forum Archiv

TYPO3 Mailingliste: nicht fragen - lesen!

TYPO3 Mailingliste: nicht fragen - lesen!_RR_1-->
Zurück   TYPO3Jack.net - Das TYPO3 Mailinglist Forum Archiv > TYPO3-Mailinglists: ENGLISH > typo3-project-tt-products@lists.netfielders.de

Registrieren Hilfe Benutzerliste Kalender Suchen Heutige Beiträge Alle Foren als gelesen markieren
  #1  
Alt 07.03.2008, 07:28
Simon Browning
Gast
 
Beiträge: n/a
Standard [TYPO3-shop] Empty category

Is it possible to hide, or just not include empty categories?

Thank you.

Simon
_______________________________________________
TYPO3-project-tt-products mailing list
TYPO3-project-tt-products (AT) lists...netfielders.de
http://lists.netfielders.de/cgi-bin/...ct-tt-products
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
  #2  
Alt 07.03.2008, 08:06
Franz Holzinger
Gast
 
Beiträge: n/a
Standard Re: [TYPO3-shop] Empty category

Simon Browning a écrit :
> Is it possible to hide, or just not include empty categories?


Why don't you set them hidden in the backend? For what are they needed then?

- Franz

_______________________________________________
TYPO3-project-tt-products mailing list
TYPO3-project-tt-products (AT) lists...netfielders.de
http://lists.netfielders.de/cgi-bin/...ct-tt-products
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
  #3  
Alt 07.03.2008, 08:35
Simon Browning
Gast
 
Beiträge: n/a
Standard Re: [TYPO3-shop] Empty category

Franz Holzinger wrote:
> Simon Browning a écrit :
>> Is it possible to hide, or just not include empty categories?

>
> Why don't you set them hidden in the backend? For what are they needed then?
>
> - Franz
>


I don't have hide as an option for the categories - should it be there?
I thought it was odd that it isn't.

Simon
_______________________________________________
TYPO3-project-tt-products mailing list
TYPO3-project-tt-products (AT) lists...netfielders.de
http://lists.netfielders.de/cgi-bin/...ct-tt-products
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
  #4  
Alt 07.03.2008, 12:48
Franz Holzinger
Gast
 
Beiträge: n/a
Standard Re: [TYPO3-shop] Empty category

Simon Browning a écrit :
> Franz Holzinger wrote:
>> Simon Browning a écrit :
>>> Is it possible to hide, or just not include empty categories?

>>
>> Why don't you set them hidden in the backend? For what are they needed
>> then?
>>
>> - Franz
>>

>
> I don't have hide as an option for the categories - should it be there?
> I thought it was odd that it isn't.


Yes, you can activate 'hidden' for each category in the backend.
Activate the secondary palettes.

Franz
_______________________________________________
TYPO3-project-tt-products mailing list
TYPO3-project-tt-products (AT) lists...netfielders.de
http://lists.netfielders.de/cgi-bin/...ct-tt-products
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
  #5  
Alt 07.03.2008, 18:38
Simon Browning
Gast
 
Beiträge: n/a
Standard Re: [TYPO3-shop] Empty category

Franz Holzinger wrote:
> Simon Browning a écrit :
>> Franz Holzinger wrote:
>>> Simon Browning a écrit :
>>>> Is it possible to hide, or just not include empty categories?
>>> Why don't you set them hidden in the backend? For what are they needed
>>> then?
>>>
>>> - Franz
>>>

>> I don't have hide as an option for the categories - should it be there?
>> I thought it was odd that it isn't.

>
> Yes, you can activate 'hidden' for each category in the backend.
> Activate the secondary palettes.
>
> Franz


Secondary Palette activated, no hidden option. Not in the menu popup
either when looking in list view.

I have: Title, Subtitle, Confirmation Email, & Image. Am I missing
others? We're running 2.6, but its been upgraded a few times, I'm
wondering if something has gotten hosed.

Thank you.

Simon
_______________________________________________
TYPO3-project-tt-products mailing list
TYPO3-project-tt-products (AT) lists...netfielders.de
http://lists.netfielders.de/cgi-bin/...ct-tt-products
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
  #6  
Alt 08.03.2008, 07:25
Franz Holzinger
Gast
 
Beiträge: n/a
Standard Re: [TYPO3-shop] Empty category

Simon Browning a écrit :

> Secondary Palette activated, no hidden option. Not in the menu popup
> either when looking in list view.
>
> I have: Title, Subtitle, Confirmation Email, & Image. Am I missing
> others? We're running 2.6, but its been upgraded a few times, I'm
> wondering if something has gotten hosed.


So this is missing in version 2.6.0.

Add this in your tca.php file:

$TCA['tt_products_cat'] = Array (
'ctrl' => $TCA['tt_products_cat']['ctrl'],
'interface' => Array (
'showRecordFieldList' => 'hidden,title, subtitle, image, email_uid'
),
'feInterface' => $TCA['tt_products_cat']['feInterface'],
'columns' => Array (
'hidden' => Array (
'exclude' => 1,
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.hidden',
'config' => Array (
'type' => 'check'
)
),
....


- Franz
_______________________________________________
TYPO3-project-tt-products mailing list
TYPO3-project-tt-products (AT) lists...netfielders.de
http://lists.netfielders.de/cgi-bin/...ct-tt-products
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
  #7  
Alt 08.03.2008, 07:59
Simon Browning
Gast
 
Beiträge: n/a
Standard Re: [TYPO3-shop] Empty category

Franz Holzinger wrote:
> Simon Browning a écrit :
>
>> Secondary Palette activated, no hidden option. Not in the menu popup
>> either when looking in list view.
>>
>> I have: Title, Subtitle, Confirmation Email, & Image. Am I missing
>> others? We're running 2.6, but its been upgraded a few times, I'm
>> wondering if something has gotten hosed.

>
> So this is missing in version 2.6.0.
>
> Add this in your tca.php file:
>
> $TCA['tt_products_cat'] = Array (
> 'ctrl' => $TCA['tt_products_cat']['ctrl'],
> 'interface' => Array (
> 'showRecordFieldList' => 'hidden,title, subtitle, image, email_uid'
> ),
> 'feInterface' => $TCA['tt_products_cat']['feInterface'],
> 'columns' => Array (
> 'hidden' => Array (
> 'exclude' => 1,
> 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.hidden',
> 'config' => Array (
> 'type' => 'check'
> )
> ),
> ...
>
>
> - Franz

Thanks!
_______________________________________________
TYPO3-project-tt-products mailing list
TYPO3-project-tt-products (AT) lists...netfielders.de
http://lists.netfielders.de/cgi-bin/...ct-tt-products
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
 

Lesezeichen

Themen-Optionen
Ansicht Thema bewerten
Thema bewerten:

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are an


Ähnliche Themen

Thema Autor Forum Antworten Letzter Beitrag
[TYPO3-shop] Empty Basket with Version 2.5.2 Tobias Vollmer typo3-project-tt-products@lists.netfielders.de 3 25.04.2008 18:05
[TYPO3-shop] ###FIELD_QTY### always empty when showing variants Juan Pablo Villaverde typo3-project-tt-products@lists.netfielders.de 0 06.11.2007 23:47
[TYPO3-shop] default message when products is empty Andrew Davis typo3-project-tt-products@lists.netfielders.de 1 09.10.2007 07:31
Re: [TYPO3-shop] Pages as Category Matyi Gábor typo3-project-tt-products@lists.netfielders.de 0 19.09.2007 12:02
[TYPO3-shop] Category Image Johnny Peck typo3-project-tt-products@lists.netfielders.de 0 06.12.2006 11:12


Alle Zeitangaben in WEZ +1. Es ist jetzt 23:59 Uhr.


Powered by vBulletin® Version 3.7.4 (Deutsch)
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
Template-Modifikationen durch TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77