jetpack_table_checksum_force_enable_woocommerce
jetpack_table_checksum_force_enable_woocommerce
Appears in: jetpack.10.1, jetpack.10.2, jetpack.10.2.1, jetpack.10.7, jetpack.10.9, jetpack.11.0, jetpack.11.1, jetpack.11.1.2, jetpack.11.2, jetpack.11.3.1, jetpack.11.3.2, jetpack.11.4, jetpack.11.5.1, jetpack.11.6, jetpack.11.8, jetpack.11.8.4, jetpack.11.9, jetpack.11.9.1, jetpack.12.0, jetpack.12.1, jetpack.12.1.1, jetpack.12.2.1, jetpack.12.3, jetpack.12.5, jetpack.12.6, jetpack.12.6.1, jetpack.12.7.1, jetpack.12.8, jetpack.12.8.1, jetpack.12.9, jetpack.12.9.3, jetpack.13.0, jetpack.13.1.1, jetpack.13.1.3, jetpack.13.2, jetpack.13.2.1, jetpack.13.3.1, jetpack.13.5, jetpack.13.6, jetpack.13.7, jetpack.13.8, jetpack.13.8.1, jetpack.13.9.1, jetpack.14.0
Hook Type: filter
Displaying hooks found in version: jetpack.14.0apply_filters('jetpack_table_checksum_force_enable_woocommerce') is found 2 times:
- /jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php line 1216
* @since 10.1 * * @param bool If we should we force-enable WooCommerce tables support. */ $force_woocommerce_support = apply_filters( 'jetpack_table_checksum_force_enable_woocommerce', false ); if ( $force_woocommerce_support || class_exists( 'WooCommerce' ) ) { /** * Guard in Try/Catch as it's possible for the WooCommerce class to exist, but * the tables to not. If we don't do this, the response will be just the exception, without * returning any valid data. This will prevent us from ever performing a checksum/fix
- /jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php line 884
* @since 10.1 * * @param bool If we should we force-enable WooCommerce tables support. */ $force_woocommerce_support = apply_filters( 'jetpack_table_checksum_force_enable_woocommerce', false ); // If we're forcing WooCommerce tables support, there's no need to check further. // This is used on WordPress.com. if ( $force_woocommerce_support ) { return true; }