woocommerce_show_page_title

woocommerce_show_page_title

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_show_page_title') is found 3 times:

  • /includes/wc-template-functions.php line 1008
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    } 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
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    * 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 ) ) :
    ?>