Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Syde Joost

    (@joostvandevijver)

    Hello @rafilathif

    thank you for reaching out to us.
    This option is not available in this plugin. The PayPal logo is directly loaded from a PayPal server via JS so can also not be adjusted on your FTP. This is a choice made by PayPal and cannot be adjusted. Only the default PayPal smart buttons are available to us. Sorry that I can’t give you any other option to get the requested result.

    Kind regards,
    Joost

    Plugin Support Syde Joost

    (@joostvandevijver)

    Hello @rafilathif

    I just realized that your inquiry was concerning the logo you see when the payment window pops up. I was thinking about the PayPal button which can not be adjusted within the requirements we get from PayPal. However, the logo you can upload with the other mentioned plugins is a possibility, so I opened a feature request ticket with the developers’ team to see if this can be added to a future release of the product.

    This thread has been added to the ticket, so you should be made aware when a release includes this option.

    Hope this answer satisfies your question.
    Kind regards,
    Joost

    Thread Starter rafilathif

    (@rafilathif)

    Thanks for your understanding of my concern. I’ll wait for that feature

    Plugin Support Syde Joost

    (@joostvandevijver)

    Hello @rafilathif

    this feature will take some time before it is implemented and release, so for now you might want to try to use this code instead (add it to wp-config.php):

    function woocommerce_paypal_payments_gateway_icon( $icon, $id ) {
        if ( $id === 'ppcp-gateway' ) {
            return '<img src="https://www.paypalobjects.com/webstatic/mktg/Logo/pp-logo-100px.png" alt="PayPal Payments" />'; 
        } else {
            return $icon;
        }
    }
    add_filter( 'woocommerce_gateway_icon', 'woocommerce_paypal_payments_gateway_icon', 10, 2 );

    This will add the logo to the payment option. Hope this is what you are looking for. The upload option is in our backlog and could take some time to develop.

    Kind regards,
    Joost

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to add our website logo’ is closed to new replies.