Answer the question
In order to leave comments, you need to log in
Remove text in Express Checkout button PayPal?
// css
#gateway-logos {
display:none !important;
}
#gateway-logos img {
display:none;
}
body #paypal-button-container #paypal-button .paypal-button-content .text{
display: none!important;
}
//js
(function(fn){var d=document;(d.readyState=='loading')?d.addEventListener('DOMContentLoaded',fn):fn();})(function(){
document.getElementsByClassName("text").style.visibility = "hidden";
var hideBtn = document.getElementsByClassName('text'), i;
for (var i = 0; i < hideBtn.length; i ++) {
hideBtn[i].style.display = 'none';
}
});
//button configs
style: {
label: 'pay', // если оставить пустым, ставит текст "Оформить покупку сейчас!", что выглядит...
size: 'responsive',
shape: 'rect',
color: 'gold',
fundingicons: false,
branding: true
},
// еще вариант после конфигов
(function(){
document.body.querySelector('.text').style.display = 'none';
$('.text').css('display', 'none')
})();
Uncaught Error: Invalid button label:  
$(document).on('click', '.container', $('#paypal-button').click());
Uncaught TypeError: ((jQuery.event.special[handleObj.origType] || (intermediate value)).handle ||
handleObj.handler).apply is not a function
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question