How to feature a product variation?
-
Iam not really proficient at programming therefore I ask to learn!
Is there any way to set a specific product variation as featured (The star toggle)?
Maybe its a planned upcoming feature, but currently this is my attempt!
I tried the following in functions.php of my child theme after studying a similar code…function set_product_variation_featured($variation_id) { // Get the product variation object. in this case variation ID is 7796 $variation = wc_get_product(7796); // Set the variation as featured. Don't know about this... can they even be set as featured? $variation->set_featured(true); // Save the variation. $variation->save(); }
Thanks in advance for even seeing my post.
Best regards,
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to feature a product variation?’ is closed to new replies.