I made custom attribute
for variation
other than size or colour, but when i apply as variation
to this attribute
its not showing on single page.
I made custom attribute
for variation
other than size or colour, but when i apply as variation
to this attribute
its not showing on single page.
- What was the name of your custom attribute? – Kamaal ABOOTHALIB Commented Jun 29, 2016 at 6:51
- Look at line 9 of your custom attribute, the error is there – Pieter Goosen Commented Jun 29, 2016 at 6:51
- Attribute name: Custom Box – Zarah Dewayne Commented Jun 29, 2016 at 6:52
- Ok did you fill all required fields properly for each variation? Such as price. – Kamaal ABOOTHALIB Commented Jun 29, 2016 at 6:54
- Yes prices are same but i fill each variation correctly.(I think) – Zarah Dewayne Commented Jun 29, 2016 at 6:56
1 Answer
Reset to default 26It's seems you have all variations same price. That's why it's not showing, it's a WooCommerce default behavior. You can change this WooCommerce default variable price filter with this hook.
add_filter('woocommerce_show_variation_price', function() { return TRUE;});