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

    I have a portfolio page set up here:

    http://kristencooper.com/ctt/academic/

    and I notice there are faint arrows to the sides of the portfolio items which advance to the next which is very cool, however I notice as it continues it proceeds to other portfolio items from a different section (taxonomy if I am using the right term). I remember an old plug in called ‘next post in the same taxonomy’ that stopped this from happening but it seems to have been discontinued. Is there a way to make the portfolio items advance only within the categories set for that portfolio page, and if not how can I turn off the arrows?

    Thanks a bunch,

    T

    #254332

    Hey tonyiatridis!

    Thank you for using the theme.

    Please add this on functions.php:

    function avf_same_category_navigation($settings) {
          if($settings['taxonomy'] == 'portfolio_entries')  $settings['same_category'] = true;  
          return $settings;
      }
    
      add_filter('avia_post_nav_settings','avf_same_category_navigation', 10);

    Cheers!
    Ismael

    #254721

    Hey Ismael,

    Thanks, that’s very nifty. I wonder if there’s a way to make the arrows proceed thru all the categories within a portfolio grid though, as this proceeds thru the set of whatever category link is pressed first and ignores the others in the portfolio set. In other words it acts like its sorted by the category based on the one you pick, the client wants to to cycle thru all of them within set categories in each independent portfolio set up.

    Or is there a way to hide the default ‘all’ and I could make a category called for instance ‘academic-all’ and assign it to each, then they’d all have a common category and all of them would show if you follow me?

    Your help is very much appreciated, this themes brilliantly constructed!

    Tony

    #254877

    Hey!

    Thank you for the update.

    Unfortunately, the function is limited on sorting by portfolio category. The customization you’re after is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Cheers!
    Ismael

    #255089

    Ismael,

    Fair enough. Is there a way to just turn off the arrows altogether? Just hide them? Then I could use manual links I code in.

    Thanks,

    Tony

    #255108

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    #top .avia-post-nav { display: none; }

    Best regards,
    Yigit

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