Title: refluxcomponents's Replies | WordPress.org

---

# refluxcomponents

  [  ](https://wordpress.org/support/users/refluxcomponents/)

 *   [Profile](https://wordpress.org/support/users/refluxcomponents/)
 *   [Topics Started](https://wordpress.org/support/users/refluxcomponents/topics/)
 *   [Replies Created](https://wordpress.org/support/users/refluxcomponents/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/refluxcomponents/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/refluxcomponents/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/refluxcomponents/engagements/)
 *   [Favorites](https://wordpress.org/support/users/refluxcomponents/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/refluxcomponents/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/refluxcomponents/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Weight with decimal places won’t validate](https://wordpress.org/support/topic/weight-with-decimal-places-wont-validate/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/weight-with-decimal-places-wont-validate/#post-14369998)
 * I am trying to validate WooCommerce product fields to ensure they are not blank
   or empty for weight and dimensions using **dokan_can_add_product** and **dokan_can_edit_product**.
   It works for dimensions, but when I try to use **$_weight = absint( sanitize_text_field(
   $postdata[‘_weight’] ) );**, it also works, but only for whole numbers, not decimal
   places. This would be your code, nothing custom.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Vendor Notification Mail](https://wordpress.org/support/topic/vendor-notification-mail/)
 *  [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/vendor-notification-mail/#post-14084101)
 * Hi Shamina, I can confirm- unfortunately the issue is happening all over again;
   no notifications to vendors for new orders are being sent out- this happened 
   before and it was resolved many releases ago, but maybe it broke again with the
   last update…. 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] How to hide Flat Rate shipping option on checkout when calculated rates present](https://wordpress.org/support/topic/how-to-hide-flat-rate-shipping-option-on-checkout-when-calculated-rates-present/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/how-to-hide-flat-rate-shipping-option-on-checkout-when-calculated-rates-present/#post-13688294)
 * Thank you, but I assume there must be a much leaner way to accomplish such a 
   thing without installing extensions- I simply just need a function that will 
   hide Flat Rate shipping when any other shipping method is available.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] When duplicating product, vendors cannot change slug to reflect desired URL](https://wordpress.org/support/topic/when-duplicating-product-vendors-cannot-change-slug-to-reflect-desired-url/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/when-duplicating-product-vendors-cannot-change-slug-to-reflect-desired-url/#post-13465695)
 * Actually, here is my solution:
 *     ```
       function reflux_update_slug( $data, $postarr ) {
           if ( ! in_array( $data['post_status'], array( 'draft', 'pending', 'auto-draft' ) ) ) {
               $data['post_name'] = wp_unique_post_slug( sanitize_title( $data['post_title'] ), $postarr['ID'], $data['post_status'], $data['post_type'], $data['post_parent'] );
           }
           return $data;
       }
       add_filter( 'wp_insert_post_data', 'reflux_update_slug', 99, 2 );
       ```
   
 * Now the users can clone products without getting incorrect slugs/permalinks as
   a result.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Cannot Add Notes or Tracking Info in Vendor Dashboard Unless Logged in as Admin](https://wordpress.org/support/topic/cannot-add-notes-or-tracking-info-in-vendor-dashboard-unless-logged-in-as-admin/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/cannot-add-notes-or-tracking-info-in-vendor-dashboard-unless-logged-in-as-admin/#post-13413214)
 * Rashed, after much toiling, I can confirm that it is a permissions issue. If 
   you take any vendor and change them to Admin, you can finally see the order notes
   and tracking number for each order as it should be. If you change them back to
   vendor again, same problem- each order shows that there are no notes or tracking
   number. What is the permission that needs to be granted for the order notes and
   tracking number to appear in the vendor dashboard? Please, I have been struggling
   with this one for a month and yes I have disabled all other plugins- nothing.
   And have changed theme to default. Which permission needs to be granted for the
   order notes to appear? So I don’t have to try them all one by one and keep switching
   users to test it. Thank you, I appreciate your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Cannot Add Notes or Tracking Info in Vendor Dashboard Unless Logged in as Admin](https://wordpress.org/support/topic/cannot-add-notes-or-tracking-info-in-vendor-dashboard-unless-logged-in-as-admin/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/cannot-add-notes-or-tracking-info-in-vendor-dashboard-unless-logged-in-as-admin/#post-13401693)
 * Here is a log of the error:
 * **2020-09-13T00:26:22+00:00 CRITICAL Uncaught Error: Call to a member function
   get_id() on bool in /wp-content/plugins/dokan-lite/includes/functions.php:2168
   
   Stack trace: #0 /wp-content/plugins/dokan-lite/includes/Emails/VendorNewOrder.
   php(110): dokan_get_vendor_order_details(18098, 110) #1 /wp-includes/class-wp-
   hook.php(287): WeDevs\Dokan\Emails\VendorNewOrder->trigger(18098, Object(WC_Order))#
   2 /wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array) #3/
   wp-includes/plugin.php(544): WP_Hook->do_action(Array) #4 /wp-content/plugins/
   woocommerce/includes/class-wc-emails.php(170): do_action_ref_array(‘woocommerce_ord…’,
   Array) #5 /wp-includes/class-wp-hook.php(287): WC_Em in wp-content/plugins/dokan-
   lite/includes/functions.php on line 2168
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Cannot Add Notes or Tracking Info in Vendor Dashboard Unless Logged in as Admin](https://wordpress.org/support/topic/cannot-add-notes-or-tracking-info-in-vendor-dashboard-unless-logged-in-as-admin/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/cannot-add-notes-or-tracking-info-in-vendor-dashboard-unless-logged-in-as-admin/#post-13374419)
 * Hi Rashed, I see the error when using the Storefront theme on local machine, 
   running nothing but WooCommerce and both Dokan lite and pro installed. We have
   the full paid package (Pro) and unfortunately, we have many open tickets in the
   queue on WeDevs, including this issue. Our website is massive, so it is not possible
   to create staging copies to troubleshoot. You can see the issue for yourself 
   even on a fresh installation of WP 5.5.1 with WooCommerce and Dokan plugins only,
   using Storefront. I believe the issue is related to a function that became deprecated
   with the latest version of WooCommerce and should be easy to fix. I saw the same
   scenario back in 2015 with the order notes not showing being discussed on WeDevs
   old support forum, but unfortunately, the solution was marked ‘private’. Thank
   you for your attention to the matter.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Cannot Add Notes or Tracking Info in Vendor Dashboard Unless Logged in as Admin](https://wordpress.org/support/topic/cannot-add-notes-or-tracking-info-in-vendor-dashboard-unless-logged-in-as-admin/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/cannot-add-notes-or-tracking-info-in-vendor-dashboard-unless-logged-in-as-admin/#post-13371173)
 * Did that and the error is: **Use $item->get_product() instead of get_product_from_item**.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] “Please select some product options” message for variable when not logged in](https://wordpress.org/support/topic/please-select-some-product-options-message-for-variable-when-not-logged-in/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/please-select-some-product-options-message-for-variable-when-not-logged-in/#post-13340905)
 * Hi RK, yes- I did check for conflicts. The strange part is that it only happens
   when the user is not logged in.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Serious Problem With SubOrders](https://wordpress.org/support/topic/serious-problem-with-suborders/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/serious-problem-with-suborders/#post-12848121)
 * Thank you- that is definitely helpful for commission issues, but that has nothing
   to do with the suborder issue. Please see these screenshots and you will know
   what I am talking about:
 * [https://ibb.co/TmmwKh6](https://ibb.co/TmmwKh6)
    [https://ibb.co/Cw0L5Hr](https://ibb.co/Cw0L5Hr)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Vendors Not Receiving Notification Emails on Orders Containing Multiple Vendors](https://wordpress.org/support/topic/vendors-not-receiving-notification-emails-on-orders-containing-multiple-vendors/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/vendors-not-receiving-notification-emails-on-orders-containing-multiple-vendors/#post-12846923)
 * It has been almost 2 weeks and no response at all- we have the Business level
   package that we paid a large amount of money for. It states on your website that
   all the paid Dokan packages include support. This is one of many issues we are
   having and I will keep this one on topic and address the others in the other 
   thread. We gave you access to our server with Admin credentials. Not a thing 
   has been solved. The responses to our tickets are just canned replies or repeating
   the same excuses over and over. In the free version of Dokan facing the public
   on WordPress.org, you occasionally respond, but it is always blaming Covid-19
   for taking money and not providing the promised included support- and even trying
   to demand more money for support with no guarantee. I have 4 clients with many
   paid licenses for WeDevs products and now that quite a large sum of money has
   already been invested and much time wasted on waiting, I cannot in good conscience
   recommend your products any longer unless we start getting replies from you very
   soon.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Why do [video] shortcodes not work on the vendor bio page?](https://wordpress.org/support/topic/why-do-video-shortcodes-not-work-on-the-vendor-bio-page/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/why-do-video-shortcodes-not-work-on-the-vendor-bio-page/#post-12794409)
 * Hi Rashed, we submitted support tickets and have not received a reply. Please
   advise, thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Vendor Coupons are Erroneously Displaying on All Store Pages](https://wordpress.org/support/topic/vendor-coupons-are-erroneously-displaying-on-all-store-pages/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/vendor-coupons-are-erroneously-displaying-on-all-store-pages/#post-12794408)
 * Hi Rashed, we submitted support a support request and have not received a reply.
   Please advise, thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Vendors Not Receiving Notification Emails on Orders Containing Multiple Vendors](https://wordpress.org/support/topic/vendors-not-receiving-notification-emails-on-orders-containing-multiple-vendors/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/vendors-not-receiving-notification-emails-on-orders-containing-multiple-vendors/#post-12781346)
 * Sorry, but I believe you are incorrect; please see line **48** of **/includes/
   Emails/VendorNewOrder.php** in Dokan Lite:
    `$this->recipient = 'vendor@ofthe.
   product';`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Vendors Not Receiving Notification Emails on Orders Containing Multiple Vendors](https://wordpress.org/support/topic/vendors-not-receiving-notification-emails-on-orders-containing-multiple-vendors/)
 *  Thread Starter [refluxcomponents](https://wordpress.org/support/users/refluxcomponents/)
 * (@refluxcomponents)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/vendors-not-receiving-notification-emails-on-orders-containing-multiple-vendors/#post-12767463)
 * We are using 3.0.3 for Dokan Lite and 3.0.2 for Dokan Pro. I can confirm the 
   issue is still occurring as before.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/refluxcomponents/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/refluxcomponents/replies/page/2/?output_format=md)