function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
JohnR Llewellyn ACSJohnR Llewellyn ACS 

Hiding component in VisualForce embedded flow

We have a donation page (VisualForce page with an embedded flow) that I want to hide one component (see image) - the "Do not send me tangible benefits" checkbox.

Here is the VF code > 
<div id="column" style="width:745px; padding:0px 0px 50px 30px; float:left; ">
                 <h1>DONATE TO ACS ONLINE</h1>
                 <flow:interview name="ACS_New_Donation" buttonLocation="bottom">
                     <apex:param name="CampaignCode" value="{!$CurrentPage.parameters.campaign}"/>
                 </flow:interview>    
                 </div>


User-added image

Deleting the checkbox component casued probelms that I don't have time to figure out at the moment. So, I'm looking for a quick workaround.

Any help would be appreciated.