Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add product archive header template and re-hook #33681

Merged
merged 5 commits into from Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions plugins/woocommerce/changelog/2023-10-24-08-52-26-105513
@@ -0,0 +1,4 @@
Significance: minor
Type: add

Add new product archive header template and hook into woocommerce_before_main_content
9 changes: 9 additions & 0 deletions plugins/woocommerce/includes/wc-template-functions.php
Expand Up @@ -1245,6 +1245,15 @@ function woocommerce_template_loop_category_link_close() {
}
}

if ( ! function_exists( 'woocommerce_product_taxonomy_archive_header' ) ) {
/**
* Output the products header on taxonomy archives.
*/
function woocommerce_product_taxonomy_archive_header() {
wc_get_template( 'loop/header.php' );
}
}

if ( ! function_exists( 'woocommerce_taxonomy_archive_description' ) ) {
/**
* Show an archive description on taxonomy archives.
Expand Down
7 changes: 7 additions & 0 deletions plugins/woocommerce/includes/wc-template-hooks.php
Expand Up @@ -53,6 +53,13 @@
*/
add_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );

/**
* Archive header.
*
* @see woocommerce_product_taxonomy_archive_header()
*/
add_action( 'woocommerce_shop_loop_header', 'woocommerce_product_taxonomy_archive_header' );

/**
* Archive descriptions.
*
Expand Down
26 changes: 9 additions & 17 deletions plugins/woocommerce/templates/archive-product.php
@@ -1,4 +1,4 @@
<?php

Check notice on line 1 in plugins/woocommerce/templates/archive-product.php

View workflow job for this annotation

GitHub Actions / Analyze Branch Changes

TEMPLATES

Version bump found

Check notice on line 1 in plugins/woocommerce/templates/archive-product.php

View workflow job for this annotation

GitHub Actions / Analyze Branch Changes

new action found - woocommerce_shop_loop_header

\'woocommerce_shop_loop_header\' introduced in 8.6.0

Check warning on line 1 in plugins/woocommerce/templates/archive-product.php

View workflow job for this annotation

GitHub Actions / Analyze Branch Changes

TEMPLATES

This template may require a version bump!
/**
* The Template for displaying product archives, including the main shop page which is a post type archive
*
Expand All @@ -12,7 +12,7 @@
*
* @see https://woo.com/document/template-structure/
* @package WooCommerce\Templates
* @version 3.4.0
* @version 8.6.0
*/

defined( 'ABSPATH' ) || exit;
Expand All @@ -28,23 +28,15 @@
*/
do_action( 'woocommerce_before_main_content' );

?>
<header class="woocommerce-products-header">
<?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
<h1 class="woocommerce-products-header__title page-title"><?php woocommerce_page_title(); ?></h1>
<?php endif; ?>
/**
* Hook: woocommerce_shop_loop_header.
*
* @since 8.6.0
*
* @hooked woocommerce_product_taxonomy_archive_header - 10
*/
do_action( 'woocommerce_shop_loop_header' );

<?php
/**
* Hook: woocommerce_archive_description.
*
* @hooked woocommerce_taxonomy_archive_description - 10
* @hooked woocommerce_product_archive_description - 10
*/
do_action( 'woocommerce_archive_description' );
?>
</header>
<?php
if ( woocommerce_product_loop() ) {

/**
Expand Down
47 changes: 47 additions & 0 deletions plugins/woocommerce/templates/loop/header.php
@@ -0,0 +1,47 @@
<?php

Check notice on line 1 in plugins/woocommerce/templates/loop/header.php

View workflow job for this annotation

GitHub Actions / Analyze Branch Changes

TEMPLATES

Version bump found

Check warning on line 1 in plugins/woocommerce/templates/loop/header.php

View workflow job for this annotation

GitHub Actions / Analyze Branch Changes

TEMPLATES

This template may require a version bump!
/**
* Product taxonomy archive header
*
* This template can be overridden by copying it to yourtheme/woocommerce/loop/header.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @package WooCommerce\Templates
* @version 8.6.0
*/

if ( ! defined( 'ABSPATH' ) ) {
exit;
}

?>
<header class="woocommerce-products-header">
<?php
/**
* Hook: woocommerce_show_page_title.
*
* Allow developers to remove the product taxonomy archive page title.
*
* @since 2.0.6.
*/
if ( apply_filters( 'woocommerce_show_page_title', true ) ) :
?>
<h1 class="woocommerce-products-header__title page-title"><?php woocommerce_page_title(); ?></h1>
<?php endif; ?>

<?php
/**
* Hook: woocommerce_archive_description.
*
* @since 1.6.2.
* @hooked woocommerce_taxonomy_archive_description - 10
* @hooked woocommerce_product_archive_description - 10
*/
do_action( 'woocommerce_archive_description' );
?>
</header>