133 comments found.
Hello,
I noticed that a provider can create more than one shop. Is there a setting in the system that allows the administrator to limit the number of shops a provider can open?
For example, can the admin restrict it so that each provider is allowed to create only one shop?
Thank you.
HI,
Provider can able to create only one shop. If you need, we can customize it for you.
how can i remove filter
Hi,
The filter can be removed on the coding only and not from the admin end.
If you need any support, please let me know.
how can i customise filter
Hi
Here are the details about the filter
Steps to Remove Service and Product Listing Filters 1. Remove Filter Views from Index Pages For Products: File: resources/views/frontend/pages/products/index.blade.php
Line 52: Remove @include(‘frontend.pages.products.filter’) Line 54: Change to (to use full width) For Services: File: resources/views/frontend/pages/services/index.blade.php
Line 49: Remove @include(‘frontend.pages.services.filter’) Line 51: Change the column class from col-lg-9 to col-lg-12 (if it exists) 2. Remove Filter Data from Repository Methods For Products: File: app/Repositories/ServiceRepository.php
Lines 63-86: Remove the entire $highlighted array section Lines 90-97: Remove the $categories query section Lines 100-106: Remove the $shops query section Lines 108-115: Remove the $colors query section Lines 118-131: Remove the $maxPrice calculation section Lines 139-146: Remove the filter data from the mobile API response Line 150: Update the view compact statement to remove filter variables: php return view(‘frontend.pages.products.index’, compact(‘data’, ‘authId’)); For Services: File: app/Repositories/ServiceRepository.php
Lines 181-206: Remove the entire $highlighted array section Lines 208-214: Remove the $categories query section Lines 216-232: Remove the $shops query section Lines 234-261: Remove the $vendors_locations query section Lines 265-268: Remove the $maxSourcePrice calculation section Lines 274-280: Remove the filter data from the mobile API response Line 284: Update the view compact statement to remove filter variables: php return view(‘frontend.pages.services.index’, compact(‘data’, ‘authId’)); 3. Remove JavaScript Filter Functionality For Products: File: public/frontend/assets/js/custom/products.min.js
Lines 59-69: Remove the filters object declaration Lines 83-101: Remove the filter collection logic Lines 118-125: Remove filter parameters from AJAX data Lines 195-232: Remove the “Apply Filter” button event listener Lines 235-255: Remove the “Reset Filter” button event listener For Services: File: public/frontend/assets/js/custom/services.min.js
Lines 11-17: Remove the filter variable declarations Lines 96-100: Remove filter parameters from AJAX data Lines 195-197: Remove the “Filter” button event listener Lines 201-223: Remove the “Reset filter” event listener Lines 241-284: Remove the entire filter groups and updateFilter function 4. Remove CSS Dependencies (Optional) Files: resources/views/frontend/pages/products/index.blade.php and resources/views/frontend/pages/services/index.blade.php
Lines 4-7: Remove the rangeslider CSS include if no longer needed 5. Clean Up Backend Controllers (Optional) If you want to clean up the controllers, you can remove filter-related parameters from:
File: app/Http/Controllers/ProductController.php – productlist() method File: app/Http/Controllers/ServiceController.php – servicelist() method
hi can customer live revew, if yes how
HI,
Yes, the customer can give the review after purchasing the product or booking a service.
Hi support, do you have any mobile app for this script?
Hi,
Thanks for reaching us.
Yes, we are developing the mobile and it will be completed by 1st of the Feb.
Okay am waiting for the mobile app to buy the complete solution i also notice you offer free installation that is good.
do you have flutterwave payment gateway also whatsapp contact option for vendors?
Hi,
Yes, we will provide free installation.
Currently, we dont have flutterwave and whatsapp option. We can customize it for you.
If you buy the web, we can customize it for you.
Kindly let me know.
is the mobile app completed now?
Hi,
Yes, we completed the mobile app. We are doing final testing and preparing for the release as well.
Also i have been checking your demo for the function to use local currency but i did not see it and even though you have this function there is no supporting payment gateway that will work with local currency such a flutterwave
HI,
We are supporting stripe and paypal only. If you need, we can build the flutterwave for you. Kindly let us know.
I really love the concept of your script but still at the basic level, one will have to do more and more customization to get it to a basic usage able position. For example, there is no local currency, no bank withdrawal option for providers and also no bank payment for buyers to top up their wallet. I mean these are basic things for people that want to lunch straight away while doing major customizations. But above all the UI is very good really great
Hi,
Thanks for highlighting the points. Bank transfer options are available. We are also planning to release the mobile app as well.
Okay waiting for the mobile app to place an order for both the website and mobile after testing. Also i will need flutterwave payment gateway integration how much extra do i have to pay for this. can we talk on whatsapp send me your whatsapp number techcommercementor@gmail.com
Hi,
Thanks for confirmation. We are going to release by this week. I will email the details.
am still waiting for your email about the cost of adding flutterwave gateway for both buyer account topup and provider account withdrawal. Also re-confirm that you have bank transfer for withdrawal and buyer account topup. When is the mobile going to be released
Hi,
Sure, I will email the details
Do you have a mobile app for customer, Vendor, Delivery boy – when is it releasing, Do you have integrations – zone based order restriction via google map, any whatsapp, Referrerl – we don’t see these in settings. Do you have inventory tracking? is it based on Larawel framework? Can we search business via location ( google MAp)
Hi, Currently, we do not have the mobile app and we are developing the mobile app that will be completed by this month.
For other requirements, we can customize it for you.
hi – can you list the features in the mobile app you are developing? will it be3 apps?
Hi,
We are planning to release the app based on the features available on the web.
Currently, we are releasing the app as a single that will support for customer and the vendor
I am currently testing the online solution, but I am encountering an error during the chat module verification. Could you please help me resolve this issue? link : https://craftesty.dreamstechnologies.com/provider/chat Internal Server Error Copy as Markdown
Illuminate\Database\QueryException SQLSTATE[42S22]: Column not found: 1054 Unknown column ‘is_read_message’ in ‘where clause’ (Connection: mysql, SQL: select count(*) as aggregate from `message` where `from_user_id` = 2 and `to_user_id` = 3 and `is_read_message` = 0 and `message`.`deleted_at` is null) GET craftesty.dreamstechnologies.com PHP 8.4.5 — Laravel 12.28.1
Expand vendor frames 10 vendor frames collapsed
Modules\Chat\app\Repositories\Eloquent\ChatRepository :98 array_map 3 vendor frames collapsed
Modules\Chat\app\Repositories\Eloquent\ChatRepository :71 providerChat
Modules\Chat\app\Http\Controllers\ChatController :32 providerChat 6 vendor frames collapsed
App\Http\Middleware\ProviderMiddleware :26 handle 1 vendor frame collapsed
App\Http\Middleware\SetLocale :43 handle 45 vendor frames collapsed
public/index.php :17 Modules/Chat/app/Repositories/Eloquent/ChatRepository.php:98 $user->lastMessageTime = $lastMessage ? $lastMessage->created_at : null;
$user->unread_count = Message::where('from_user_id', $user->id)
->where('to_user_id', $authId)
->where('is_read_message', 0)
->count();
});
return $user;
// Sort by last message time
$sortedUsers = $usersCollection->sortByDesc(function ($user) {
return $user->lastMessageTime ? strtotime($user->lastMessageTime) : 0;
})->values();
// Push admin to last
$admin = $sortedUsers->firstWhere('user_type', 1);
Hi,
Sure, we will check and resolve it.
Is it possible to use only services modules and only with Subscription mode ?
Hi,
Yes, we can customize it and have your options. Here is our new version of the craftesty https://craftesty-laravel.dreamstechnologies.com/We build using laravel.
For further queries, kindly reach us at support@dreamstechnologies.com
we have released the Craftesty v2.0 files in Envato. You can check the demo below link
https://codecanyon.net/item/craftesty-multi-vendor-service-booking-script-shops-products-services/36273606Your url not work
Hi We are planning to launch the application newly usinng the new framework that will be ready by next week. Demo link: https://craftesty-laravel.dreamstechnologies.com/ Kindly reach us at support@dreamstechnologies.com
Hi,
We have improve UI design and built with Laravel released in Envato. Kindly check the below URL for the demo
https://codecanyon.net/item/craftesty-multi-vendor-service-booking-script-shops-products-services/36273606Hello
1. There is no option to set up Shops even if the provider subscribed for test.
2. In USA, There is no km distance unit, how to change mi distance and work by miles for location
3. In USA, There is no VAT, we use TAX, Is there any admin menu to change Terminology of System ? If not, How to change ?
4. I changed provider profile field for USA, after this, I cannot save after filling out the field, like address. Check and fix
5. In provider profile, Commercial Register Docu is for what ? This is required by default. Is there any admin menu to turn on/off those field for provider or user ?
Really appreciate
And 6. The provider profile is not updated even after filling out all field.
Hi,
Thanks for bringing it to my attention. We will check and resolve it as soon as poobile and keep you posted.
No answer ? No Fixing ?
Hi,
1. There is no option to set up Shops even if the provider subscribed for test. – We need to set a free subscription
2. In USA, There is no km distance unit, how to change mi distance and work by miles for location – We need to customize the distance calculation instead of miles.
3. In USA, There is no VAT, we use TAX, Is there any admin menu to change Terminology of System ? If not, How to change ? – We neeed to custmise the above point or instead of VAT, can we change the term as TAX
4. I changed the provider profile field for USA after this, I cannot save after filling out the field, like address. Check and fix
- The addresses are updated based on the USA
5. In provider profile, Commercial Register Docu is for what ? This is required by default. Is there any admin menu to turn on/off those field for provider or user ? – This is for verification. We do not have an enable and disable option
So. Did you change 1,2,3 as you promised to resolve all these issues ?
Hi,
Let me work on it and get back to you.
Hello How to set up shop ?
There is no document at all
Where is your document in detail ?
Hi,
Sure, we will guide by provding the necessary steps.
This can be used for USA Hair Stylists ?
I purchased this but in Backend, I found there is no usa base terminology and measure case. All is for India ?
If this is not yet for USA providers, I want to get refund.
Hi, Let me know the changes based on the USA providers. We will adopt it for you.
Really appreciate, I will summarize and prepare screen shot and send to you when ready. I really appreciate
Hi, Kindly send the details to this email support@dreamstechnologies.com
I still couldn’t see the app but I want to buy. Just should make sure one thing. I don’t see any settings in subscription. How to set differences between packages. There’s text area but how does functions works?
Hi, Thanks for reaching us. We planned to fix the mobile app issue by next week, as the resource was occupied with another project. The subscriptions are available on the admin and are added as per price range, with duration. If you need, we can customize it for you. The textarea is to add those features of the subscription payment. Kindly reach us at support@dreamstechnologies.com
Hi. App demo doesn’t work. Can you check it please?
Hi, Thanks for bringing this to our attention. We will check and keep you updated.
Hi. Mobile app isn’t working. Can you recheck please?
Sure, we will check it and let you know. If you have any doubts pls contact support@dreamstechnologies.com
if we downloaded demo app.. it is not working… plz rectify the issue…
Hi,
Sorry for the inconvenience. We will check and get back to you. Kindly reach us on support@dreamstechnologies.com
Hello sir this is very nice scripts.
Can you tell about future update ? What functions will you add in next update ??
Please add some indian payment gateway.
Can you customize little bit for me ??
Thanks for your interest, kindly send your details to support@dreamstechnologies.com we will upgrade the new design in upcoming release. We will customise your requirement kindly share the details to our email
Hello sir please add more payment gateway for india
Sure, we planned but it will take time. Which payment gateways do you need. Kindly send the details to support@dreamstechnologies.com
Indian payment gatway
Okay thank you
Hello
1- is this just an Android app or it comes with website and IOS too??
2- is there a feature where customers can pay shops or service providers directly without using system payment methods ?
3- can it be used like business directory?
4- is shared hosting good enough to host this system ?
5- do you provide installation service to upload apps to Google play and app store??
Thanks
Hi, Thanks for reaching us.
1- is this just an Android app or it comes with website and IOS too??
It is a complete web application with android and iOS app.
2- is there a feature where customers can pay shops or service providers directly without using system payment methods ?
- All the payments will reach the admin. Finally, admin will release the payments to the shop.
3- can it be used like a business directory?
- Yes
4- is shared hosting good enough to host this system ? - Yes
5- do you provide installation service to upload apps to Google play and app store??
- Yes, we will support you when you buy the extended license.
Let me know if you need any information from our end and you can reach us on “support@dreamstechnologies.com”
Hello
1- Is there any plan to add cash on delivery? some users would prefer to pay service providers cash once they finish the job
2- so if i purchased Craftesty – Multi Vendor Service Booking System for Cleaning, Salon, Maid with Ecommerce, i will get full source code for web, Android and iOS app ?? Even with regular license!!
3- if i purchase the extended license will you install the script on my server, do all project package setup, reskin, notification configuration..etc, upload the apps to Google play and apple store??
Thanks
Hi
1. Yes, we can add cash on delivery that comes under the extra price.
2. Yes, we will provide the complete source code.
3. Yes, we will provide complete installation support, change the branding color, and release the mobile apps.
Cash on delivery is very important, not all clients like online payments, some prefer paying cash once job is done, hope you will consider adding it.
Thanks
If you buy extended license we will give free development support for Cash on Delivery. If you have any doubts please contact support@dreamstechnologies.com
Hello
1- can users chat with service providers before making any booking? In case users would like to clarify some doubts before making any booking.
2- can providers hide price or is there hide price/request quote feature ? Some providers would like to hide the price to avoid price competition?
3- is there any hidden costs we should be aware of like firebase related costs, app operating costs, etc?!
Thanks
Hi
1. Users cannot chat with service providers before booking. Once the booking is done, the user can chat with the providers. We can customize this option if you need it.
2. Currently, the providers cannot hide the price. We can customize it.
3. No.
Let me know if you need any further information.
1- if there is no hidden costs, then what kind of chatting and notification are used in the apps ??
2- regarding chatting before booking, will that be paid customazation service or you will add it to the system as an update and buyers can use it optionally based on their needs !
Thanks
3- what technologies have you used for the apps ?
Hi, 1. We build the chat using CodeIgniter in-house, and it does not need third parties. For push notifications on the mobile app, we need Firebase credentials.
2. If you buy the extended license, we can customize the chat so the users can directly chat with the providers.
3. Mobile apps – Swift for iOS and Java for Android.
1-when there are more then 1 serviceman under one service provider/company, can clients choose 1 or more servicemen as they like, for example, if a client want hair cut and chosed one barbershop, as we know, barbershops have number of workers,, so clients should be able to choose the one they like the most, can clients do that with the current system?? can service providing businesses add staff so user can choose the one they want or like ?
2- What if the service provider i booked is busy at the time i booked ?
3-What if a user want keep getting back to book the same service provider, will user need to search for that particular service provider everytime he or she needs to book ? Or there is an easier way to help users to book their favourite service provider with minimal effort ?
Thanks
Hi,
1. The provider can create staff and add services to them with timeslots. As a user, you can choose a single staff member for a booking.
2. Once the slot is booked, the provider can verify and if he is busy, he can able to cancel it as per the current scenario.
3. We have to customize it.
Kindly share your queries to this email: support@dreamstechnologies.com
So there is no favourite service providers section/ feature for easey access or reach???
In-app purchase commission:
1- Does the app require service providers to pay directly inside the app, or are they redirected to an external website for payment?
- If payments happen inside the app using Google/Apple IAP, they are subject to commission.
- If the app redirects users to a website, you can avoid commission.
2- Did you implement Apple and Google’s guidelines correctly to prevent rejection when using external payments?
Kindly share your queries to this email: support@dreamstechnologies.com
Message: Trying to access array offset on value of type null
Filename: revenue/revenue_list.php
Line Number: 99
Backtrace:
File: /mnt/data/craftesty/public_html/application/views/admin/revenue/revenue_list.php Line: 99 Function: _error_handler
File: /mnt/data/craftesty/public_html/application/views/admin/template.php Line: 6 Function: view
File: /mnt/data/craftesty/public_html/application/controllers/admin/Revenue.php Line: 42 Function: view
File: /mnt/data/craftesty/public_html/index.php Line: 316 Function: require_once
A PHP Error was encountered Severity: Warning
Message: Trying to access array offset on value of type null
Filename: revenue/revenue_list.php
Line Number: 100
Backtrace:
File: /mnt/data/craftesty/public_html/application/views/admin/revenue/revenue_list.php Line: 100 Function: _error_handler
File: /mnt/data/craftesty/public_html/application/views/admin/template.php Line: 6 Function: view
File: /mnt/data/craftesty/public_html/application/controllers/admin/Revenue.php Line: 42 Function: view
File: /mnt/data/craftesty/public_html/index.php Line: 316 Function: require_once
Kindly share your purchase code and website details to support@dreamstechnologies.com
hola soy cliente del codigo fuente y necesito ayuda , por que hay unas cosas que no aparecen en la web
necesito un numero con quien comunicarme porfavr necesito soporte de pequelas cosas que seguro no estan instaladas en el codigo fuente
Hi Daniel, Please send the details to support@dreamstechnologies.com. Our team will help you.
The demo version doesn’t work and has been out of date for a year. I bought the code some time ago and want to install it. Is there still support? Will it be updated again?
Already we started conversation in email