Skip to content

Instantly share code, notes, and snippets.

@Preciousomonze
Created May 9, 2022 14:15
Show Gist options
  • Save Preciousomonze/f50d497c352e15e8730808eddd79c56a to your computer and use it in GitHub Desktop.
Save Preciousomonze/f50d497c352e15e8730808eddd79c56a to your computer and use it in GitHub Desktop.
Pre-select WooCommerce first variation option. Copy code and put in your child theme's function.php or anywhere you see fit. Use at your risk, enjoy! I mean, what's life without taking risks? ๐Ÿš€
<?php
/**
* Pre-selects first variation option.
*
* @param array $args
* return array
*/
function pekky_wc_select_first_variation_option( $args ) {
$args['selected'] = $args['options'][0];
return $args;
}
add_filter( 'woocommerce_dropdown_variation_attribute_options_args', 'filter_dropdown_variation_args', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment