Thanks for your message.
So far, there’s only one way to do this: with CSS. Unfortunately I cant give you complete directions now because I don’t know the HTML/CSS structure of your site. But you should be able to do it alone:
1. Activate the secondary title and change the title format as following:
<span class="secondary-title">%secondary_title%: </span>%title%
2. Open the style.css of your active theme and enter the following:
.secondary-title {
display:none;
}
3. Now you have to find out in what container(s) the secondary title is in that you DO want to display. For example, if you only want to display it in the content post area, it’s usually inside a div called “post” or “entry”. Check your HTML code to find out.
4. Then use this container on the next line in the .css:
.post .secondary-title {
display:block;
}
That will hide the secondary title everywhere except for this specific area.
I hope I could help you. If not, let me know.