Comments tonz003 started the conversationMay 6, 2019 at 4:22pmDear Support!I would like to add category slug name to the portfolio body class.I would like to do this because I would like to have different design for different portfolio categories.How can I archive this, please help!Thank you in advance for your time and effort!Best regards,Tony 675Neuron repliedMay 6, 2019 at 11:28pmHi Tony,Sure, you can achieve that via a small snippet in the functions.php(I would suggest the child theme functions.php). function custom_body_class($classes) { if (is_tax()) { $classes[] = 'my-custom-class'; } return $classes;}add_filter('body_class', 'custom_body_class'); The php works faster, it will immediately inherit your design.Feel free to ask for anything you need.Kind Regards Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.tonz003 repliedMay 7, 2019 at 5:57amHI!Works like a charm! Perfect! Thank you very much!Have a nice day!Best regards,Tony 675Neuron repliedMay 7, 2019 at 12:09pmGood to know, feel free to ask for anything you need.Kind Regards Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.1 Like Sign in to reply ...
Dear Support!
I would like to add category slug name to the portfolio body class.
I would like to do this because I would like to have different design for different portfolio categories.
How can I archive this, please help!
Thank you in advance for your time and effort!
Best regards,
Tony
Hi Tony,
Sure, you can achieve that via a small snippet in the functions.php(I would suggest the child theme functions.php).
The php works faster, it will immediately inherit your design.
Feel free to ask for anything you need.
Kind Regards
Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.
HI!
Works like a charm! Perfect! Thank you very much!
Have a nice day!
Best regards,
Tony
Good to know, feel free to ask for anything you need.
Kind Regards
Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.