PluginProbe ʕ •ᴥ•ʔ
Catalog Booster & Product Catalog Mode for WooCommerce / 1.0.9
Catalog Booster & Product Catalog Mode for WooCommerce v1.0.9
trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.3 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8
catalog-booster-for-woocommerce / functions / compatibility.php
catalog-booster-for-woocommerce / functions Last commit date
activation.php 8 years ago compatibility.php 9 years ago index.php 9 years ago
compatibility.php
22 lines
1 <?php
2 if ( !defined( 'ABSPATH' ) ) {
3 exit; // Exit if accessed directly
4 }
5
6 /*
7 * Backwards compatibility functions
8 *
9 * @created May 13, 2015
10 * @package woocommerce-catalog-booster/functions
11 */
12
13 add_action( 'admin_notices', 'ic_woocat_notices' );
14
15 function ic_woocat_notices() {
16 ?>
17 <div id="ic_woocat_message" class="error woocommerce-missing">
18 <p><?php _e( 'Without WooCommerce installed Catalog Booster has no effect on your site and can be deactivated.', 'catalog-booster-for-woocommerce' ) ?></p>
19 </div>
20 <?php
21 }
22