-
AuthorPosts
-
June 20, 2014 at 10:52 pm #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.
June 21, 2014 at 8:14 am #281914Hey 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,
PeterJune 21, 2014 at 11:06 am #281961Thats 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/
June 21, 2014 at 2:51 pm #281974Ich 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.
June 21, 2014 at 8:15 pm #282029Hi!
I updated the code – please try it again.
Best regards,
PeterJune 21, 2014 at 8:48 pm #282032Noch 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?June 21, 2014 at 8:56 pm #282033Ich nehms zurück! Alles Super :-)
Vielen Dank -
AuthorPosts
- The topic ‘Change Portfolio navigation’ is closed to new replies.