Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1478243

    Hi
    i use posts to write articles.
    I pull these posts on a page via masonry.
    When i visit the article it has this:
    <strong class=”main-title entry-title “>Blog – Aktuelle Neuigkeiten
    How do i replace “Blog – Aktuelle Neuigkeiten” with the name of the actual post?

    Another issue:
    The breadcrumb has:
    Du bist hier:Startseite / Name of the post / Category / Name of the post.
    Why is there the name of the post double and works like a category?
    Please tell me how to fix that

    Marcus

    #1478244

    PS:
    I use PAGES to show posts.
    So the breadcrumb has to be:
    Du bist hier:Startseite / Name of the PAGE/ Name of the post.
    (Du bist hier:Link to home / Link to the PAGE/ Name of the post.)

    marcus

    #1478434

    Hi,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the site URL in the private field. If you need to disable or remove the second trail, you can add this code in the functions.php file:

    function ava_breadcrumbs_trail_mod( $trail, $args ) {
    	if ( is_single() ) {
                    unset ($trail[2]);
    	}
    	return $trail;
    }
    add_filter( 'avia_breadcrumbs_trail', 'ava_breadcrumbs_trail_mod', 50, 2 );

    We also provided this code in another thread — make sure not to duplicate the function.

    Best regards,
    Ismael

    #1478459

    This issue is so common that it makes me wonder that you ask for an URL

    m.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.