Tagged: breadcrumbs
-
AuthorPosts
-
February 18, 2014 at 10:21 pm #225777
Hey,
I disabled the some parent pages in the main menu with # http://i.imgur.com/9I3QF9j.jpg
Now I would also like to disable these parent pages in the breadcrumbs, because they still linking to this parent pages. Is this possible? How does this work?Best regards,
AlexFebruary 19, 2014 at 8:07 am #225997Hi AdDesign!
You need to edit the page then remove the parent page on Page Attributes > Parent settings.
Best regards,
IsmaelFebruary 20, 2014 at 1:17 pm #226724Hi Ismael,
Unfortunately that don’t work. When I remove the parent page attribute, the page is still clickable in the breadcrumbs.
Do you have any other ideas?Best regards,
Alex
February 20, 2014 at 3:10 pm #226791Hey!
Please give us a link to the website. Are you referring to a portfolio page? Please add this on functions.php:
add_action('after_setup_theme','avia_remove_portfolio_breadcrumb'); function avia_remove_portfolio_breadcrumb(){ remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb'); }
Regards,
IsmaelFebruary 21, 2014 at 12:11 pm #227393Hi Ismael,
Here is a Link for example: http://www.scheibentoenung-wien.at/enfold/home/produkte/llumar-esprit/
I removed the parent page setting and replaced with a the page wich I’ve linked above, but the “Produkte” in the breadcrums are still clickable.
Thanks,
Best regards,
Alex
February 21, 2014 at 12:49 pm #227422Hi!
Please post the login details here as a private reply. Deactivate all plugins if possible.
Cheers!
IsmaelFebruary 21, 2014 at 1:09 pm #227443This reply has been marked as private.February 21, 2014 at 2:01 pm #227471Hey!
This page is still the child of the Produkte page when I checked it: http://www.scheibentoenung-wien.at/enfold/home/produkte/llumar-esprit/
I removed the parent page attribute. Check it again here: http://www.scheibentoenung-wien.at/enfold/llumar-esprit/
Regards,
IsmaelFebruary 21, 2014 at 2:30 pm #227487This reply has been marked as private.February 23, 2014 at 2:25 am #228003Hey!
Not sure if that is possible. Add this on Quick CSS:
a[title="Produkte"] { pointer-events: none; }
Cheers!
IsmaelFebruary 23, 2014 at 11:21 am #228105Hi Ismael,
That worked perfect, exactly what I was looking for!
Many thanks!!!!Cheers,
AlexFebruary 23, 2014 at 11:42 am #228107Hi Ismael,
Just one more question:
I tried it with “Über uns” as well.a[title=”Über uns”] {
pointer-events: none;
}But this doesen’t work. Can the letter “Ü” the reason or because there are two words?
Best regards,
AlexFebruary 24, 2014 at 4:34 am #228333Hey!
I think there is a better way of removing the link for breadcrumbs but I’m not sure how. There is another user who wanted the same thing. Let me ask Dude about this. Please wait for his response.
Regards,
IsmaelFebruary 24, 2014 at 8:16 am #228364Hi!
Please see: http://css-tricks.com/snippets/html/glyphs/ – css doesn’t support umlauts but you must convert it to ISO notation. Ü converts to \00dc – try this code instead:
a[title="\00dcber uns"] { pointer-events: none; }
If it doesn’t work try this code:
a[title$="ber uns"] { pointer-events: none; }
Best regards,
PeterFebruary 24, 2014 at 11:16 am #228414Hi,
Thats it! Thank you both for you help! The code works perfect for me!!
Best regards,
Alex -
AuthorPosts
- The topic ‘Parent pages / breadcrumbs’ is closed to new replies.