Quote Originally Posted by DrByte View Post
... use the new option to turn off the Express Checkout Shortcut button since you have one customer who is confused by it.
I found that it wasn't quite so simple as turning off Express Checkout.

Some text gets left behind (version 1.3.9h)

I also had to do the following WHICH IS NOT NECESSARY FROM v1.5.0 onward:

To hide the "pay directly through paypal" buttons and text, add this to the css

Code:
#loginDefault legend + div { /* remove the paypal express info */
  display : none;
}

#loginDefault span.larger + br { /* remove the unneeded br character */
  display : none;
}

#loginDefault hr {
  display : none;
}

#loginDefault .larger { /* remove the "OR" text */
  display : none;
}