29718 comments found.
Basti, How are you? I tried delete merchant it showed me message:
“Sorry but you cannot delete this merchant it has reference on order tables” What is that mean?
Hi mate!
that means that the merchant you are trying to delete has already an order or records
you cannot delete this since it will affect the computation
if you really want to delete the merchant you will need to delete first all the orders for this merchant
or manually delete this merchant using your phpmyadmin and the table is _merchant
check the tables _order using your phpmyadmin if you want to delete it permanently
cheers!
it means that the merchant you are trying to delete has already records like it has already ordered
if you really want to delete it try to delete it in your phpmyadmin
Basti, TY!
cheers
I need your help and support please!
I wrote support emails for you 4 days ago and I still do not have any answers!
I leave you post’s help in the app’s of: K-Restaurant Mobile App Karenderia Driver Mobile App Karenderia Mobile App VersionKarenderia Order Taking App (Merchant Receiving Orders)
And I do not have answers!
I see you start to answer but you jump my post!
I need answers and support!
You must have several emails from my account .. soporte@ztreaming.xyz user Mxtream1
already replied in your comments
if still not please wait am going tru all the comment sections
I sent you an email
sent
Basti – Finally am able to login to admin. Thanks. Now, anytime I upload any image, be it item gallery, or a logo, it does not save at all. My guess is this has to do with writing permissions of the folders. I have chmod assets to 777, but still unable to save anything. What else could be wrong?
reply sent
Hi, I am looking for further information on the reports available in the system, I would like to be able to pull a report for a given restaurant and a given date range, the report to download in an excel format, and display date, order number, price, payment type, and delivery fee paid.
Secondly to be able to pull a report for a driver that details all the orders hes completed and delivery fees and the order value and if it wash cash or card? this is so we know how much cash each driver collected.
or a report that combines the 2?
Many thanks,
Kurt
Hi mate!
We have sales report summary in admin and merchant
In admin, kindly go to Reports and choose the Summary type you want to
download in excel format
In merchant, kindly go to Reports and choose the Summary type you want to
download in excel format
Kindly post it in the driver app section regarding the driver report
Hope this helps!
Problem with the report you mentioned it doesn’t separate the delivery fee into a separate field.
I will post about drivers report in driver app
Hi, Is there a way in the admin panel to change the names of the checkout field labels and Boxes?
Many Thanks,
Kurt
Hi mate!
There is no settings in the admin panel to change that
You can change the checkout field labels and boxes in
edit the file views/store/checkout.php
Thanks
Hello, please i just upgrade to vps so i can use shell_exec can u tell me which operating system is better for karenderia ? see picture https://imgur.com/a/Dgb2JS4
in my demo am using vps power+
https://www.a2hosting.com/vps-hosting/managed/comparealso choose a server that is near in your country
Lol i did back to my old package hosting, when i were in vps i did really understand nothing, i passed my Day juste to try config the server it’s so hard
its because maybe you choose not managed vps,
if you do you will be the one who will configure the server
U right but i wasn’t know that, https://www.hostinger.co.uk/vps-hosting
it says 24/7 support for your success
so you will be able to ask help anytime ?
Yeah i talked with the support all the Day they didn’t stop sending me links with nothing of tutorials, and i don’t have a friend or someone Who know in this things
oh they did not fixed for you? usually when i needed something they will be the one who will fixed it not me
only if the issue is with in the server like mysql strict enabled , cron jobs etc
They told me that they don’t do things like that and i need to do it myself
all that because i wanted shell_exec to be enabled :’-(
ahhh
better choose another hosting
in my demo am using a2hosting vps and shell_exec is enabled
question what do you need this feature?
on ur demo website, when we send a notification to the driver app, it come instantely but on my website, it want until the cron jobs run, (every minute) and the same thing when we assign a delivery? when i assign a delivery to the driver, nothing showing on the driver app until i pull down to reflesh manualy, not like on ur demo app !! on marchant app order receiver the same think it wait until the cron jobs run on the demo it come instantly, please is there any alternative, or can make that work with code
ah ok
i think i send you a code for that already? but its using shell exec command
there is a way but it will not as fast at the one like in my server
it might it will run the cron jobs and will wait until its finish
unlike my demo its not waiting for the cron to fnish
Hi basti ,
I have issue with following settings ,
You have answered previously to add the code but which is already there.
Problem not solved yet. Also replied there, but no answer from you.
Kindly Reconsider the condition
—-—-—-Original Comment-—-—-——-
I have problem with map in mobile app when I enabled location by search in admin “settings->home search area-> search by location”.
Then while placing order it shows “for exact location of your delivery address please select your address from map” ,
Then I disabled the map in mobile settings, then it works. Is there any way to select exact location from map in app with search by location option enabled in admin settings.
Cause we have area wise delivery fee, but there are many customers in same area so need to have their exact location, via map.
Thanking You
—-—-—-—-—-—-Your Reply-—-—-—-—-—-——-
you mean it keeps going back to select location from map? if yes try this quick fixed in www/index.html
look for page-shipping-location-area
after this line
<input type=”hidden” name=”area_name” class=”area_name”> add this.
1) I am Using Updated module don’t have any changes just installed as per your instructions.
can you post this to mobile app 
keep the conversation in correct item
cheers
Basti,
check this please for stripe: i am getting 500 http error www.example.com is currently unable to handle this request. https://www.onefresh.co/stripeinit/?id=9 https://www.useloom.com/share/b8211f97e48c4e0582162a0960a1ba12reply sent .
server has missing library ask your hosting to install this in your server
http://php.net/manual/en/book.mbstring.phpDoing now!
solved
Hello, on ur demo website, when we send a notification to the driver app, it come instantely but on my website, it want until the cron jobs run, (every minute) and the same thing when we assign a delivery? when i assign a delivery to the driver nothing showing on the driver up until i pull down to reflesh manualy, not like on ur demo app !! on marchant app order receiver the same think it wait until the cron jobs run on the demo it come unstantly, please help me Thanks
Hi mate!
Kindly go to fastRequest() in functionV3.php
and change it to:
public static function fastRequest($url)
{
if (preg_match("/https/i", $url)) {
@shell_exec("curl $url");
} else {
$parts=parse_url($url);
$fp = fsockopen($parts['host'],isset($parts['port'])?$parts['port']:80,$errno, $errstr, 30);
$out = "GET ".$parts['path']." HTTP/1.1\r\n";
$out.= "Host: ".$parts['host']."\r\n";
$out.= "Content-Length: 0"."\r\n";
$out.= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
fclose($fp);
}
}
Thank u so much, one last question please how can i make the delivery available only between 11:30 to 15:00 and 19:00 to 22:30 ? Thank u so much Because i don’t know why when we want to order on time is showing between 07:30 to 18:30 that all !
i just tried what u gived me but always the same thing, it wait until the cron jobs run, i did send the notification and wait like a minute
, can i put an https urls in cron jobs ??
Hi mate!
1.this will depend in your server if shell_exec is enabled in your server for
fastRequest function
2.To make delivery available, set your opening and closing hours
in merchant panel -> settings -> Store Hours
any time that exceeds the open hours will not be allowed to make an order or
transaction
Hope this helps!
Basti, Can you please support for this only I need only Stripe and delivery information for merchants in front end thats all!
as well the delivery details are not shown: Browse page shows the details http://prntscr.com/m6spu5 Restaurant page is not showing details: http://prntscr.com/m6sqba Respectfully,
double post. solved
Hi, do you offer customization service?
I want to change the name restaurant on mobile and desktop version to store or merchant? Is this simple for me todo.. I am a rookie
Hi mate!
You can change the default in config/main.php
’name’=>’Karinderia Multiple Restaurant’,
and kindly post your concern about mobile in the mobile app section 
For customization concerns, please email
https://codecanyon.net/user/bastikikang#contactcheers!
Basti,
Can you please let me know the issue for stripe is not showing on checkout, i filled all the fields for test keys from admin dashboard as from merchant dashboard you do not have the ability to fix it.
as well the delivery details are not shown: Browse page shows the details http://prntscr.com/m6spu5 Restaurant page is not showing details: http://prntscr.com/m6sqba Respectfully,
reply sent
solved
Solved except Google API geocoding Error
Google API solved!!!
glad to hear that mate
Basti,
Can you please let me know the issue for stripe is not showing on checkout, i filled all the fields for test keys from admin dashboard as from merchant dashboard you do not have the ability to fix it.
as well the delivery details are not shown: Browse page shows the details http://prntscr.com/m6spu5 Restaurant page is not showing details: http://prntscr.com/m6sqbaRespectfully,
double post
Sorry
Basti, How are you? I need Stripe to be fixed for owner to receive all the payments from merchant.
reply sent
solved
Excellent!
Hi Basti,
I need this to be fixed, it doesnt shows the fixed sections of the info from merchant dashboard: http://prntscr.com/m6rvgf Here is the settings to it: http://prntscr.com/m6rvtrLooking forward from you!
double post
Hi Basti,
How can you add a percentage based service fee for every order transaction that uses non-cash payment i.e. Paypal, Authorize.net and etc…?
Example: I ordered Hamburger for 100PHP paid via paypal. Total payment = - 100 PHP Hamburger - 10 PHP (0.10*Hamburger price) Service Fee
110 Total Payment amount.
Thanks!
Hi mate!
Do you mean tax for every customer transaction?
Kindly go to merchant panel -> settings -> Tax & Delivery Charges
indicate the amount
hope this helps!
It is not tax. It is a service fee or aka convenience fee on top of the delivery charges.
Example: 100PHP Hamburger + 50PHP Delivery Charge + 15PHP Convenience Fee (0.10 of 150PHP). Total amount to be paid 165PHP.
Hi mate!
Sorry but this is not yet available at the moment
This would be a customization
hope this helps
can you customize it? if so, please send me a pm for the cost. Thanks!
For customization concerns, please email
https://codecanyon.net/user/bastikikang#contact cheers!I texted you . You didn’t reply back mate I need worldpay gateway please help me
Hi mate!
Please wait for basti and he will be connected in a while
cheers!
How to change the current date, means I want to change the current date + 1day and maximum date to be allowed is +7days, I am unable to find the function. Please do reply
Hi mate!
Sorry but this is not yet available at the moment
Hope this helps regarading changing the current date where it depends on the timezone
try this in admin -> settings -> Website Timezone -> Date Format
and Time Format
Hi, Basti , Basically I don’t want customers to choose pickup time or pickup date when placing an order how can I archive this?, I don’t see any option to disable it
Hi mate!
To disable pickup time
open the file assets/views/store.js
and remove this line
if ( $("#delivery_time").val()==""){
uk_msg(js_lang.trans_41);
$("#delivery_time").focus();
return;
}
Thank You Basti
Hi, Basti this code is already commented by you please double check
this is the line
if ( $("#delivery_date").val()==""){
uk_msg(js_lang.trans_42);
$("#delivery_date").focus();
return;
}
Thank you, I’ve sent you an email regarding an integration of a payment gate please reply
reply sent