Skip to content
Advertisement

Woocommerce separate title and variation from mini cart

JavaScript

This is html output of mini cart product item, I need to separate title and variation something like this:

JavaScript

But I edit mini-cart.php and find this code:

JavaScript

And there is wp_kses_post to generate this title, but I don’t know how to add some html to it?

Advertisement

Answer

Simply clone and override mini-cart.php in your theme then, find this line:

JavaScript

Append:

JavaScript

Now echo $product_title, note that get_name() return product name with variation name, but get_title() return title only.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement