grant catalog
It would be great if the credit card donation button could be hidden on internal Grant Catalogs that are visible only to Fund holders. We're using an internal Grant Catalog to collect Donor Advised grants to our annual competitive grant cycle, and some of the donors are getting confused by the two buttons even though we tried to clarify which one to use in the instructions. If the credit card button could be hidden while the Catalog is internal, and then unhidden when it goes public after the grant cycle ends, we could avoid this confusion. Thanks for your consideration!

-
Jared Mabrey commented
Hi, I'm not sure if this helps for now, but we're having the same issue and I just decided to hide it with CSS in the meantime, until it's formally addressed.
Please only paste this into your portal css and NOT the giving hub since (unfortunately) the classes are pretty universal. They really need to start using more IDs and it'd make things much easier!
--
/*--- Grant Catalog Remove info/button from top card ---*/
.ft_card.card.p-3 .row {
display: none;
}
.ft_card.card.p-3 .row:nth-child(-n+2) {
display: flex;
font-size: 18px;
line-height: 22px;
b {font-size: 13px;}
}input.click_once.shadow-0.btn.btn-sm.btn-rounded.btn-primary.ft_btn_primary.ft_btn_primary_text {
display: none !important;
}input.click_once.shadow-0.btn.btn-sm.btn-rounded.btn-primary.ft_btn_primary.ft_btn_primary_text:first-child {
display: block !important;
}