%s
', $text ); } function sfw_add_to_basket_error_message( $text = false ) { echo sfw_get_add_to_basket_error_message( $text ); } add_action( 'sfw/orderform/after', 'sfw_add_to_basket_error_message' ); function sfw_get_checkout_button( $text = false ) { $text = $text ?: __( 'Checkout', 'apparelcuts-spreadshirt' ); $text = apply_filters( 'sfw/checkout_button', $text ); return sprintf( '%s', $text ); } function sfw_checkout_button( $text = false ) { echo sfw_get_checkout_button( $text ); }