Hi Norisknofun,
Here’s a filter that can show the Special notes in product meta data. Add this code snippet in functions.php file of your currently active theme.
/**
* Add this code snippet in the functions.php file of your currently active theme.
* An special note in product metadata.
*/
function add_special_note_meta_field( $fields ) {
// Check if the specific meta field exists
if ( isset( $fields['_special_note'] ) ) {
echo '<ul>';
echo '<li><strong>Special Note:</strong> ' . esc_html( $fields['_special_note'] ) . '</li>';
echo '</ul>';
}
return $fields;
}
add_filter( 'wcdn_product_meta_data', 'add_special_note_meta_field' );
Screenshot for your reference:?https://prnt.sc/T2Ne2_YQQkCb
Please let us know if the given solution is working.
Regards,
Nikhil.