• Resolved skumar1st

    (@skumar1st)


    Thanks for this plugin. I want to do this before start. So pls guide.

    1. Rename: “Vendor Info” to “Seller Details” on product page
    2. Hide Tags for seller product listing. Only admin can use.

    Thanks.

    • This topic was modified 3 years, 7 months ago by skumar1st.
Viewing 10 replies - 1 through 10 (of 10 total)
  • Hi @skumar1st,

    You can add the code snippet at the bottom of the child theme’s functions.php file to rename the Vendor Info tab title of the single product page.

    #-- Rename Single Porudct Page Tab Title --#
    function rename_single_product_tabs($tabs){
        $tabs['seller']['title'] = __( 'Seller Details', 'dokan-lite' );
        return $tabs;
    }
    add_filter( 'woocommerce_product_tabs', 'rename_single_product_tabs' );

    For hiding the tags field for vendors, add the CSS snippet to the WordPress Dashboard > Appearance > Customize > Additional CSS area.

    label[for="product_tag"],
    select#product_tag_search ~ .select2 {display: none !important}

    Thank you!

    Thread Starter skumar1st

    (@skumar1st)

    Thanks for quick reply.
    One more problem:

    Vendor registration is clubed in woocommerce MyAccount page and I want make it seperate for vendor registration.

    Pls guide how to do this?

    Thanks.

    Hi @skumar1st,

    You can remove the “I am a vendor” option from the My Account page by adding the code snippet at the bottom of the child theme’s functions.php file.

    remove_action( 'woocommerce_register_form', 'dokan_seller_reg_form_fields' );

    And use the shortcode to have a separate Vendor Registration form.
    [dokan-vendor-registration]

    Thank you!

    Thread Starter skumar1st

    (@skumar1st)

    Works. Great support.

    One feedback as per my analysis from vendor end.
    Vendor product dashboard should clickable for short. View screenshot for more details.
    https://prnt.sc/1qbkwlr

    Hope this make sense for all vendor.

    Thanks.

    Thread Starter skumar1st

    (@skumar1st)

    Generally, only big developer like jetpack and astra give code help and you have given. Its really good.

    Few other basic question:
    How to view total product count of each vendor?
    When I will pay to vendor, how update in vendor account?

    Pls guide, so we can continue live site after testing.

    Thanks.

    Hi @skumar1st,

    The sorting feature is unavailable on the product listing page of the vendor dashboard, and you can see the total number of products from the Products widget of the Dashboard screen.

    The Dokan Lite plugin supports only non-adaptive payment methods. So, vendors are not getting their earnings directly. They can see their balance from the dashboard. Now, if a vendor wants to withdraw his earnings, he needs to send a withdrawal request.

    After getting a withdrawal request, the admin needs to send the amount manually to the vendor account and approve the request for adjusting the vendor balance.

    Vendors can see the list of approved withdrawal requests from the Vendor Dashboard > Withdraw screen.

    Thank you!

    Thread Starter skumar1st

    (@skumar1st)

    Thanks for reply.

    Payment is basic option for multi-vendor. There should option for pay by admin without withdraw request and deduct from their earning.
    Means finance history should available for vendor dashboard as well as admin dashboard.

    Think about it and implement if possible.

    One more query:
    Total product view is showing vendor product dashboard. Could you please confirm where I can see in phpmyadmin this stats?

    Thanks.

    Hi @skumar1st,

    Thanks for your suggestion. We will keep in mind and try to implement if we get more similar requests.

    Apart from that, the product view stores under the pageview meta key that is located in the prefix_postmeta table.

    Thank you!

    Thread Starter skumar1st

    (@skumar1st)

    Thanks for reply and suggestion note for future update if possible.

    As best product will come out after actual customer feedback.

    Product view is good option but I want to give feedback for this.
    a. Product view should view option on product page also , so customer/visitor can view.
    b. It should setting option for reset monthly view/ or lifetime view.

    Thanks.

    Hi @skumar1st,

    Thanks for your suggestion. I will also keep them in our request log for further improvement. But I’m unable to provide any ETA of those enhancements. However, if you want to get those features now, it will require additional customization.

    Thank you!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Found your plugin useful but need help’ is closed to new replies.