You could use the ploneCustom.css to remove them. If you are running firefox you can go to
http://www.userstyles.org/ and follow the links to download and install the extension. Then look into a copy of the source for any dataface page. Find the element you want to remove. Look for its ID then in css the code would be
#IDNAME {
display: none !important;
}
Or you can look for its class. Then type:
.classname {
display: none !important;
}
Or if you have several things you do not want to display you type
.classname, #idname, tagname, table, whatever, you, get idea {
display: none !important;
}
The reason to try it in userstyles first is to see if it actually works. Rarely you will have to refresh the page, as most times it will make the change immediately when you save your style.
When you are satisfied with the code you have working, go into ploneCustom.css and insert you code there. This file does not exist by default, so you will have to create it. Then somewhere near the beginning of plone.css you have the following line:
@import url(customPlone.css);
After saving, restart your browser.
For instance to remove your search at the top it is:
.search_form {
display: none !important;
}
To remove the Find tab just add this:
#table-tabs-find {
display: none !important;
}
So to sum up, you can add the following code to the top of plone.css in the dataface installation directory:
@import url(customPlone.css);
Then create customPlone.css and add these lines to it (along with any comments you wish to document why):
.search_form {
display: none !important;
}
#table-tabs-find {
display: none !important;
}
That is all you have to do.
Hope that helps bro.