Hide payment plan from an order form?

I am setting up a split test to check which converts better… a pay plan option or no pay plan option for the same product. Unfortunately, out of the box, I can’t do this.

Does anyone know if there’s code I can put on the no pay plan page to hide the pay plan option?

1 Like

Should just be able to add this to the CSS of your theme.

#PAYMENT_PLANS {
   display: none;
}

You might have to adjust the alignment of some other divs for it to look right.

Absolutely fantastic. Big thanks!