Viewing 12 replies - 1 through 12 (of 12 total)
  • Pat_07

    (@pat_07)

    Hi I have the same problem.
    thank you for any help.

    Hello,
    I would also like to remove the “all” button on my portfolio. I see that this same question was asked a few months ago, but no answer yet. Does that mean there is no way to remove the “all” button?
    Thank you for your help.

    open includes/class.NimblePortfolio.php
    find the line
    <?php echo apply_filters(‘nimble_portfolio_filter_all’, sprintf(‘%s‘, __(“All”))); ?>

    and remove it.

    Plugin Author Nimble3

    (@nimble3)

    Add this code in functions.php of your theme

    add_filter('nimble_portfolio_filter_all', 'remove_nimble_portfolio_all_filter');
    
    function remove_nimble_portfolio_all_filter($filter_tag) {
    return "";
    }

    Nimble Portfolio how to change auto active tab all to other tab ?

    I have been able to remove the All view in portfolio, however, it still defaults to showing All items when the portfolio page is selected. Is there a way that I can choose a specific filter to present in place of the All view? thank you.

    Plugin Author Nimble3

    (@nimble3)

    @kno13, You can buy Isotope Addon for Nimble Portfolio.

    http://www.nimble3.com/shop/premium-isotope-addon-for-nimble-portfolio/

    Add-on Features

    Isotope integration for smooth animation in filtering
    Default Filter selection
    Multi-filters selection
    Ajax Pagination for large portfolios (for pagination supported skins)
    Ajax Filtering, works in conjunction with Ajax pagination for consistency.

    Fantastic, thank you !

    I just purchased the extra isotope addon and I don’t see the option for setting a default filter. Is that actually a feature? I’m still having trouble with this problem.

    Figured it out! Sorry.

    For anyone else struggling – once you had the premium Isotope plugin install, you generate the shortcode from within a page/post. The nimble portfolio icon appears above where you enter your page/post content, click that to generate a shortcode, and you have the option of choosing your default filter. Awesome! Thanks Nimble 3.

    Hello,
    I bought premium isotope addon. Its works thanks!

    But I need to remove “all” in categorys..

    add_filter(‘nimble_portfolio_filter_all’, ‘remove_nimble_portfolio_all_filter’);

    function remove_nimble_portfolio_all_filter($filter_tag) {
    return “”;
    }

    Which line in functions.php?

    Thanks

    Plugin Author Nimble3

    (@nimble3)

    You need to add this code in functions.php of your theme.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Can I remove the ''all'' view in portfolio?’ is closed to new replies.