Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #641621

    Hi-

    Is there a way to edit the “next item” arrow on the below portfolio page? I don’t want it to go to “Uptown Tracks”. I’d prefer that these “next item” arrows stay within their specific portfolio categories. (ie: the “next item” arrow on the AIGA page would take the visitor to ITW). Is this possible? If not, is removing the arrow on one portfolio page possible? Thanks!

    #641641

    Hey valerieh!

    Please try adding following code to functions.php file in Appearance > Editor

    add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings)
    {
    $settings['same_category'] = true;
    return $settings;
    }

    Regards,
    Yigit

    #641668

    Thanks for the quick reply! I’m in Appearance/Editor. I see functions-enfold but not functions.php. Should I just access it through FTP?

    #641674

    Hey!

    You should be able to see it right below functions-enfold.php file actually. If it is not there, please try to go to wp-content/themes/enfold/functions.php via FTP :)

    Best regards,
    Yigit

    #641686

    Ah – I see it now. Thanks! This works.

    #641714

    Hi,

    Glad we could help!

    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold!

    Best regards,
    Vinay

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘editing "next page" arrow on one portfolio post’ is closed to new replies.