Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save plugin-republic/8c0c594ad92db70e51898cd3bcd0285c to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/8c0c594ad92db70e51898cd3bcd0285c to your computer and use it in GitHub Desktop.
<?php
/**
* Hook: woocommerce_dropdown_variation_attribute_options_html.
* Modify the HTML for the variation options.
*/
function plugin_republic_dropdown_variation_attribute_options_html( $html, $args ) {
// Modify the $html here
return $html;
}
add_filter( 'woocommerce_dropdown_variation_attribute_options_html', 'plugin_republic_dropdown_variation_attribute_options_html', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment