Skip to content

Instantly share code, notes, and snippets.

@somewherewarm-snippets
Last active November 17, 2021 14:21
Show Gist options
  • Save somewherewarm-snippets/4dc833eb228467e699effb70222bd75c to your computer and use it in GitHub Desktop.
Save somewherewarm-snippets/4dc833eb228467e699effb70222bd75c to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: WooCommerce Product Bundles - Optional Items Checked by Default
* Plugin URI: https://woocommerce.com/products/product-bundles/
* Description: Use this plugin to have optional bundled items checked/selected by default.
* Version: 1.1
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Developer: Manos Psychogyiopoulos
*
* Requires at least: 4.1
* Tested up to: 5.3
*
* Copyright: © 2021 Automattic.
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
add_filter( 'woocommerce_bundled_item_is_optional_checked', 'wc_pb_is_optional_item_checked', 10, 2 );
function wc_pb_is_optional_item_checked( $checked, $bundled_item ) {
if ( ! isset( $_GET[ 'update-bundle' ] ) ) {
$checked = true;
}
return $checked;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment