Questions tagged [dokan]

Microsoft Windows library to program file system drivers in user space Also Dokan is the front end multi-vendor marketplace on WordPress, powered by WC. It helps you to build your own marketplace similar to Amazon.

192 questions
0
votes
0 answers

Woocommerce dokan plugin how can I fire a filter hook in a certain page URL?

I wrote a filter hook for wp_handle_upload_prefilter to crop and add watermark simultaneously when upload new image to wordpress media. It works in every page that there is wp media upload, but I want to execute this filter hook just in a certain…
0
votes
1 answer

Chabge reply-to email address to the vendors in dokan

We use dokan multivendor and we want that when customers reply to an order email they go to the vendor. Below is some code we used, but it stops some emails sending, stops some ve does receiving stripe connect payment and stope announcement emails…
0
votes
1 answer

Dokan update settings using REST API error

I'm trying to update Dokan settings using REST API, but I get 404 when I use JWT Auth and I get 403 (Forbidden, auth header malformed) when I use basic auth, here's my code (Dart): var jwtToken = await getUserJWTToken(emailAddress, password); …
Ahmed Nabil
  • 581
  • 1
  • 7
  • 26
0
votes
1 answer

How to disable Cash On Delivery for dokan vendors subscription

I am using WooCommerce Dokan (Version 3.2.6 ) multi-vendor plugin. In my website Cash on delivery and pay by card both methods are enable for users. But when any vendor purchasing a package, it is showing Cash On Delivey for that as well, due to…
0
votes
1 answer

Dokan prevent add to cart when store is closed

I've been given a few lines of code by the developer of the plugin but I can't seem to fix the error that shows. We're attempting to prevent the user from adding an item to cart when the store is closed by removing the button altogether. add_filter(…
booak
  • 1
  • 3
0
votes
0 answers

Wordpress new seller is net redirecting to dashboard in Dokan, Also setup wizard does not show up on prod but everything is working on local machine

Using Dokan multi-vendor plugin. Some issues which I am facing, i.e. If a new Vendor register then instead of redirecting to Vendor Dashboard, it is redirected to the home page. I saw some question woocommerce redirection from my-account but that…
0
votes
1 answer

How To Add Dokan Store Profile image under the product title in single product page

i implemented the store name beside the product by implementing this code /* Show Store name on the product thumbnail For Dokan Multivendor plugin */ add_action( 'woocommerce_after_shop_loop_item_title','sold_by' ); function sold_by(){ …
0
votes
0 answers

How to restrict the charecter count that can be imputed into a Dokan product title field?

I need to restrict the character count that can be entered into the below.
0
votes
0 answers

Dokan custom product fields

I am using Dokan to develop a multi Vendor store for a client, I have added two custom product fields but on will not save values (the product info) Screen shot. ''' add_action( 'dokan_new_product_added','save_add_product_meta', 10, 2 ); add_action(…
0
votes
1 answer

Add custom meta column to WooCommerce product listing

We want to add the vendor store name to each product in a column. I know how how to add a column, to get the vendor store name but I have still an empty array when I output the vendor for each product. Someone able to help out? :) add_filter(…
Nik7
  • 346
  • 2
  • 16
0
votes
1 answer

Which multi-vendor WordPress plugin can I use that has the feature of setting a fixed fee for a subscription for vendors?

I am attempting to build a multi-vendor WordPress e-commerce site. I downloaded "Dokan" plugin, but when configuring the settings, there was no option that can control the vendors subscription with a fixed fee. The option I saw was a fixed fee on…
0
votes
2 answers

Dokan Stripe Connect Not Charging Shipping With remove_filter( 'woocommerce_cart_shipping_packages', 'dokan_custom_split_shipping_packages' );

We are using Dokan to power a WooCommerce multi-vendor marketplace. This is configured so that the admin receives a commission as a "collected fee" in Stripe as part of the Stripe Connect payment processing. The vendors receive the rest of purchase…
Matthew Rideout
  • 7,330
  • 2
  • 42
  • 61
0
votes
0 answers

how to display image that uploaded by cimy user extra field?

what i try to do, i add the image upload field to the vendor form (check image 1),its working fine now i want to show that uploaded image in my single product page. i used some code to do that but its not working perfectly(Check the code).My code is…
user14626898
0
votes
1 answer

How to get address of all vendors from same city in Dokan Plugin?

I am using dokan for my client's website. they want to show map locations of all the vendors if they are in the same city. For example, if you select London then it should show a map of London, and makers should be there on google map. I have done…
Durgesh Tanwar
  • 73
  • 1
  • 13
0
votes
0 answers

Woocommerce: Best way to iterate through orders and order products

I'm getting all the processing orders and then I need to iterate through each order to perform certain actions, the only way I have found to do this is to use a nested loop: foreach ( $processing_orders as $order ) { …
svelandiag
  • 4,231
  • 1
  • 36
  • 72