Waiting to plugin fix, that working for me at child theme:
//single product
add_action( ‘woocommerce_after_add_to_cart_form’, ‘child_theme_display_paypal_button_product’, 0, 0 );
function child_theme_display_paypal_button_product() {
wc_gateway_ppec()->settings->use_spb = ‘no’;
}
If you have child theme, try to add this:
//cart
add_action( ‘woocommerce_proceed_to_checkout’, ‘child_theme_display_paypal_button’, 0, 0 );
function child_theme_display_paypal_button() {
wc_gateway_ppec()->settings->use_spb = ‘no’;
}