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

    Hi,

    die Vor und Zurück Funktion beim Portfolio und den Beiträgen funktioniert nicht wie gewohnt.

    In der Übersicht sind die Portfolio-Einträge wie gewünscht platziert: Siehe Link1
    Beim Aufruf bsp. des ersten Eintrags ist in der Einzelansicht der Vor-Pfeil auf der linken anstatt auf der rechten Seite: Siehe Link2

    Dies setzt sich so fort und ist bei den Beiträgen ebenso.

    Ich habe heute die neueste Enfold-Version: 5.1.2 installiert – keine Änderung.

    Brauche hierzu eure Hilfe – Danke

    Grüße
    Bernd

    #1365225

    Hey swotes,

    Thank you for the inquiry.

    That is the default order of the post navigation but it can be reversed if necessary. Please add this filter in the functions.php file.

    add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3); function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries)
    {
    
        $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); 
        $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    
        return $entries;
    }
    

    Best regards,
    Ismael

    #1365227

    Hi Ismael,

    thank’s for quick response – that helps.

    Best Regards
    Bernd

    #1365238

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Vor und Zurück Funktion Portfolio und Beiträge’ is closed to new replies.