Hello,
I need invert the buttons on portfolio item page, but the solutions I’ve find in this thread didn’t work for me (probably because the different Enfold version). I was not able to find the code you told in that thread.
My version is 3.2.
How can I do it?
Thank you!
Hey!
Please use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and add following code to Functions.php file of your child theme
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2);
function enfold_customization_postnav($entries, $settings) {
$entries['next'] = get_next_post($settings['same_category']);
$entries['prev'] = get_previous_post($settings['same_category']);
return $entries;
}
Also, we would definitely recommend you to update the theme to the latest version 3.8.5 – kriesi.at/documentation/enfold/updating-your-theme-files/ :)
Best regards,
Yigit