Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created January 19, 2020 10:01
Show Gist options
  • Save ahmedeshaan/fdee83cf0091b7a07ee778fca462719c to your computer and use it in GitHub Desktop.
Save ahmedeshaan/fdee83cf0091b7a07ee778fca462719c to your computer and use it in GitHub Desktop.
<?php
add_filter( 'default_wvs_variation_attribute_options_html', function ( $default ) {
if ( is_ajax() && is_admin() ) {
return true;
}
return $default;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment