Hi again,

I know I can change the first part of the link of each term, but what I want is to use the pathauto URL, so my URLs should look like ... taxonomy/term/23 where 23 is the term id.
What I have now is taxonomy/term/1/4/23 for example, where the first 1 denotes we are on the vocabulary 1, and the 4 is another term, parent of 23. If you could just remove that "/1/4" it will works perfect.
As the last number is always the term id, I just want to get that while creating each link.
I hope you understand me.
Thanks!

Comments

ferrangil’s picture

Title: Links inside the menu » Links inside the menu (URL problem).

Look, all that queries:

0.33 1 drupal_lookup_path SELECT dst FROM url_alias WHERE src = 'taxonomy/term/1/24'
0.38 1 drupal_lookup_path SELECT dst FROM url_alias WHERE src = 'taxonomy/term/1/25/116/3585'
0.35 1 drupal_lookup_path SELECT dst FROM url_alias WHERE src = 'taxonomy/term/1/25/116/3586'
0.36 1 drupal_lookup_path SELECT dst FROM url_alias WHERE src = 'taxonomy/term/1/25/116/3588'
0.51 1 drupal_lookup_path SELECT dst FROM url_alias WHERE src = 'taxonomy/term/1/25/116/3587'

for nothing! :(

No one of that queries got result, because the queries should be like:

SELECT dst FROM url_alias WHERE src = 'taxonomy/term/24'
SELECT dst FROM url_alias WHERE src = 'taxonomy/term/3585'
SELECT dst FROM url_alias WHERE src = 'taxonomy/term/3586'
SELECT dst FROM url_alias WHERE src = 'taxonomy/term/3588'
SELECT dst FROM url_alias WHERE src = 'taxonomy/term/3587'

That's what I need... It does not look difficult to accomplish...

brmassa’s picture

Status: Active » Fixed

thanks for your report. fixed.

regards,

massa

ferrangil’s picture

Wow, really??
Already commited?? :)

Thank you, this module will be perfect in a few days if you fix its "bugs" like this one!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.