Closed (fixed)
Project:
Views (for Drupal 7)
Version:
7.x-3.0-rc3
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
18 Nov 2011 at 12:21 UTC
Updated:
14 Oct 2015 at 08:25 UTC
Jump to comment: Most recent
Comments
Comment #1
merlinofchaos commentedUnder the "Exceptions" you can change the wildcard string, which is the string we use to indicate an empty argument.
Please note that breadcrumbs can be exceptionally difficult to manipulate, so please be careful to scale back expectations on what you can actually do with them without just resorting to code that does a drupal_set_breadcrumb.
Comment #2
iancawthorne commentedI had tried the exceptions as I'd noticed it said "all" in there. Just deleting it so there is nothing in the field puts "%2A" in so the url then reads "news/%2A".
In the end I went for a drupal_set_breadcrumb() in template.php of my theme so thanks for the suggestion to try this.
Comment #3
merlinofchaos commentedRight, you can't make it empty; it really needs something to be there to identify that particular argument, unfortunately. So it looks like your solution was the best one.
Comment #4
iancawthorne commentedJust as a final follow up question to this. Is it possible to tell the view not to add anything to the breadcrumb at all?
Comment #6
bancarddata commentedThe views integration present in the Custom Breadcrumbs module works well also.
Comment #7
jlemosy commentedHad this issue as well and I found that the Crumbs module does a great job of fixing the problem! No more 'all's in my Views breadcrumb URLs! :)
Comment #8
mareks commentedCan anyone explain, how Custom Breadcrumbs or Crumbs module can fix the %2A issue in the Views Contextual filter breadcrumb?
My goal too is to remove the "all" parameter from the Views breadcrumb. Changing it to anything else won't help me. I namely want to have it blank and be dropped back into parent path where I have another page waiting :)
Comment #9
omerida commentedIn #1201160: Default argument not skipped in breadcrumbs I uploaded a small patch that turns off breadcrumbs if the exception value is ''
Comment #10
m.attar commentedHi,
I applied the bellow solution its not clean but it solve the problem:
I hope this help you.
Thanks!