Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #899419

    Hello,

    i had designed two Portfolio sites for test.
    My Problem is, that i can not see the Portfolio prev/next Buttons.
    Is there a setup to configure this?
    I don´t found anything how i can show the prev/next portfolio buttons.

    Can you please help me?

    #899424

    Hey Manuel,

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings)
    {
    $settings['is_fullwidth'] = false;
    return $settings;
    }

    Post nav is disabled on portfolio items that has fullwidth elements by default.

    Regards,
    Yigit

    #899556

    thx for the help. it is working.

    #900039

    Hi,

    Great, glad you got it working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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