Is it possible to add an arrow on the right hand side of the portfolio page?
http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-slider-3/?skin=Minimal%20White
There is only an arrow on the very left side of the screen
(I believe, because it is the last entry of the portfolio)
on the following page, there is an arrow on each side of the screen (to navigate to the next portfolio page)
http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-gallery-3/?skin=Minimal%20White
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;
}
Best regards,
Yigit