Adding text to the contributions page

I downloaded the contributions plug-in, but I can’t figure out how to add text to the contributions page. I would like to add some public facing information about how we process contributions beyond the terms and conditions document. Is it possible?

Thanks!

The best way to do that is with the contribution_type_form hook. In a separate small module (it sounds like you’ll want one anyway for your metadata descriptors issue), adding the hook will let you echo out whatever you want at the end of the form:


public function hookContributionTypeForm($args)
{
echo "Your content";
}

This topic was automatically closed after 250 days. New replies are no longer allowed.