Hello, HUSSTLE,
Thank you for your response.
1/ Private Content.
2/ For testing you can check the product in private area.
Code was added to xstore-child/functions.php
add_filter('etheme_single_product_builder_tabs', 'etheme_single_product_builder_tabs_acf_custom');
function etheme_single_product_builder_tabs_acf_custom($tabs) {
global $product;
if ( !function_exists('get_field_object') ) return $tabs;
$product_id = method_exists( $product, 'get_id' ) === true ? $product->get_id() : $product->ID;
$min_priority = 60;
$product_features_obj = get_field_object('product_features', $product_id);
if ( $product_features_obj ) {
$tabs[$product_features_obj['ID']] = array(
'title' => $product_features_obj['label'],
'priority' => $min_priority++,
'callback' => function ( $custom ) use ( $product_features_obj ) {
echo do_shortcode( $product_features_obj['value'] );
},
);
}
Kind Regards,
8theme team