• Resolved bobhaha

    (@bobhaha)


    Hi I am looking for a solution to limit the character count of the product title input field in Dokan add product page.

    I have tried a few php code snippets that I’ve found online, but they don’t seem to work correctly. Any assistance would be amazing!

    • This topic was modified 4 months, 1 week ago by bobhaha.
Viewing 1 replies (of 1 total)
  • Thread Starter bobhaha

    (@bobhaha)

    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..">
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.