Closed (won't fix)
Project:
Taxonomy Force All
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
7 Nov 2008 at 02:22 UTC
Updated:
3 Feb 2013 at 19:44 UTC
Jump to comment: Most recent file
Comments
Comment #1
OneTwoTait commentedI could use this for 6.x as well. :)
Comment #2
kmontySubscribing
Comment #3
mandclu commented+1 for a D6 version.
(subscribing too)
Comment #4
kmontyChanging the subject for the track page.
Comment #5
giorgoskchanging the .info file to
and enabling the module
I get a warning
but other than that the module seem to work as expected in drupal 6.6
can anybody else confirm ?
how can we get rid of the warning ?
Comment #6
giorgoskdeadwood http://drupal.org/project/deadwood
automatically converted the module into something
that was 6.x compatible - except the version in the .info file
no warnings or errors this time
but can't see the settings page
admin/settings/taxonomy_forceall
uploading resulting module
Comment #7
giorgoskChanging the function taxonomy_forceall_menu()
(and clearing the cache makes the settings page appear
here is the updated files
I have never used CVS otherwise I would try to get an account to update the module
Comment #8
giorgoskAnother change was needed
Comment #9
OneTwoTait commentedBeautiful. Seems to work perfectly on my site so far.
Comment #10
babbage commented+1 for official 6.x release; in the meantime I will try the port you've done GiorgosK. Nice work.
This module appears to be abandoned. aymerick, are you planning on maintaining this, or shall I nominate GiorgosK ;) to be added/take over as maintainer?
Comment #11
aymerick commentedI'm not planning to maintain this module anymore, so anyone can take it over :)
Comment #12
aymerick commentedI'm not planing to maintain this module anymore, so you can take it over if you want :)
Comment #13
regx commentedDidn't work for me in 6 but this does.
Drupal 6 reversed the order of the argsfor hook_link_alter, so not sure how the previous zip worked for anyone.
See api docs http://api.drupal.org/api/function/hook_link_alter/6
Versions
5
hook_link_alter(&$node, &$links)
6
hook_link_alter(&$links, $node)
7
hook_link_alter(array &$links, $node)
Comment #14
Bob Stein commentedThis module is exactly what I was looking for. I just downloaded and tested the version posted by regx, and it seems to work flawlessly in Drupal 6.9 and does exactly what I needed it to do.
Thanks to all of you who contributed to updating this module for 6.x, and to aymerick for building the original.
Comment #15
joric commentedIt doesn't work well with menus.
If you point the menu item to /taxonomy/term/[id] it won't be highlighted.
Oddly enough, if you point the menu item to /taxonomy/term/[id]/all, menu subitems won't expand! I still don't know how to fix this.
Comment #16
lelizondo commented#13 works but this can be done with views 2, I'm attaching a view export that does what this module does.
you can play with it, it's basically the same view that views provides by default, I only changed some things like the page style and activated the option to "Show Breadcrumb". The important setting here is the "depth" option in the Taxonomy: Term ID (with depth) argument, if you set this up to 1 or more, you'll have exactly what this module does, I set it to 10 so you won't have any problem with it. You can change the view style to whatever you want, this just demonstrates the flexibility and power of views, you could even theme every taxonomy page. So cool!
Comment #17
lelizondo commentedComment #18
lelizondo commented@Aymerick: I just read #11 after I posted #16. Maybe it could be a good idea to post a note about the status of this module at the module frontpage with instructions on how a user can replace this module with views2.
#16 should work without problems.
Thanks
Luis
Comment #19
jjalocha commentedI just discovered this interesting module. I really need to display my hierarchical taxonomies with 'all' or infinite depth. So, this module seems to come very handy.
But I got confused over lelizondob's comment, who seems to suggest that this module is no longer necessary, because all its functionality can be implemented with Views. Since I am very new to views and taxonomies, I am unable to see this possibility. Thus, I would appreciate very much, if someone could shed more light into this issue, please.
I imagine how it is possible to use Views for displaying taxonomy searches of infinite depth. I would apply this, for example, in a menu. But I don't see, how Views could be used efficiently in a broader sense.
In my case, I have a large nested hierachy, and the users are able to select any number of terms at any depth of the tree. When a user clicks on a term in <div class="terms"> I need the higher terms to include all the lower ones. Without 'Taxonomy force all', I think, I would have to set-up path-aliases for every single term, and link them to custom views. This looks absolutely inefficient for my large controlled vocabulary, and seems impossible with user-defined terms.
Probably, I am missing something, but I don't see what.
Any insight is really appreciated.
Regards,
Jerzy
Comment #20
lelizondo commentedI understand your point, but I think you should give comment #16 a try and see if it works for you. All you have to do is import the view, it can't be easier than that.
I strongly believe views can do what this module does. using taxonomy force then it should be only an option when you don't want to use views (strange case)...
Because views can do what this module does, I doubt the maintainer of this module would want to release an official 6.x release, in this case, you'll be using only a patch with minimum support and bugs fixes.. knowing that this scenario it's possible, I think the smart way it's views..
Comment #21
jjalocha commentedI'm sorry, I couldn't test this sooner.
I've enabled the view from post #16, and it works magically! All nodes that are somehow sub-categories of the term are displayed.
Sadly, the retrieved nodes are displayed very strangely. I suppose, at least part of this can be customized in the view, but I still understand how it works, so I'll try to figure out how to fix this:
I have 'multiple terms' activated in taxonomy. So, every node gets listed several times. One time, for each taxonomy term. But not only for taxonomy terms that are sub-terms of the search term, but simply for every single term on the node! This is not a good output, because the user gets swamped with duplicate information.
Still, I am very impressed with the 'views' solution, and will keep tweaking it.
Comment #22
lelizondo commentedsomewhere in the argument or the filters find something like "prevent duplicates", I don't remember exactly where is it.. that will solve the problem you're describing.
the views solution it's far more powerful than taxonomy force, since you can easily theme the view, show it in a table, show only certain fields, apply some other filters, etc..
Comment #23
jjalocha commentedI found the Reduce duplicates option in 'Defaults: Configure Argument Taxonomy: Term ID:
http://drupal.org/files/tid_0.png
But it is not available for Taxonomy: Term ID (with depth):
http://drupal.org/files/tid_0.png
That's frustrating!
BTW: Does anyone know how to embed images in the furum posts?
Comment #24
mrfelton commented+1 for Drupal 6 port...
how about creating a Drupal 6 branch now that there is a semi working port?
Comment #25
Virr commentedlelizondob, big thanx!
Comment #26
lelizondo commentedI just wanna say that you can also take a look at the TVI: Taxonomy Views Integrator which extends the possibilities to override every vocabulary/term page with it's own view.
I really don't see the need for a 6.x of Taxonomy Force All anymore.
@deeporange1 did an amazing job with TVI
Comment #27
gunwitch commentedSubscribing.
Comment #28
Rameez commentedCan u please say me how to do this with TVi?
Comment #29
webtig commentedTVI README.txt
The nitty-gritty:
1: TVI cannot currently deal with multiple term displays.
ex. taxonomy/term/4+6+7 and will pass these requests to non-TVI views if
they exist, or taxonomy if all else fails.
Comment #30
lelizondo commented@Raiz TVI is very well documented. Is not really hard to use.
Comment #31
fengtan#13 works well for me. thank you.
Comment #32
pomliane commentedThis version of Taxonomy Force All is not supported anymore. The issue is closed for this reason.
Please upgrade to a supported version and feel free to reopen the issue on the new version if applicable.
This issue has been automagically closed by a script.