Tagged: 

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #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,
    Alex

    #225997

    Hi AdDesign!

    You need to edit the page then remove the parent page on Page Attributes > Parent settings.

    Best regards,
    Ismael

    #226724

    Hi 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

    #226791

    Hey!

    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,
    Ismael

    #227393

    Hi 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

    #227422

    Hi!

    Please post the login details here as a private reply. Deactivate all plugins if possible.

    Cheers!
    Ismael

    #227443
    This reply has been marked as private.
    #227471

    Hey!

    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,
    Ismael

    #227487
    This reply has been marked as private.
    #228003

    Hey!

    Not sure if that is possible. Add this on Quick CSS:

    a[title="Produkte"] {
    pointer-events: none;
    }

    Cheers!
    Ismael

    #228105

    Hi Ismael,

    That worked perfect, exactly what I was looking for!
    Many thanks!!!!

    Cheers,
    Alex

    #228107

    Hi 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,
    Alex

    #228333

    Hey!

    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,
    Ismael

    #228364

    Hi!

    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,
    Peter

    #228414

    Hi,

    Thats it! Thank you both for you help! The code works perfect for me!!

    Best regards,
    Alex

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Parent pages / breadcrumbs’ is closed to new replies.