With this code I’ve managed to add my custom taxnomy in Xstore’s Product Meta widget in Elementor:
add_filter(‘etheme_product_meta_elements’, function ($elements) {
$elements[‘car_model’] = esc_html__(‘Car Model’, ‘your-text-domain’);
return $elements;
});
However I can’t figure it out how to display it.