Viewing 26 posts - 1 through 26 (of 26 total)
  • Author
    Posts
  • #310307

    Hi,
    if I choose one category in the portfolio overwiew, I’m sure, that ENFOLD displayed only the items of this chosen category in the preview. Am I wrong or disappeared this great feature with any update?
    Thanks for your help, Bernd

    • This topic was modified 9 years, 8 months ago by profil77.
    #310367

    Hey profil77!

    Thank you for using Enfold.

    Are you referring to the Portfolio Grid element? Yes, only selected category will be visible on the portfolio overview.

    Cheers!
    Ismael

    #310373

    Hi Ismael,
    not exactly: I am referring to “Portfolio Ajax” and to the ajax-preview of the single items, which are displayed above of the grid.
    BR Bernd

    #311008

    Hey!

    I’m not quite sure what you mean but this is the demo for what the ajax portfolio can do: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    It has not changed since its release :)

    Regards,
    Devin

    #311713

    Hi Devin,

    o.k., maybe my explanation was not clear enough.
    Let us have a look at this page: choose the category “VIDEO” – then we get two items of this category in the grid – and open the first “Single Portfolio Full Slider”. The Ajax preview shows this item above of the grid. Now go with “>” to the next item:
    ENFOLD now doesn’t display the second item of the category “VIDEO”, but another item from the complete portfolio.

    So I think, the ajax preview is no longer limited to a chosen category. I still have ENFOLD version 2.6.1 on a test-server.
    In this version, the preview shows only items of a chosen category in the ajax preview.

    Best regards, Bernd

    #311864

    It sounds like you previously used a function in your functions.php file to limit the next/previous to the same category. By default the theme doesn’t do that.

    Eg something like this which keeps the category limited:

    
    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings)
    {
    $settings['same_category'] = true;
    return $settings;
    }
    
    #311917
    This reply has been marked as private.
    #312883

    Great! Exactly what I was looking for this moment!
    Portfolio back|next is now limited to the category!
    Thanks Devin.

    #313004

    Hi Devin,
    did you have a look at #311917?
    Best regards, Bernd

    #314459

    Hey!

    profil77- please update your theme to the latest version (Enfold 2.9.2) – maybe it’s an incompatibility issue with WP3.9.x or WP4.0. If the update doesn’t help please deactivate all plugins and check if this makes a difference.

    Best regards,
    Peter

    #314525

    Hi Peter,
    thanks for your reply. The problem is: ENFOLD 2.6.1 limited the ajax preview above of the grid to the items of a chosen category (please have a look at the address on #311917). The demo version / download version (2.9.2) has lost this great feature. Up to now I didn’t find any reason for this problem.
    Thanks, Bernd

    • This reply was modified 9 years, 7 months ago by profil77.
    #315873

    Hi!

    Please refer to Peter’s post here – https://kriesi.at/support/topic/portfolio-link-arrows/#post-245040

    Best regards,
    Yigit

    #315892

    Hi Yigit,
    thanks for your reply. Sorry, that doesn’t work too.
    Once again: ENFOLD 2.6.1 limited the ajax preview above of the grid to the items of a chosen category (please have a look at the address on #311917). The demo version / download version (2.9.2) has lost this great feature.
    It’s really mysterious.
    Best regards, Bernd

    #316329

    Hey!

    The post navigation will not show if fullwidth sliders are included on the content. You need to add this on functions.php:

    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;
    }

    Please download the latest version from your themeforest account then update the theme via FTP. We won’t be able to provide sufficient support for late theme versions. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

    #316346

    Hi Ismael,
    thanks for your reply. My current project is already updated to ENFOLD 2.9.2. And yes, fullwidth slider is included on the content.
    We want to limit the next / previous to the same category.
    Should I only add this code (#316329) to functions.php? Or also the code at #315873/245040 or #311864?
    Best regards, Bernd

    • This reply was modified 9 years, 7 months ago by profil77.
    #317902

    Hey!

    Try using this code:

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

    Regards,
    Josue

    #317948

    Hi Josue,
    thanks a lot for your reply. I added your code (and nothing else) at the end of functions.php. Unfortunately the ajax preview shows still the items of all categories.
    Best regards, Bernd

    #318456

    Hey!

    Please create us an admin account – we’ll look into it.

    Regards,
    Peter

    #318489
    This reply has been marked as private.
    #320060

    Hi!

    I just noticed you’re taking about the preview controls. You can’t restrict these controls to a certain category. The ajax preview slider will display all entries of the portfolio page regardless of their category(ies). You can only restrict the categories for the next/prev controls on the single portfolio entry pages (the controls are demonstrated here: http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-slider-3/ ) and these controls don’t work on your website at the moment because you set the post status to “private”. We use two standard wordpress functions ( http://codex.wordpress.org/Function_Reference/next_post_link and http://codex.wordpress.org/Function_Reference/previous_post_link ) and it seems like wordpress removes “private” posts from the next/previous post queries.

    Cheers!
    Peter

    #320431

    Hi Peter,
    thanks for your reply. If we really can’t restrict the controls in the ajax preview slider, we have to accept it. The question, which remains is: why does the restriction work in the example on post #311917? Don’t you think, that users are confusing, when they first choose a category and afterwards get all portfolio items in the slider preview?
    And by the way: I am sure that earlier versions of ENFOLD included this great feature. For me it was really an essential reason to buy and to work with ENFOLD.
    Thanks a lot, Bernd

    #321012

    Hi!

    For clarification, can you please provide a screenshot of that “feature”? We didn’t remove any features on the ajax portfolio.

    Cheers!
    Ismael

    #321071
    This reply has been marked as private.
    #322597

    Hey!

    I marked this thread for Kriesi and asked him to comment on this issue.

    Cheers!
    Peter

    #327076

    Hi Peter / Kriesi,
    are there any news on this issue? Little by little the problem is getting urgent.
    Best regards, Bernd

    #327522

    Hey!

    Sorry for the delay. It too k me a while but apparently that happened with the update to the latest version of the sorting script. The author of that script didnt mention that he has removed some parameteres.

    I have added a fix and it should work fine again with version 3.0 which we will release later today :)
    Regards,
    Kriesi

Viewing 26 posts - 1 through 26 (of 26 total)
  • The topic ‘Portfolio Ajax Preview’ is closed to new replies.