Portfolio single page

Home Forums Jevelin Theme Portfolio single page

Home Forums Jevelin Theme Portfolio single page

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    RESOLVED Posts
  • MarcoAix
    Participant

    Hi,

     

    I have my child theme (based on Education) and in the item page (ex. “Photography”) I chose not to show “Start Date, Duration, Price, More Information” (now I can’t remember where I did this!) but I couldn’t remove “Category”.

    I guess it can be done in a PHP file (by copying and editing in my child theme)  but which file?

    Hi @MarcoAix,

     

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

     

    Could you please share me the page URL from your site where it is displaying so that I can help you to remove the category?

     

    Best regards,
    Shufflehound team

    MarcoAix
    Participant

    Hello,

     

    The site is not online, but here’s a capture of the “culprit”.

    If you compare to Education demo you’ll figure out easily.

     

    Attachments:
    You must be logged in to view attached files.

    Solution for this topic

    You can remove it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    .sh-portfolio-single-info-item.sh-table:last-child {
        display: none;
    }

    MarcoAix
    Participant

    Well, I’ve tried this one but it was not working.

     

    So I looked into the original CSS to find something similar.

     

    It couldn’t find it but I saw a line with “sh-portfolio-single-info-item:first-child” so I tried this and it worked (I don’t know if I can write code here):

    .sh-portfolio-single-info-item:first-child {
    display:none;
    }

     

    Ohh it seems on your site this may be first item and not last item as my site therefore my shared CSS didn’t work on your site.

    MarcoAix
    Participant

    Solution for this topic

    After your answer I tried:

    .sh-portfolio-single-info-item:last-child {
    display:none;
    }

    And… it works too, maybe because it was the only one left?

    Anyway, problem solved.

     

    Thank you 🙂

    Yes that can be the case.

     

    You are most welcome here 🙂

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