woocommerce_show_page_title

woocommerce_show_page_title

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.2.3

apply_filters('woocommerce_show_page_title') is found 3 times:

  • /includes/wc-template-functions.php line 991
     
    		} else {
    			?>
    
    			<?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
    
    				<h1 class="page-title"><?php woocommerce_page_title(); ?></h1>
    
    			<?php endif; ?>
    
    			<?php do_action( 'woocommerce_archive_description' ); ?>
    
  • /src/Blocks/BlockTypes/ClassicTemplate.php line 264
    			 * Allows controlling the display of the page title.
    			 *
    			 * @since 6.3.0
    			 */
    			if ( apply_filters( 'woocommerce_show_page_title', true ) ) {
    				?>
    				<h1 class="woocommerce-products-header__title page-title">
    					<?php
    						woocommerce_page_title();
    					?>
    				</h1>
    
  • /templates/loop/header.php line 32

    * Allow developers to remove the product taxonomy archive page title.
    *
    * @since 2.0.6.
    */
    if ( apply_filters( ‘woocommerce_show_page_title’, true ) ) :
    ?>