'How add custom text after PayPal express checkout button on product page woocommerce

when I add custom text/html to product page I use this code on function.php

add_action('woocommerce_before_add_to_cart_button', 'after_cart_function');
function after_cart_function() {
    echo "my text";
}

the problem is the text show before paypal express checkout button, I like to add after paypal button

I have already try the others hook without success



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source