We’ve seen a lot of PHP so far on Business Bloomer – WooCommerce after all is a bunch of PHP files! However, sometimes PHP is just not enough, mostly when you need to work with variable products and the “currently selected variation”.
In fact, WooCommerce uses jQuery (a JavaScript Library) to handle variations on the frontend and show conditional content (variation price, description, add to cart) based on the dropdown selection. So, to detect the current variation ID we must use jQuery as well. Here’s how!

PHP/jQuery Snippet: Get Currently Selected Variation ID @ WooCommerce Single Product Page
I won’t go into too much detail, but in order to “get” the variation ID I thought of a nice workaround. When you select a variation, WooCommerce assigns the variation ID to a hidden input on the frontend (293 in this example):
<input type="hidden" name="variation_id" class="variation_id" value="293">
Therefore, there is no need to “redo” the work – let’s take advantage of this existing script and simply “read” the value of the input when the input changes π
In my snippet, an alert (see screenshot above) will popup when a variation is found – but of course you can do much more with this, such as loading conditional content, executing PHP, running events, and so on.
/**
* @snippet Get Current Variation ID @ WooCommerce Single Product
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 5
* @community https://businessbloomer.com/club/
*/
add_action( 'woocommerce_before_add_to_cart_quantity', 'bbloomer_display_dropdown_variation_add_cart' );
function bbloomer_display_dropdown_variation_add_cart() {
global $product;
if ( $product->is_type( 'variable' ) ) {
wc_enqueue_js( "
$( 'input.variation_id' ).change( function(){
if( '' != $(this).val() ) {
var var_id = $(this).val();
alert('You just selected variation #' + var_id);
}
});
" );
}
}
Hi Rodolfo,
just found this snippet and it works perfectly but, as intended, only on the single product page. How do I get the actual variation id on the loop / archive pages?
Thanks.
Michael
There is no variation selection in the loop by default. Did you use a plugin for that?
Hi ,
Its great article, snippet working on my single product page. But how can i get this javascript var into php variable into single product page ?
Hello Bhuwan, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hey there – i wonder if you have an article about how to hide certain attributes depending on the selection of another attribute on the product Page. Please let me know, searching this already since a very long time.
I don’t, sorry π This is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi,
I would like for the single product page to display the parent SKU even when a variation has been selected, while ensuring the variation’s SKU is still distinct from the parent SKU.
As a workaround of the above I would even accept not to display any SKU when a variation is selected.
I do have a meta.php within my theme that is echoing product meta. The condition there is given by this line:
I am seeking for a condition that defines when a variation is selected.
Thank you.
Hello Attila – thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R
Hi Rodolfo, this snippet works perfectly, but please, what about if I need to display the Name of selected variation? (in my case adding this after the title?)
Tah
Luca – thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding! ~R