Thread Starter
S
(@dedicatedcloud)
Hi Tamrat
I eventually found a solution that worked for me
add_filter('default_content', 'my_editor_content');
function my_editor_content($product_editor)
{
$product_editor = "<h1>Write a description here.</h1>";
return $product_editor;
}
But thank you for your detailed response
Best Wishes