NO BUG: Hide WooCommerce Page Title on Cart and Checkout

In the beta version, page titles are added to the cart and checkout pages. However, they are not included in the template.
This appeared only in the current beta version, everything is ok in 1.7.3

PS
Perhaps it is added somewhere else, did not check. Found a bug only on these pages

Hi Maximus,
This is not a bug but the result of this improvement:

Previously, the title was not displayed on pages, which it should be. This includes the Cart, Checkout and My Account of WooCommerce. Every page should have a title by default. You can also have a look at other WordPress themes like 2023, 2022, 2021… the title will be displayed there as well.

With Bricks, however, you have at least the possibility to change this:

  1. You create your own templates for cart and checkout and omit the post_title there.
  2. You hide the title on both pages with CSS.
.woocommerce-checkout h1,
.woocommerce-cart h1 {
  display: none;
}

Best regards,
timmse

Thank you very much, how did it fly by :100: :ok_hand: