Viewing 2 replies - 1 through 2 (of 2 total)
  • No. You can either add an image to the checkout page yourself or you can create your own image to replace wp-content/uploads/eshop_files/paypal.png using something like:

    function my_icon_paypal() {
    	$icon = array(
    		'path'=>get_stylesheet_directory(). '/images/mypaypal.png',
    		'url'=>get_stylesheet_directory_uri(). '/images/paypal.png'
    	);
    	return $icon;
    }
    add_filter('eshop_merchant_img_paypal', 'my_icon_paypal');

    to your theme’s functions.php where mypaypal.png is your preferred image uploaded to your theme’s images folder.
    `

    Thread Starter kriskaido

    (@kriskaido)

    I’ll check that, thanks !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘eshop – paypal button doesn't show credit card option’ is closed to new replies.