Title: Nurul Umbhiya's Replies | WordPress.org

---

# Nurul Umbhiya

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/zikubd/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/zikubd/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/zikubd/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/zikubd/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/zikubd/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] Problem with dokan pro](https://wordpress.org/support/topic/problem-with-dokan-pro/)
 *  [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/problem-with-dokan-pro/#post-17547490)
 * This issue have been fixed with the latest version of Dokan Pro.
 *   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] Bugs in downloadable products](https://wordpress.org/support/topic/bugs-in-downloadable-products/)
 *  [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/bugs-in-downloadable-products/#post-17471303)
 * Hello,
   We will fix the issue with the next version of Dokan. Thanks for reporting
   the bug.
 *   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] How to set a minimum price from the backend](https://wordpress.org/support/topic/how-to-set-a-minimum-price-from-the-backend/)
 *  [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/how-to-set-a-minimum-price-from-the-backend/#post-17462251)
 * We are planning to bring a new feature named **Product Form Manager** which will
   be a pro module, with this you’ll be able to do this type of customization with
   ease. Meanwhile, you can do some custom coding to achieve this easily.
 *   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] What is the hook after order is completed and credited?](https://wordpress.org/support/topic/what-is-the-hook-after-order-is-completed-and-credited/)
 *  [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/what-is-the-hook-after-order-is-completed-and-credited/#post-16121358)
 * Right now there is no hook available to achieve this. However `$wpdb->prefix .'
   dokan_vendor_balance'` is the table responsible for storing vendor balance-related
   data. You can study this table structure and data, and probably schedule a task(
   daily/twice daily) to check this table content and do whatever you want with 
   that data.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy] Bugs Bugs Bugs!!!](https://wordpress.org/support/topic/bugs-bugs-bugs-8/)
 *  [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/bugs-bugs-bugs-8/#post-13675903)
 * 1. i found plugin is using die() function instead of native wordpress function–
   wp_die(), why this ?
 * — wp_die(): is used to kill current execution and to display formatted error 
   messages. We used wp_die() where we needed to display user-centric error messages
   and die() to kill unauthorized ajax requests and it’s the proper way to do it.
   Also when you are downloading a CSV file, you just want to kill the current execution,
   you don’t need to display a formatted error message to the users!!!
 * [https://developer.wordpress.org/reference/functions/wp_die/](https://developer.wordpress.org/reference/functions/wp_die/)
 * 2. Another i found sometimes using check_ajax_referer sometimes using wp_verify_nonce
   wth?
 * — check_ajax_referer(): is used to verify nonce from the Ajax request to prevent
   processing requests external of the blog.
    [https://developer.wordpress.org/reference/functions/check_ajax_referer/](https://developer.wordpress.org/reference/functions/check_ajax_referer/)
 * — wp_verify_nonce(): is used to verify nonce from a $_GET or $_POST requests 
   usually from a HTML form or a URL
    [https://developer.wordpress.org/reference/functions/wp_verify_nonce/](https://developer.wordpress.org/reference/functions/wp_verify_nonce/)
 * Here is a link where you can learn more about WordPress Nonce: [https://codex.wordpress.org/WordPress_Nonces](https://codex.wordpress.org/WordPress_Nonces)
 * We are following WordPress coding standards, using the best practices, required
   design patterns, and finally applied the best security approaches to our entire
   codebase. Each pr is checked against phpcs.
 * Finally, I would like to say, Dokan multivendor plugin codebase is fairly complex
   and you need some time to get used to it. After that, you’ll love how this plugin
   is structured.
 * Also, I would like to request you to report any bugs, bad practices, bad code,
   duplicate code, unnecessary hard coding, no consistencies, etc in our GitHub 
   repository. Reports like this will help make this plugin even better in the future.
   Issue report link: [https://github.com/weDevsOfficial/dokan/issues](https://github.com/weDevsOfficial/dokan/issues)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sucuri Security - Auditing, Malware Scanner and Security Hardening] Sucuri Plugin Critical Error – not able to open admin page](https://wordpress.org/support/topic/sucuri-plugin-critical-error-not-able-to-open-admin-page/)
 *  [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/sucuri-plugin-critical-error-not-able-to-open-admin-page/#post-13600380)
 * I’m getting the same error and wasn’t able to login to the admin dashboard, after
   a couple of tries, I’ve finally managed to login to my site.
    PHP Version: 7.0.33-
   34
 * Error Details
    ============= An error of type E_ERROR was caused in line 431 
   of the file demosite.com/wp-content/plugins/sucuri-scanner/src/fileinfo.lib.php.
   Error message: Allowed memory size of 134217728 bytes exhausted (tried to allocate
   33554440 bytes)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ERP: Complete HR, Accounting & CRM Suite with WooCommerce CRM Support] Entitlements can no longer be edited or deleted since version 1.6.0](https://wordpress.org/support/topic/entitlements-can-no-longer-be-edited-or-deleted-since-version-1-6-0/)
 *  [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/entitlements-can-no-longer-be-edited-or-deleted-since-version-1-6-0/#post-13027329)
 * Thanks for reaching out. Kindly set debug mode to true from **WP ERP –> Settings–
   > General –> Enable Debug Mode**
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Student Results] Not Working on Eduma Theme](https://wordpress.org/support/topic/not-working-on-eduma-theme/)
 *  Plugin Author [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/not-working-on-eduma-theme/#post-12142585)
 * Hi,
    Can you please send me your site login details here at admin(at)nurul.me?
   I’ll check and will try to give you a solution.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Student Results] Not Working on Eduma Theme](https://wordpress.org/support/topic/not-working-on-eduma-theme/)
 *  Plugin Author [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/not-working-on-eduma-theme/#post-11773720)
 * Hi,
    Try disabling Easy Student Result bootstrap css and js from Student Results–
   > Settings –> General Settings Tab. Let me know if this works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Student Results] Not Working on Eduma Theme](https://wordpress.org/support/topic/not-working-on-eduma-theme/)
 *  Plugin Author [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/not-working-on-eduma-theme/#post-11770537)
 * Hi,
    Try enabling wp_debug feature to see if there is any error displaying. If
   not, check your php error log, I hope you’ll find your answer there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Student Results] Can I add custom Student Information??](https://wordpress.org/support/topic/can-i-add-custom-student-information/)
 *  Plugin Author [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/can-i-add-custom-student-information/#post-11753772)
 * Hi,
    try this: **registration_no: My Custom Data**
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Student Results] How to show all semester results together](https://wordpress.org/support/topic/how-to-show-all-semester-results-together/)
 *  Plugin Author [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/how-to-show-all-semester-results-together/#post-11421784)
 * Hi,
 * Like I said earlier, ESR doesn’t support what you are looking for and I don’t
   have plans to make a new addOns right now. Sorry to disappoint you.
 * Regards,
    Nurul Umbhiya
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Student Results] How to show all semester results together](https://wordpress.org/support/topic/how-to-show-all-semester-results-together/)
 *  Plugin Author [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/how-to-show-all-semester-results-together/#post-11415223)
 * What you are looking is not available with ESR plugin or with existing premium
   addons. Only a single result can be displayed at a time. You need custom modification
   for your requirement. Also try emailing me at contact(at)nurul.me for faster 
   reply.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Student Results] How to show all semester results together](https://wordpress.org/support/topic/how-to-show-all-semester-results-together/)
 *  Plugin Author [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/how-to-show-all-semester-results-together/#post-11408243)
 * Hi,
 * You can use [Private Result Search](https://www.nurul.me/product/easy-student-results-private-result-search/)
   addOns. Please check attached url for more information.
 * Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Student Results] Marks Entry Frontend premium addon does not work](https://wordpress.org/support/topic/marks-entry-frontend-premium-addon-does-not-work/)
 *  Plugin Author [Nurul Umbhiya](https://wordpress.org/support/users/zikubd/)
 * (@zikubd)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/marks-entry-frontend-premium-addon-does-not-work/#post-11212324)
 * use contact(at)nurul.me to get a faster response 🙂

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

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