-
AuthorPosts
-
July 16, 2017 at 4:39 pm #822074
Hi
we already have this situation in our breadcrumb:
Home–>PostURL–>Category–>Posttitle
This looks more like a bug and should be like this:
Home–>Category–>PosttitleSince we are not using categorys (we use pages and ALB-Element “Blog”) we need a breadcrumb like this:
Home–>PageURL–>PosttitleHere is the URL to our development-area:
Regards Joanna
July 16, 2017 at 5:39 pm #822107Hey digitalprint2222,
Try adding this code to the end of your functions.php file in Appearance > Editor:add_filter( 'avia_breadcrumbs_trail', 'remove_category_from_breadcrumb', 50, 2 ); function remove_category_from_breadcrumb( $trail, $args ) { if ( is_single() ) { unset ($trail[1]); unset ($trail[2]); } return $trail; }
Best regards,
MikeSeptember 10, 2017 at 6:49 pm #850171Hello Mike
thanx – that helped to get rif of the doubling
Now we got:
“Du bist hier:Startseite / Unterwasserfotografie: faszinierend und anspruchsvoll” (Home / Posttitle)
Is there a way to get Home–>PageTitle–>Posttitle
Otherwise the breadcrumb doesnt make to much sense
Regards Joanna- This reply was modified 7 years, 3 months ago by digitalprint2222.
September 10, 2017 at 7:30 pm #850176Hi,
Try changing to:add_filter( 'avia_breadcrumbs_trail', 'remove_category_from_breadcrumb', 50, 2 ); function remove_category_from_breadcrumb( $trail, $args ) { if ( is_single() ) { unset ($trail[1]); } return $trail; }
Best regards,
MikeSeptember 11, 2017 at 7:31 pm #850641Hi
no, sorry – that didnt work.
As i said before: “Since we are not using categorys (we use pages and ALB-Element “Blog”) we need a breadcrumb like this:
Home–>Page–>Posttitle”Your code gives us a Home–>Category–>Posttitle and that gives our users the runaround
Regards Joanna
September 12, 2017 at 9:35 am #850907Hi Joanna,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
VictoriaSeptember 15, 2017 at 12:40 pm #852515Hello Victoria,
no – we cant since its on localhost
Regards JoannaSeptember 18, 2017 at 8:24 pm #853563Hi,
Let us know when u are online./
Best regards,
Basilis -
AuthorPosts
- You must be logged in to reply to this topic.