Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #281814

    Hi there,
    i would like to change the portfolio menu.
    I got a masonry for my portflio items. When i start with the newest entry on the left side , click it … the portfolio opens.
    To navigate to next one i have to click on the left side again. But i prefer to set the menu for the first entry to the right side.
    Know what i mean?

    • This topic was modified 10 years, 5 months ago by docperi.
    #281914

    Hey Mario!

    You can try to switch the arrow position – please place this code into the child theme functions.php file enfold/functionsphp:

    
    add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2);
    function avia_apply_custom_sort_order_to_post_nav($entries, $settings)
    {
        $temp_prev = $entries['prev'];
        $temp_next = $entries['next'];
        $entries['prev'] = $entries['next'] = "";
        if(!empty($temp_next)) $entries['prev'] = $temp_next;
        if(!empty($temp_prev)) $entries['next'] = $temp_prev;
        return $entries;
    }
    

    Best regards,
    Peter

    #281961

    Thats what i wantet. Its getting better :-)
    Only one thing: when i click the first one, it display the navigation on both sides with same content. Only want at the first item the menu on the right side :-)

    See here: http://perez-leal.com/portfolio-item/neuronprocessing/

    #281974

    Ich machs auf Deutsch, geht schneller :-)

    Habs rückgängig gemacht. Bei klick egal auf welchen Eintrag kam links und rechts die Navi mit jeweils dem gleichem link.
    Hat somit leider nicht geklappt.

    Ich möchte eigentlich nur beim aktuellsten Eintrag, in meinem Fall ist es der “Neuronprocessor”, dass die geöffnete Detailseite, die Navigation nicht links setzt sondern rechts.Lediglich nur dann, wenn es mit dem ersten startet. Die Reihenfolge der Einträge soll unberührt bleiben. Ist nur Optik …

    • This reply was modified 10 years, 5 months ago by docperi.
    #282029

    Hi!

    I updated the code – please try it again.

    Best regards,
    Peter

    #282032

    Noch ne Frage Peter,
    kann man das auch so einstellen, dass es nicht nach der ID geht, sondern nach dem eingestelltem Datum?
    Ich hatte das vorher, aber Dein Script hebelt das wieder aus. Ne Idee?

    #282033

    Ich nehms zurück! Alles Super :-)
    Vielen Dank

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Change Portfolio navigation’ is closed to new replies.