Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1234260

    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?

    #1235113

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.