You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"generator":"Code Snippets v2.14.0","date_created":"2020-07-06 01:40","snippets":[{"name":"Change Place Order button text to include Order Total in WooCommerce","desc":"https:\/\/stackoverflow.com\/questions\/62717939\/change-place-order-button-text-to-include-order-total","tags":["place","order","total","woocommerce"],"scope":"global","code":"add_filter('woocommerce_order_button_text', 'place_order_button_with_order_total');\nfunction place_order_button_with_order_total(){\n return sprintf( '%s %s', __( 'Place Order & Pay', 'custom-order-button' ), strip_tags( WC()->cart->get_total() ) );\n}","priority":"10"}]}