• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

SmartPanel - SMM Panel Script

SmartPanel - SMM Panel Script 4.1

No permission to download
Version 4.0
- [NEW]: Light/Night mode for theme
- [NEW]: Admin dashboard theme
- [NEW]: User dashboard layout (vertical and horizontal)
- [ADD]: multi selection for bulk action button
- [ADD]: Secret key option when admin account set balance, funds etc
- [ADD]: Auto logout option when admin change ip address for security
- [ADD]: Sorting order option for payment gateway
- Improved: Page Speed of the Services page - Improved: Services page
- Improved: Cronjob system
- Improved: Order status for big panel
- Fixed: small bugs relate to script.

P.S. The long-awaited Refill and referral system were never made.

Update: The author wrote that the Refill module will be released soon and it will be a separate paid module
 
Last edited:
Anyone know how can add minimum order limit based on price? For example, the minimum order is $5 ?
Just set the minimum number of likes/followers for the order so that the minimum price is $5.
 
you can not change 1000 services with different prices, it takes 1000 years to do this:LOL:
You need to go into the code, look for the line where the balance is checked when creating an order, and write: if the order value is less than $5, then generate an error. This is easy to do.
 
You need to go into the code, look for the line where the balance is checked when creating an order, and write: if the order value is less than $5, then generate an error. This is easy to do.
Yes, i know the idea , but i'm not a developer and i don't know PHP
 
Version 4.0
- [NEW]: Light/Night mode for theme
- [NEW]: Admin dashboard theme
- [NEW]: User dashboard layout (vertical and horizontal)
- [ADD]: multi selection for bulk action button
- [ADD]: Secret key option when admin account set balance, funds etc
- [ADD]: Auto logout option when admin change ip address for security
- [ADD]: Sorting order option for payment gateway
- Improved: Page Speed of the Services page - Improved: Services page
- Improved: Cronjob system
- Improved: Order status for big panel
- Fixed: small bugs relate to script.

P.S. The long-awaited Refill and referral system were never made.

Update: The author wrote that the Refill module will be released soon and it will be a separate paid module
please nulled version 4
 
d3v1l updated SmartPanel - SMM Panel Script with a new update entry:

SmartPanel - SMM Panel Script V4.0 Nulled

Version 4.0
- [NEW]: Light/Night mode for theme
- [NEW]: Admin dashboard theme
- [NEW]: User dashboard layout (vertical and horizontal)
- [ADD]: multi selection for bulk action button
- [ADD]: Secret key option when admin account set balance, funds etc
- [ADD]: Auto logout option when admin change ip address for security
- [ADD]: Sorting order option for payment gateway
- Improved: Page Speed of the Services page - Improved: Services page
- Improved: Cronjob system
- Improved: Order status...

Read the rest of this update entry...
 
Anyone know how can add minimum order limit based on price? For example, the minimum order is $5 ?
1. Go to /app/modules/order/controllers/order.php
2. Search ~368 line "if ($user->balance != 0 && $user->balance < $total_charge || $user->balance == 0) {"
3. Paste the code like this (I haven't tested this code, but it should work. Write if so.)
Code:
        // check balance
        if ($user->balance != 0 && $user->balance < $total_charge || $user->balance == 0) {
            ms(array(
                "status"  => "error",
                "message" => lang("not_enough_funds_on_balance")
            ));
        }
//your code:
        if ($total_charge < 5) {
            ms(array(
                "status"  => "error",
                "message" => "Minimum order 5$"
            ));
        }
 
  • Like
Reactions: Raumani and amir
1. Go to /app/modules/order/controllers/order.php
2. Search ~368 line "if ($user->balance != 0 && $user->balance < $total_charge || $user->balance == 0) {"
3. Paste the code like this (I haven't tested this code, but it should work. Write if so.)
Code:
        // check balance
        if ($user->balance != 0 && $user->balance < $total_charge || $user->balance == 0) {
            ms(array(
                "status"  => "error",
                "message" => lang("not_enough_funds_on_balance")
            ));
        }
//your code:
        if ($total_charge < 5) {
            ms(array(
                "status"  => "error",
                "message" => "Minimum order 5$"
            ));
        }
Thank you mate , you did a amazing job , let me try, thank you again
 
  • Like
Reactions: ceg
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock