Note when WC.php is used in theme

Closes #10741
This commit is contained in:
Mike Jolley 2016-04-20 10:37:54 +01:00
parent 76dd7447dc
commit c1a8d6742f
1 changed files with 7 additions and 1 deletions

View File

@ -708,8 +708,14 @@ if ( ! defined( 'ABSPATH' ) ) {
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<?php if ( file_exists( get_stylesheet_directory() . '/woocommerce.php' ) || file_exists( get_template_directory() . '/woocommerce.php' ) ) : ?>
<tr>
<td data-export-label="Overrides"><?php _e( 'Archive Template', 'woocommerce' ); ?>:</td>
<td class="help">&nbsp;</td>
<td><?php _e( 'Your theme has a woocommerce.php file, you will not be able to override the woocommerce/archive-product.php custom template since woocommerce.php has priority over archive-product.php. This is intended to prevent display issues.', 'woocommerce' ); ?></td>
</tr>
<?php endif ?>
<?php <?php
$template_paths = apply_filters( 'woocommerce_template_overrides_scan_paths', array( 'WooCommerce' => WC()->plugin_path() . '/templates/' ) ); $template_paths = apply_filters( 'woocommerce_template_overrides_scan_paths', array( 'WooCommerce' => WC()->plugin_path() . '/templates/' ) );
$scanned_files = array(); $scanned_files = array();
$found_files = array(); $found_files = array();