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

    Hallo Kriesi Team

    In einem Post Detail, befinden sich jeweils links und rechts versteckte Buttons mit einem runden Postbild. Mit diesen Buttons kann der User zum vorherigen Post oder zum nächsten Post navigieren.
    ist es möglich, diese Buttons nur in der selben Postkategorie gültig zu machen? Wenn der User also z.B. auf Veranstaltungen ist, soll beim klicken auf einen solchen Button auch wieder ein Post dieser Kategorie angezeigt werden.

    Danke

    #566992

    Hallo!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avia_post_nav_categories', 'use_same_category_filter');
    function use_same_category_filter($same_category)
    {
    $same_category = true;
    return $same_category;
    }

    P.S.: If you would like to receive replies in German, please let us know so one of our German speaking moderators can help :)

    Cheers!
    Yigit

    #635177

    hi yigit

    if i insert this code, the system is crashing…
    the problem ist still the same….

    Can we remove the arrows on both sides

    #636107

    Hi,

    Please copy the code directly from this forum, not from your email. If it’s still not working, remove the navigation with the following code in the QuicK CSS field:

    #top .avia-post-nav {
        display: none;
    }

    Best regards,
    Ismael

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