@alecakachunks
I tried following the link you provided but it was just a form, but I assume you are referring to the campaign page that lists number of donors, % campaign completed, etc (with the donation buttons).
There are a few ways to make the money total and donor amount not visible. The preferred way is to override the default templates. For example with
1. take the file plugins/charitable/templates/campaign/summary-donations.php and copy it to yourtheme/charitable/campaign/summary-donations.php. In the file remove the code that outputs the summary donations.
2. take the file plugins/charitable/templates/campaign/summary-donors.php and copy it to and yourtheme/charitable/campaign/summary-donors.php. in that file remove the code that outputs the summary donors.
You can also make the items not visible via CSS (adding to your theme or to additional CSS via the WordPress customizer) using something similar to this (this might vary slightly depending on your theme and it’s CSS):
.campaign-summary .campaign-donors.
.campaign-summary .campaign-figures {
display:none;
}
I hope this helps. If you want additional assistance, please pass along the donation page and we’ll be happy to look further!