Home › Forums › Jevelin Theme › Portfolio single page
Home › Forums › Jevelin Theme › Portfolio single page
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
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; }
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.
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 š