usautomatic wrote:How do you turn off payment types for this image? Do you have to edit the image or replace it? Can I disable it somehow? After every upgrade the image comes back with all the options. We do not accept paypal or American express.
Hi usautomatic,
If it is a matter of just hiding some of payment types then you can quite easily hide them with css only.
If you want to hide PayPal and American Express, which are the first and third type in the list then you can add this code below in the Custom Head Styles box in the theme settings:
.accepted-payment-methods .method1, .accepted-payment-methods .method3 {
display: none;
}
This will hide these 2 payment types.