$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>php - Personalize checkout text|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

php - Personalize checkout text

matteradmin8PV0评论

I would like to hide some of the text in the checkout page: billing details, Order notes (optional) and product/total row in "your order" section.

I am able to remove the input fields, but I cant find a way to remove the text. Any help will be very appreciated.

I would like to hide some of the text in the checkout page: billing details, Order notes (optional) and product/total row in "your order" section.

I am able to remove the input fields, but I cant find a way to remove the text. Any help will be very appreciated.

Share Improve this question asked Mar 5, 2019 at 17:22 RoastyRoasty 52 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

If you look at the WooCommerce docs, you'll see that you can override template parts by having a replacement file in a woocommerce folder in your theme. A lot of the text you're talking about is hardcoded into woocommerce > templates > checkout > review-order.php Copy that file and modify as needed. Normally I would advocate for trying to use filters instead of duping the template file but I think there's going to be a few things you will have to do in that template file to accomplish what you need.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far