09/24/2014 at 10:25 am
#304980
Keymaster
@ Aron
Sounds like you using the Default Entry Card template, yes? If you are you could follow this QuickTip on how to create a custom version of this template. You would open its php file named card-default.php
and remove the code that outputs those elements. These are the line you would remove:
- Lines 99–110 here: https://github.com/Connections-Business-Directory/Connections/blob/8.1.2/templates/card/card-default.php#L99
- Line 93 here: https://github.com/Connections-Business-Directory/Connections/blob/8.1.2/templates/card/card-default.php#L93
Another, possible easier option is to hide them using CSS. Add the following in the theme’s custom CSS area:
span.cn-last-updated {
display: none;
}
span.cn_category_label, span.cn_category {
display: none;
}
Hope that helps!