Hello

I would like to know if It could works on a view page ?

exemple :

cars\car1 (content type) > works (links works !)
cars\car1\images (a view of all images for car1) > not works (no links)

Thanks !

Comments

sozkara’s picture

subscribing.

sozkara’s picture

Ok i've figured that out. term id token ONLY works for taxonomy pages which gets taxonomy term id from url. Which gets it by /taxonomy/term/id and assigning them to arg0 arg1 and arg2 respectively and ONLY if url has "taxonomy" on arg0. So if your url has another thing this doesnt work. I'Ve built a workaround by adding line:

elseif (arg(0) == 'project' && is_numeric(arg(2))) {
return taxonomy_term_load(arg(2));
}
to menu_token_term_context.inc file on module's plugins folder. /project/X/% being my view page url. Hope this helps

develcuy’s picture

Issue summary: View changes
Status: Active » Closed (outdated)