29717 comments found.
pm sent
sent
Hello Basti, when I book a table for the first time my Infos already in the fields, thats great. When I will book a table for the second time no Infos in the fields?
And the confirmation I get on the Phone the time is still in englsh like Mar 30, 2018 it should be 30. März 2018
Can you tell us where we have to correct it? thank you kindly
hi mate
the info will be filled when you are login as customer
can you provide me the screenshot of the confirmation?
Hi Basti,
We just have an issue with payment, it came up with “Please wait while we direct you” instead of going to confirmation as previously. We read some old comments about this but cannot find the solution, could you please help us asap. Thanks so much
Sorry don’t bother, we have just fixed it. Cheers
glad to hear that mate cheers 
Hello,
I am building a single takeaway website located in only one location for my client so I would only be using it for only one takeaway not alike just eat. I would like to know the following;
1. How does the client refund the customer’s money?
2. How can the customer edit order after the customer has placed their order?
3. How would the client know an order has been placed?
4. How does the client accept, cancel, decline orders?
5. When an order is placed is there any way for the client to choose a list of time to deliver to the customer, i.e customer requests ASAP (45mins), but the client wants to deliver at 60mins.
6. Is there any way to print a receipt, with the order, delivery address, price and order notes, by using a thermal printer in A7 size?
7. Is possible to charge a fee for using the payment gateway like they do on just-eat?
8. How would the client know what their sales are for that day?
10. Is there any app related to your PHP script?
11. is possible to charge automatically the delivery price for different areas?
12. Is there any customer profile?
More questions to follow.
Thank You.
hi mate
1. at the moment there is no refund functions
2. same as 2
3. it will send email to customer or push about the status of their order
4. in merchant panel
5. there is delivery time in cart
6. yes using printer addon https://codecanyon.net/item/karenderia-printer-modules/215901537. some of the payment gateway that i added has a fee like paypal
8.there are sales report in merchant panel
10. yes there are about 6 addon for karenderia see the description https://codecanyon.net/item/karenderia-multiple-restaurant-system/911869411. maybe you mean delivery fee? if yes there is
12. yes there is check the demo
cheers
Hi, i have a problem with CUSTOMER_VERIFICATION_CODE_EMAIL, its not working with the Greek language, the customer is not receiving a confirmation code, please advise.
can you check the logs in admin -> email logs
see if you can find the sent emails
and what email provider are you using? php mail or ?
Tried it with phpmail as well as with smtp. Test email work fine in both cases. Executed email process crontab as well in each test.
With smtp no welcome or verification email arrives, with phpmail welcome email arrives and confirmation code does not work.
It finally worked, if anyone has the same problem using a language other than English, if using copy paste from text editors to form, use UTF8 
sorry for late reply glad to hear that mate
cheers
Hi,
I added some custom pages and custom links BUT when I choose to insert these into the “top menu” section in Theme Settings, the custom pages/link isn’t listed in the dropdown, and doesn’t appear. I can’t seem to add it to Top Menu. How can I add them?
hi mate
i think there is no option to put that in top menu you can only assign that in the footer column 1 or 2
as the top menu has already 6 menu it will not fit anymore
when I am using mobile device (mobile browser) and try to book a table using date of booking and time the date or time picker popup seems to stay underneath “Contact Information” title. Any ideas how to fix the z-index?
try to use the other time picker in admin -> theme settings -> Enabled Time Picker UI
Yeah I did that but it only fixes the time. The date picker is still misplaced. Can you check it?
what browser are you using? that is jquery date time picker
that is a build in library
Both firefox and chrome has this problem when you are browsing through mobile devices. Please check.
hi mate actually in latest version this was already fixed
when you are using device phone browser the time picker will not use the desktop time picket instead it will be a normal dropdown with time list
see the screenshot
You are more than right but what we are talking different things. What you say (and it works perfectly) is the checkout for the order /delivery cart. I am talking about the book a table (the icon with the coffee cup). See the screenshot
https://imgur.com/a/JiTelahhh sorry my bad mate i thought it was the cart
let me check on my end and give you the quick fixed
sorry i was confuse 
here is the quick fixed for the time picker in table booking
1.open the file views/front/merchant-book-table.php
change this
<div class="row top10">
<div class="col-md-3 ">
<?php echo t("Time")?>
</div>
<div class="col-md-3 ">
<?php echo CHtml::textField('booking_time',''
,array(
'class'=>'grey-inputs booking_time_desktop',
'required'=>true,
))?>
</div>
</div> <!--row-->
to
<?php $detect = new Mobile_Detect;?>
<?php if ( $detect->isMobile() ) :?>
<div class="row top10">
<div class="col-md-3 ">
<?php echo t("Time")?>
</div>
<div class="col-md-3 ">
<?php
echo CHtml::dropDownList('booking_time','',
(array)FunctionsV3::timeList()
,array(
'class'=>"grey-inputs"
))
?>
</div>
</div> <!--row-->
<?php else :?>
<div class="row top10">
<div class="col-md-3 ">
<?php echo t("Time")?>
</div>
<div class="col-md-3 ">
<?php echo CHtml::textField('booking_time',''
,array(
'class'=>'grey-inputs booking_time_desktop',
'required'=>true,
))?>
</div>
</div> <!--row-->
<?php endif;?>
2. open the file assets/js/store-v3.js change this
$('#booking_time').timepicker({
timeFormat: time_format
//timeFormat: 'H:mm'
});
to
if ( $(".booking_time_desktop").exists() ){
$('#booking_time').timepicker({
timeFormat: time_format
//timeFormat: 'H:mm'
});
}
no problem! thanks for your effort it works as charm but I am still confused because the solution you gave me is only valid for the time pricker and not for the date picker. The date (month, day) is overlapping. See the attached image I have sent you already https://imgur.com/a/JiTel Thanks anyway for your solution I am waiting for a solution for the date!
at the moment i don’t have fixed for the date picker
as those are jquery plugin its a ready made library
i will have to look for another library to use for date picker
All right thank you for your sincere and quick reply. Please inform me If you make any progress! Cheers!
will do
cheers
Hi mate please I have a big issue with address book with the customers
I need when someone register for the first time after he write his address automatically be saved in the address book why he must go in the address book and make it default it must be default as soon as he write it all customers are so sad from this step
please mate how can we do it thanks
hi mate i think when you add your address and tick the save address it will be use as default already
as you can see on the code
if ( $this->data['saved_address']==2){
$sql_up="UPDATE {{address_book}}
SET as_default='1'
";
$this->qry($sql_up);
$params_i=array(
'client_id'=>Yii::app()->functions->getClientId(),
'street'=>$this->data['street'],
'city'=>$this->data['city'],
'state'=>$this->data['state'],
'zipcode'=>$this->data['zipcode'],
'location_name'=>$this->data['location_name'],
'date_created'=>FunctionsV3::dateNow(),
'ip_address'=>$_SERVER['REMOTE_ADDR'],
'country_code'=>Yii::app()->functions->adminCountry(true),
'as_default'=>2
);
$this->insertData("{{address_book}}",$params_i);
}
‘as_default’=>2
hi mate but the clients need to avoid tick save button just when he write the address and make the order it autosave the address and in the future orders he does not need to write the address anymore
hi mate at the moment that is how the process we cannot save the address every time he check out
so there is an option to save the address or not
hi mate what i need is to save the address as soon as it written in the form why the customer must press add to address book it wasting in time thanks
if you realy want to do that you can
its not a waste of time you just enabled it and it will saved how hard that could it be 
if you really auto save the address just modify the files views/store/payment-option.php
look for
echo CHtml::checkBox('saved_address',false,array('class'=>"icheck",'value'=>2));
echo " ".t("Save to my address book");
change it to
echo CHtml::checkBox('saved_address',true,array('class'=>"icheck",'value'=>2));
echo " ".t("Save to my address book");
this will tick the save address by default
ok thanks mate i did it and it works please i need one more thing
in the order process it is very long I want the visitor after pressing on order button comes directly the address and payment page then after he fill the data press order and done I do not need the order confirmation page it is useless
Thanks
lol useless again? many suggested that 
anyways same file payment-option.php
change this
echo CHtml::hiddenField(‘action’,’InitPlaceOrder’);
to
echo CHtml::hiddenField(‘action’,’placeOrder’);
Good Man
I did it also
see i am giving you good ideas 
the last thing I need really please I want to make the payment options photos invested radio button because the visitors don’t see the radio button well thanks
sorry you cannot mate it as photos mate
that will not work 
maybe try adding a photo beside the text
so how can i add the photo beside or above the text will be better
thanks
edit file views/front/payment-list.php
would you please help me with trick code to put a photo pleaseeeeeese mate
hi mate are you still there please help me with the code for adding photo for the payments methods thanks
dear mate i sent to you a screenshot please see it and answer me thanks
hi mate again please i really start to sick from the issues on that system
about the saving in the address book it ask me again with every order to write the address and that because the address is saved in the address book but not the default so please how can the visitor make it default directly after inserting it to avoid rewrite it with every order the second thing in the visitor address book it gives the default country Afghanestan how can this be changed
please answer me because i see you answer many other requests thanks
oh i think that is was solved already?
can you do this quick fixed so that if the customer has address book it will show the dropdown selecting the address
in views/store/payment-option.php and look for this line
<?php if ( $address_book):?>
<div class="address_book_wrap">
<div class="row top10">
<div class="col-md-10">
<?php
$address_list=Yii::app()->functions->addressBook(Yii::app()->functions->getClientId());
echo CHtml::dropDownList('address_book_id',$address_book['id'],
(array)$address_list,array(
'class'=>"grey-fields full-width"
));
?>
<a href="javascript:;" class="edit_address_book block top10">
<i class="ion-compose" /> <?php echo t("Edit")?>
</a>
</div>
</div>
</div> <!--address_book_wrap-->
<?php endif;?>
change it to
<?php $address_list=Yii::app()->functions->addressBook(Yii::app()->functions->getClientId());?>
<?php if(is_array($address_list) && count($address_list)>=1):?>
<div class="address_book_wrap">
<div class="row top10">
<div class="col-md-10">
<?php
echo CHtml::dropDownList('address_book_id',$address_book['id'],
(array)$address_list,array(
'class'=>"grey-fields full-width"
));
?>
<a href="javascript:;" class="edit_address_book block top10">
<i class="ion-compose" /> <?php echo t("Edit")?>
</a>
</div>
</div>
</div> <!--address_book_wrap-->
<?php endif;?>
hi mate I made it i hope it continue working but the default country Afghanestan is still there how can i change or delete it
thanks
sorry can you provide screenshot ?
hi guys
just want to let you know that
printer addon is now for sale 
hi guys
just a reminder make sure you delete or rename the file protected/controller/installcontroller.php after the installation
i have mention this after you install kmrs if you did not delete this file or rename it someone might able to re install kmrs again in your server
cheers
hi guys
just a reminder make sure you delete or rename the file protected/controller/installcontroller.php after the installation
i have mention this after you install kmrs if you did not delete this file or rename it someone might able to re install kmrs again in your server
cheers
When customer logs in via facebook login, page does not send him automatically to home page. He remains at login page. How to fix it? Thank you.
Also: in case of merchant is commission type, how will I receive my money if merchant does receive payment by cash/offline credit card?
hi mate
there must be some issue with your facebook setup
it should redirect you to homepage or checkout when you do checkout
send me your site link so i can check
email me here
https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
for commission offline payment like cod sorry but there is no way for admin to get the payment from merchant since they have the cash unless admin do the delivery you need to have agreement with the merchant
For commission+invoice merchant > will he receive that automatically invoice with offline payments added (cash and OCR) or will not? (when Include Cash Payment on merchant balance is ticked)
[ second question already solved ] Now another one: where is the option to make payment in delivery by card and not only cash? thank you
email sent! kindly, answer that question here if possible. Thanks for the amazing support!
reply sent
1. correct all payment will receive by merchant and admin will send invoice to merchant
2. sorry am confuse?
Sorry, I will make it clearer: if merchant does want to receive payment from client by machine card, having this client the possibility to pay when he receives food at his home (by credit card but not online), is there an option in the system to receive this kind of payment (and record this kind of payment) like already has as cash on delivery payment? Would be like “card on delivery payment”.
Also, expecting for your opinion about login page not redirecting automatically user to home page.
- expecting for your opinion about login page not redirecting automatically user to home page >> WHEN IT COMES TO FACEBOOK LOGIN
hi mate
1. try to enabled pay on delivery payment gateway
this type of payment is like wherein customer choose what he like to pay using visa, mastercard etc
2. did you already email me your site so i can check?
the redirect will depends on when the customer sinup if in login/signup page they will redirect to home page but during checkout they will proceed to next page for checkout
Dear Basti, I am aware that page will redirects on those mentioned situations but thing is login page is not redirecting to anywhere in any case. Please help.
also: is there a way to force only online payment when a customer chooses pick up food at merchant?
do you know someone that I would hire to add another type of payment gateway ?
1. send me your site so i can check your site and ftp access
2. this is possible but at the moment its not available
sorry i don’t know someone that is available 
email me here
https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
replied
for facebook login try again
its your server file_get_contents cannot work with https
Hi Basti,
Just sent you an email.
sorry ? i cannot find your email
I have sent it again Basti
reply sent
Hi Basti , can the Admin order notification sound be enabled on the mobile browser? i can see the order notification pop up, but it doesn’t give any sound like the desktop version.
hi mate
the sounds is working in desktop the only issue is when you use mobile browser there will be no sound
try to use firefox or chrome
am sure there is a sound
i tried chrome on iphone , it dosent give sound
ahh mate it will not work in mobile device any browser
it will work only in desktop not in mobile device
Hey mate just send you an email, urgent please help, thank you!
sent
reply sent
Hi mate you see my reply?
sent
Sent, please help
sent
I want the path to the ajax for the order processing table on the dashboard. Kindly assist.
hi mate the file is components/ajaxadmin.php and look for functions rptIncomingOrders
Please could someone tell me, where can I download the updates files, the documentation says nothing about it?
hi mate you can download the new file here in codecanyon and simple follow the instructions update in documentation
btw the last update was
= 4.4 (30 August 17) =
so there is no current update yet
hello! where I can translate these sizes automatically when I add a new merchant? Why the translation does not work!
https://imgur.com/zlXr7Nahi mate
sorry there is no auto translation you need to add it manually
when you edit the size there is a multi field for translation
this will only translate on the front end
you can enabled the multi translation field in admin -> manage language -> Enabled Multiple Field Translation
cheers
but enabling Enabled Multiple Field Translation, it still does not change! This is not a script that adds along with database for each trader, if you change in the root where it is added in the right database too, where is it?
hi mate
the food item can be translated
many buyer has translated it
when you enabled multiple field translation
when you go merchant add size in merchant panel you should able to see this
https://imgur.com/a/ehVUjthere is no translation for adding merchant and it adds auto size its in the code so there is no translation for it but to manually translate it in merchant panel
you can find the files for auto insert the size when adding new merchant is in components/functionsv3.php look for functions preConfiguredSize
hello! where I can translate these sizes automatically when I add a new merchant? Why the translation does not work!
https://imgur.com/zlXr7Nahi mate
sorry there is no auto translation you need to add it manually
when you edit the size there is a multi field for translation
this will only translate on the front end
you can enabled the multi translation field in admin -> manage language -> Enabled Multiple Field Translation
cheers
Please, 2 questions to ask… 1. Does this script serve as a single restaurant order platform? 2. Does it have payment gateway like stripe or Upay? If yes to these question, I’ve already bought it… I wanna install
hi mate
1. sorry this is not for single resto this is multiple resto if you want to make it as single resto you need to modify the code
2. it has stripe already added but not upay
cheers
let me know if you having issue with the installation
cheers
Cool.. I installed it but then… The extra page link “restomulti” was annoying, anytime I go to my main link, it takes me to my main source file… Why? And please, is there anyway you can help me modify the code to become a single restaurant?
what do you mean? can you provide screenshot?
maybe you copy the folder restomulti to your server just move all the files outside to the folder so your website will not have a folder
and you need to modify htaccess and remove the folder from there
and for modifying to single app the quick fixed would be redirect the homepage to merchant menu
for example redirect the homepage to this menu http://bastisapp.com/kmrs/menu-mcdonaldsthis can be done by modifying the files controller/storecontroller.php in function actionIndex()
simply add this
$this->redirect(Yii::app()>request>baseUrl.”/menu-mcdonalds”);
note this is only example
you may need to change the url to your merchant menu link
Ok cool… That means I have to create the menu list I wanna use first, before I can edit it from the cpanel?
correct you need to create the merchant first and its all menu
also can you check if you already delete the install controller php file in your server?
the file to delete or rename is controller/installcontroller.php
please remove this as some one might re install your kmrs
this was mention after you install kmrs
Cool… I have deleted it… But does merchant admin has a custom login details, I remember few hours, I was trying to create a merchant account via admin dashboard, Its telling me wrong login details and sometimes Error… How can this be solved?
admin panel and merchant is different login
maybe you are login to admin panel
this is admin panel
http://bastisapp.com/kmrs/adminthis is merchant panel
http://bastisapp.com/kmrs/merchantBut I didnt create login details for merchant… How do I login to the merchant account?
Or is it default login details for the script?
I tried signingup from my homepage as a merchant… But its saying package not available… Please, what can I do?
no mate
when you add a merchant in admin -> merchant list -> add new
there is a tab to fill for username and password in the tab login information
you cannot create a merchant without username and password
Yeah I did that already… After loading, it will write ERROR: package information not found
its because you did not add any package in admin -> packages
just set the merchant to commission so it will insert if you don’t want to make your merchant as membership
go to tab merchant type Membership Type = set this to commission
Thanks very much for the support thus far…. Gotten it all. But one more resquest… Where can I add Food Menu, is it thesame thing as Dishes?
Sorry, I just went to the merchant account to do that
cheers mate
yes its in merchant panel
I created food item via merchant account… But its not showing in my menu list in the front end
it should mate
please verify mate sure you published the merchant
you can find the published on top of merchant panel
Its published… Even when I published the food item, checked, its showing published at the top… But going to the frontend, its showing this… This restaurant has not published their menu yet.
Well… I’ve gotten it now… The mistake I made was, I didnt add Food Category thats why the Menu didnt show up… Guess I’m good to go now but lastly, I have just one currency symbol, which is my country symbol (Nigeria) in my admin dashboard, but the front is still showing $... How can I change it, please?
I have changed it. Sorry for the disturbance. Thanks for the support thus far too
Pheeeeww! Trying to add only the Offline Credit Card Payment option but it’s not showing in the order front page… Any extra job to do?
try to enabled it in admin -> payment gateway settings
I’ve done that mate
i always found issue with the settings on merchant or admin panel when some customer when they cannot enabled some payment gateway
email me here send me the merchant to check provide your admin login
https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
I’ve sent it. Thanks
sent
you forgot to include admin login 
I’ve sent it now… Sorry
check again 
you disabled the payment in admin -> merchant list -> edit merchant -> tab payment settings
this mean disabled not enabled 