Title: Set price limit
Last modified: August 25, 2020

---

# Set price limit

 *  Resolved [zeezov](https://wordpress.org/support/users/zeezov/)
 * (@zeezov)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/set-price-limit/)
 * Hi,
 * I was wondering if i can somehow set the price for Vendors? For example i want
   i want my Vendors to be able to list products with prices between $1 – $30 only.
   So if Vendor wants to upload new product the price always have to be less than
   $30. Anything above $30 wont be accepted.
 * I currently have Dokan and Woo commerce multi-vendor site

Viewing 1 replies (of 1 total)

 *  [Rashed Ripon (a11n)](https://wordpress.org/support/users/rur165/)
 * (@rur165)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/set-price-limit/#post-13323859)
 * Hello [@zeezov](https://wordpress.org/support/users/zeezov/) ,
 * You have to use some jQuery to do that safely.
 * Here is a sample code that you can use to use the max, min in the price input
   field.
 *     ```
       add_action( 'wp_head', function() {
       	?>
       		<script>
       			jQuery(document).ready(function() {
       				jQuery("#_regular_price").removeAttr("type");
                                       jQuery("#_regular_price").attr("type", "number");
       				jQuery('#_regular_price').attr('max', '30');
       				jQuery('#_regular_price').attr('min', '1');
       			});
       		</script>
       	<?php
       } );
       ```
   
 * You may have to select other fields according to the sample code.
 * Thank you 🙂

Viewing 1 replies (of 1 total)

The topic ‘Set price limit’ is closed to new replies.

 * ![](https://ps.w.org/dokan-lite/assets/icon-256x256.gif?rev=3239229)
 * [Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy](https://wordpress.org/plugins/dokan-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/dokan-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/dokan-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/dokan-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/dokan-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/dokan-lite/reviews/)

## Tags

 * [dokan](https://wordpress.org/support/topic-tag/dokan/)

 * 1 reply
 * 2 participants
 * Last reply from: [Rashed Ripon (a11n)](https://wordpress.org/support/users/rur165/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/set-price-limit/#post-13323859)
 * Status: resolved