Plugin Author
Maidul
(@maidulcu)
You can write some custom css to hide that on team details page.
Its depend on the theme.
I am using twenty seventeen.
Plugin Author
Maidul
(@maidulcu)
If you send the details team member link i can send you the css to hide the image
Plugin Author
Maidul
(@maidulcu)
Add this css on team member setting custom css box, this should hide the team image on details page
.single-team_manage .team_manager img{
display:none !important;
}
Thank you so much but I entered that and it did not change anything.
Plugin Author
Maidul
(@maidulcu)
Oh my bad, fixed the typo
.single-team_manager .team_manager img{
display:none !important;
}
Amazing! thank you so much!
Is there a way that an image that placed into the main text as a media can still be displayed? The code correctly removes the double featured image issue, but also removes any media pic i entered
Plugin Author
Maidul
(@maidulcu)
May be try this
.single-team_manager .team_manager>img{
display:none !important;
}