This topic has 3 replies, 3 voices, and was last updated 9 months, 3 weeks ago ago by Andrew Mitchell
I need to add additionL
Dear Ray,
We hope this message finds you well.
We would like to suggest an alternative hook for you to implement:
add_action('woocommerce_product_meta_end', 'xstore_display_jetengine_meta_data', 25);
function xstore_display_jetengine_meta_data() {
global $product;
// Get all custom meta data associated with the product
$meta_data = get_post_meta(get_the_ID());
if (!empty($meta_data)) {
echo '<ul class="jetengine-meta-data">';
foreach ($meta_data as $key => $value) {
// Exclude some default WooCommerce meta data fields and JetEngine internal meta data
if (strpos($key, '_') !== 0 && $key !== '_elementor_data' && !is_array($value)) {
echo '<li><strong>' . ucwords(str_replace('_', ' ', $key)) . ':</strong> ' . $value[0] . '</li>';
}
}
echo '</ul>';
}
}
Please try integrating the above code snippet into your website’s functions to display the custom meta data.
Should you require any further assistance, please do not hesitate to reach out.
Best Regards,
The 8Theme Team
Dear Ray,
We trust our theme is enhancing your experience. Taking a brief moment to rate it with a glowing 5 stars on ThemeForest would be immensely appreciated. Your feedback holds significant value for us.
Click here to rate now: https://themeforest.net/downloads
Thank you sincerely for your ongoing support!
Best Regards,
The 8Theme Team
The issue related to '‘Jetengine compatability for adding meta boxes’' has been successfully resolved, and the topic is now closed for further responses