Hide woocommerce category name from specific pages

Let’s assume you have a custom page with the name/title “Hello”.
and add the following code to your themes functions.php or you can also create your own plugin.

Code snippet:

   function my_custom_page_category_hide(){
    $page_title = $wp_query->post->post_title;
    if($page_title=="Hello"){
    echo '<style>
        .box-text-inner { display: none !important; }
        </style>';
    }
  }
   add_action( 'wp_head', 'my_custom_page_category_hide' );

Just paste the above code and do check the priority of your custom css code.
In case of any issues let me know in the comment.