Hide the "- none -" option
When using a radio button field in a priceset, CiviCRM automatically adds a '- none -' option (unless the field is required, but it should not be, since the donor can also enter an amount in the Other Amount field). ![Capture_d_écran_de_2020-05-29_16-48-04](/uploads/a81d0831521fbe7ad3e8ac00e2ab6a5a/Capture_d_écran_de_2020-05-29_16-48-04.png) It's possible to hide it with CSS, but the extension should do it automatically. Example CSS: ``` .crm-contribution-page-id-34 #priceset .contribution_amount-content .price-set-row:last-child { display: none; } ``` Where id-34 is the contribution form ID.
issue