On my site projects page http://interiorsbycarolinab.com/projects/
If I click on the FIRST project – http://interiorsbycarolinab.com/portfolio-item/bushwick-rentals/, previous arrow is appearing on the left side of the browser instead of the next arrow which should appear on the right hand side instead
How do I fix this?
Hey,
Please add following code to bottom of 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['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,
Yigit