[ad_1]
After staring at the screen for a few more minutes, I figured out the solution 😅
I replaced the following code on line 205 of wp-content>plugins>dokan-lite>templates>products>edit-product-single.php
<?php dokan_post_input_box(
$post_id,
'post_title',
[
'placeholder' => __( 'Product name..', 'dokan-lite' ),
'value' => $post_title,
]
);
?>With the following:
<input type="text" name="post_title" id="post_title" value="<?php echo $post_title; ?>" maxlength="180" class="dokan-form-control" placeholder="Product name..">
