Yes, it is enabled.
To clarify, I am using both Woocommerce Paypal checkout and Woocommerce Square plugins. (some people hate Paypal, so Included the Square pay option). Even if I turn off square and deactivate the plugin, the “Place Order” button still appears momentarily before disappearing. So the plugins do not appear to be in conflict.
I figured out a workaround, but I wish your plugin was working correctly… Without the workaround there was no “Place Order” button to make a Paypal purchase on the checkout page. With this workaround I get the Paypal orange button, so at least a payment can be made.
WORKAROUND:
The only way I can make any button appear on CHECKOUT page is to WooCommerce > Settings > Payments > PayPal Checkout > Manage… and UNcheck “Enable PayPal Checkout on the cart page”. Now there is only the “proceed to checkout” button on the cart page. I added this PHP snippet (from the Business Bloomer website: https://businessbloomer.com/woocommerce-cart-checkout-same-page/) to put the cart on the checkout page, which eliminates the need for the cart page, and improves the checkout flow. View cart buttons now take you to the checkout page, where you can see your cart items at the top of the page, and the Paypal orange button under the payment options. Anyways, I hope you keep this post up so it might help others.
/**
* @snippet Display Cart @ Checkout Page Only – WooCommerce
* @how-to Watch tutorial @ https://businessbloomer.com/?p=19055
* @sourcecode https://businessbloomer.com/?p=80321
* @author Rodolfo Melogli
* @compatible WooCommerce 3.4.7
*/
add_action( ‘woocommerce_before_checkout_form’, ‘bbloomer_cart_on_checkout_page_only’, 5 );
function bbloomer_cart_on_checkout_page_only() {
if ( is_wc_endpoint_url( ‘order-received’ ) ) return;
// NOTE: I had to change the name of the shortcode below…
// …as it would have displayed this site’s Cart…
// … make sure to use “woocommerce_cart” inside “[]”:
echo do_shortcode(‘[woocommerce_cart]’);
}