如何在结帐页面中将“下订单”文本更改为“预订”? [关闭]

My website is www.osdoc.in . My website is built on wordpress and WooCommerce. How can I change the text "Place Order" present in checkout page to "Book" ?

you can try this code by adding in functions.php

add_filter( 'woocommerce_order_button_text', 'woo_custom_order_button_text' ); 

function woo_custom_order_button_text() {
    return __( 'book', 'woocommerce' ); 
}