Ah, looks like the values in XML have uppercase. The below should quickfix this. Note you'll need to resave the gateway after making the below change.
IN: components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/processors/paypalpro/edit.gateway.oem.xml
ON: Lines 61-64
FROM:
Code:
<option value="Visa">Visa <img src="../components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/icons/cards/cc_visa.gif" alt="" /></option>
<option value="MasterCard">Mastercard <img src="../components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/icons/cards/cc_mastercard.gif" alt="" /></option>
<option value="Amex">American Express <img src="../components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/icons/cards/cc_amexco.gif" alt="" /></option>
<option value="Discover">Discover <img src="../components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/icons/cards/cc_discover.gif" alt="" /></option>
TO:
Code:
<option value="visa">Visa <img src="../components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/icons/cards/cc_visa.gif" alt="" /></option>
<option value="mastercard">Mastercard <img src="../components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/icons/cards/cc_mastercard.gif" alt="" /></option>
<option value="amex">American Express <img src="../components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/icons/cards/cc_amexco.gif" alt="" /></option>
<option value="discover">Discover <img src="../components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/icons/cards/cc_discover.gif" alt="" /></option>
#4630