Hide Projects

Ability to hide a Project.

3 Likes

Nice thought, @Sina :+1:

We’ll have it in mind for the future updates :slightly_smiling_face:

I would love if there was an option to hide a project within the portfolio app just like that option is on the pricing table. I feel it would be pretty easy code as it is already set up on another app and would save me several hours a week. Thanks!

1 Like

Hi there, @Chase_Jones :waving_hand:

Thanks a bunch for the feedback!

This idea is already on the Wishlist. I’ve moved your comment to the related thread, where we’ll keep you in the loop :slightly_smiling_face:

@Max Can you send me the link to the other related thread? I tried searching for it but couldn’t find it.

On another note, is there some javascript code or another work-around that can be written in the meantime to hide a specific project rather than having to delete it and add it in the future?

1 Like

Hi @Chase_Jones :waving_hand: :waving_hand:

This is the only thread related to hiding the projects, and I’ve merged your comment with it from a separate thread.

As for the JS code, could you please specify the name of the Portfolio widget and the project you’d like to hide? I’ll be happy to check with the devs if anything can be done :slightly_smiling_face:

Looking for something that could be used universally as I would use it on all of my portfolio projects, not just a specific one. Is that an option? Also, is there any option to pay for the suggested implementations to take priority?

Hey there,

My name’s Irene, and I’ll be stepping in for Max to help you, as he’s enjoying his well-deserved vacation :beach_with_umbrella:

To address your question, I need to say that there is no way to pay for escalating the implementation of this feature. Please accept my apologies for that.

However, the devs are usually quite fast with the workaround scripts. So let me forward your request to them – I’ll notify you when I get any news :folded_hands:

Hello there,

Coming back with an update :waving_hand:

You can use these CSS codes to hide specific projects in all your Portfolios:

  1. To hide just one project, use this:

    .eapp-portfolio-project-list-layout-grid-item:nth-child(1) {
      display: none;
    }
    
    
  2. To hide multiple projects, you can use this:

    .eapp-portfolio-project-list-layout-grid-item:nth-child(1),
    .eapp-portfolio-project-list-layout-grid-item:nth-child(3) {
      display: none;
    }
    
    

You can adjust the nth-child() selector to target any project you want to hide – just state the ordinal number of the project in the brackets.

Try adding the code to the Custom CSS section of your widget and let me know how it works for you :blush:

2 Likes