Damn that worked so easy, how did I miss that part. I struggled for like 2 hours lol.
Just in case there is someone else like me, heres what I changed:
woocommerce_wp_text_input(
array(
'id' => 'painter',
'label' => __( 'Painter', 'woocommerce' ),
'placeholder' => 'painter name',
'desc_tip' => 'true',
'description' => __( 'Enter the name of the painter here.', 'woocommerce' )
)
);
woocommerce_wp_text_input(
array(
'id' => 'painter',
'class' => 'i18n-multilingual',
'label' => __( 'Painter', 'woocommerce' ),
'placeholder' => 'painter name',
'desc_tip' => 'true',
'description' => __( 'Enter the name of the painter here.', 'woocommerce' )
)
);
added a class of i18n-multilingual and it works like a charm.
Thank you John!
this works but flashes the wrong proportion for split second. is there a way to get rid of that?