• Resolved haruns1995

    (@haruns1995)


    Hi,
    I tried adding new product and I was able to upload the product, but I was not able to add tags / keywords that should be displayed in product page, for example here: https://logogather.com/product/bulldog-logo/ under description

    How can I type in tags and not select from already existing tags. I want to be able to type in any tag I want and not just the ones that are from a dropdown menu.

    Next, after I clicked on add product I got a new page with lot of details. Kind of a second page that has new fields that were not there when I went to process of adding new product.
    I got this part where it has short description: https://prnt.sc/1u48b69 – I want to remove that as I already typed in a description on product add page.
    I got this part where SKU is not generated automatically: https://prnt.sc/1u48fgq – I don’t want my vendors to add SKU Numbers How can I form it in a way that SKU number is generated automatically when product is created, for example I added new product and that product automatically has SKU: 12345. When I add next product the SKU would be 12346, etc.
    I also got this part where it has option to check if the product is Downloadable or Virtual: https://prnt.sc/1u48j8l and to upload product files that will be for download.

    I want to have that option in my original / first – product upload page, where I originally added the product and clicked Add Product. That way my vendors will add the product zip file that will be downloaded upon a client purchase.

    Also, how can I remove virtual product, I also don’t want my vendors to be able to switch those and mess with my website.

    Right now Dokan seems to have way to many options for me. Right now I have two product add pages and not one. In first one I type all I wanted and added picture and in second called edit product, I have option to add zip file, to chose is it downloadable or virtual and to type my own SKU. For me that is not multivendor, why would I give options to my vendors to choose their sku number and to have option to add zip folder or not, it has to be on the first page and it has to be mandatory.

    What I want to change:
    1) SKU Generated automatically
    2) Discount price removed
    3) Short description removed
    4) Product to be set at Downloadable. Virtual part to be removed as I don’t have virtual products only downloadable.
    5) File attachment that is for download has to be put in product add page, where designer can add the file on the page where he uploads image.
    Right now they upload image and then on the next page they upload zip file. It has to all be in one place.
    6)Download Limit and Download Expiry to be set the same for all products. All products can be downloaded 3 times and download expiry is 30 days.
    7) Category set to default to “Logos”, as I only have one category so nobody has to select anything. I have one category and that one should be set to default.

    Is that possible ? Is there someone I can pay to customize this for me if it is too much to explain ?

    • This topic was modified 2 years, 6 months ago by haruns1995.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter haruns1995

    (@haruns1995)

    I found downloadable.php file and the content inside is the one on product edit page. Can downloadable.php be set so the content of it is inside new-product-single.php or new-product.php ?

    Plugin Support Tanjir Al Mamun

    (@tanjiralmamun)

    Hi @haruns1995,

    The new tag creation feature is a PRO feature of Dokan. Vendors are only able to add existing tags with the Dokan Lite plugin build marketplace.

    Dokan is WooCommerce based marketplace solution for WordPress. So, it’s using the default feature of WooCommerce. By default, WooCommerce doesn’t have the automatic SKU generator feature. So, this is also unavailable in Dokan.

    But you can that free plugin to generate SKU in WooCommerce automatically:
    Easy Auto SKU Generator for WooCommerce

    There is no default option to remove product form sections. You can only hide them through custom CSS.

    You can add the below CSS to the WordPress Dashboard > Appearance > Customize > Additional CSS area to hide Discount Price, Short Description, and Virtual checkbox options.

    .dokan-dashboard .content-half-part.sale-price,
    .dokan-dashboard .content-half-part.virtual-checkbox,
    .dokan-dashboard .dokan-product-short-description,
    .dokan-dashboard #dokan-add-new-product-form textarea[name="post_excerpt"] {
        display: none;
    }

    By default, the Downloadable checkbox and Downloadable Options section are unable in the add new product form. Also, limiting downloadable file download and expiry times is unavailable.

    Now, if you want to achieve those options that are unavailable in Dokan, it will require additional customization.

    In that case, you can contact any developer for help.

    Apart from them, if you want a category will be selected by default, you can add that code tweaks at the bottom of the child theme’s functions.php file.

    #-- Product category dropdown --#
    function category_args( $category_args ){
      $category_args['selected'] = 75;
      return $category_args;
    }
    add_filter( 'dokan_product_cat_dropdown_args', 'category_args' );

    From the above tweaks, you only need to change the Product Category ID.

    Thank you!

    Thread Starter haruns1995

    (@haruns1995)

    Hi,

    Thank You very much. I managed to get my category as default. I also managed to hide price discount and virtual checkbox.

    However, the short description is still there for some reason: https://prnt.sc/1v1hc8l

    Also, is there css code to make Downloadable as default inside the edit product, so all products are Downloadable, and not in add new product section. Inside edit product – Here: https://prnt.sc/1v1hj28

    At the end, Can I set Stock quantity to 1 – Allow backorders to “do not allow” and Allow only one quantity of this product to be bought in a single order to be checked by Default. Like this, so it is always like this by default: https://prnt.sc/1v1hld0

    Thank You very much!

    • This reply was modified 2 years, 6 months ago by haruns1995.
    Plugin Support Tanjir Al Mamun

    (@tanjiralmamun)

    Hi @haruns1995,

    You can use the following CSS snippet instead of the previous one to hide short description along with other options:

    .dokan-dashboard .content-half-part.sale-price,
    .dokan-dashboard .content-half-part.virtual-checkbox,
    .dokan-dashboard .dokan-product-short-description,
    .dokan-dashboard #dokan-add-new-product-form textarea[name="post_excerpt"] {
        display: none;
    }

    Apart from this, if you want to check the Downloadable option, show the Downloadable Options section, check Enable product stock management option, select Do not allow from Allow Backorders, and check the Allow only one quantity of this product to be bought in a single order option by default, then it will require writing custom JavaScript code.

    As per our support policy, we’re unable to provide any custom solution. If you would like to achieve your requirement, then you can contact a developer for help.

    Thank you!

    Plugin Support Tanjir Al Mamun

    (@tanjiralmamun)

    Hi @haruns1995,

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Dokan Product Upload Page’ is closed to new replies.