Hide description and change button text "submit form" in pro form

Hello everyone, I’m struggling on how to edit 2 things in the pro form.

  1. How would I go about to remove the description at the top of pro form alternativly change the font size?

  2. How do I change the text on the button that says “submit form” to create your account or something like that?

Would appreciate any help, been bangin my head agains the wall all day:sweat:

Josefin

I’m not quite sure what you mean by (1) but, on (2), I highly recommend using the Say What? plugin. Then complete the boxes like this:

Original string: Submit Form

Text Domain: s2member

Text Context: s2member-front

Replacement String: Create your account

Hey Tim, thanks for the reply. I will definitely check out the say what? plugin!

What I meant with (1), is the product description that’s generated by the pro form, for example (Bronze Member / description and pricing details here.) How would I edit how that shows up on the pro form. I’m looking to either hide it or decrease the font size. Any tips how I would accomplish that?

Josefin

Try putting this in your (child) theme’s style.css file:

#s2member-pro-paypal-checkout-form-description-div, #s2member-pro-stripe-checkout-form-description-div { display: none; }

That covers both a Stripe and a PayPal form and should hide that field. To change the font size instead, replace display: none; with font-size: 14px; (or whatever other value you prefer).

Thanks Tim, worked beautifully!

Great! Thanks for letting me know!