Creating more than one portfolio page with non-overlapping content

Home Forums Jevelin Theme Creating more than one portfolio page with non-overlapping content

Home Forums Jevelin Theme Creating more than one portfolio page with non-overlapping content

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    RESOLVED Posts
  • patrick
    Participant

    Hi,

     

    Is it possible (if so how would be the smart way to do this) to create two completely seperate portfolio pages (on the same website) that each use only a non-overlapping subset of the content of the Portfolio images defined in the wordpress admin panel? I’ve tried using different slugs for categories but the whole lot of the portfolio images show up under “all”. It would be preferable if under “all” only those slugs of categores show up that I define in the portfolio building block on the main portfolio page.

     

    For clarity: I have one portfolio of retouching images and another set of full CGI (computer-generated) images and I want to maintain these two distinctly different sets of portfolios.

     

    cheers,

    Patrick

    Hi Patrick,

     

    I hope you are well today and thank you for your question.

     

    To achieve this, you have to develop custom code in the child theme of Jevelin theme.

     

    Developing custom code for custom functionality is beyond the scope of support that we provide here. Please see https://themeforest.net/item/jevelin-multipurpose-premium-responsive-wordpress-theme/14728833/support

     

    If you are not a developer then you can consider hiring a developer to develop it for you. You can hire a developer from any freelance site. Shufflehound recommends the developer https://www.upwork.com/freelancers/~011652ffec8865c6d5

     

    Best regards,
    Shufflehound team

    patrick
    Participant

    I understand, thank you for this clarification and recommendation.

    You are most welcome here 🙂

    patrick
    Participant

    I solved the problem by using the child theme and adding this in custom CSS:

     

    .sh-filter-item:nth-of-type(1){ display:none; }

     

    And this in custom JS:

     

    jQuery(document).ready(function ($) {
    “use strict”;

    $(‘.sh-filter .sh-filter-item:nth-child(2)’).trigger(‘click’);
    });

     

    Awesome great to see you got that solved.

     

    Thanks for helping out here in this forum by sharing the solution.

     

    Your help here is really appreciated.

Viewing 6 posts - 1 through 6 (of 6 total)