29733 comments found.
Hi Basti how can I get a form to fill in by users on custom page?
sorry mate what do you mean?
i.e. https://gyazo.com/90bbacfd9b868ba25e54595837d22a65
i want this kind of form but on a custom page
ah you need to create a action controller for that on controller/storecontroler.php
and add your own action name and render the view file you can copy the existing view files
that is views/store/merchant-signup-info.php and merchant-signup-step2.php
so i need to copy the form from merchant-signup-info.php and merchant-sign-up-step2.php and paste it into the storecontroller.php with an action?
you need to create action first then create a new view file on views/store
example /views/store/mynewfile.php
and you can called those on the action in storecontroller like this $this->render(‘mynewfile’);
how admin delete Incoming Orders ?
there is no functions for delete
for safe records keeping
you can manually delete the records on the database
i want can admin delete incoming orders how i do ? please help me for this function
sorry but this functions is not added i can add this but with small fee
no problem please contact with me ohamzayev@gmail.com
contact me here https://codecanyon.net/user/bastikikang#contact
please see your contact
Hi, which file or line to edit if want to show only those restaurants who actually deliver to the address mention. Like if admin distance is 10 miles and it scans a restaurant which delivers only 2 miles, it should hide that restaurant
i think the very best way to do it is modify the query
open the file components/functionsv3.php and look for the functions searchByAddress
you can see a query in there you can modify or change the query
go to admin -> manage language -> settings -> Select language that will be added on front end.
Hallo Basti,
Do you offer customization ? I want to add service fee on every order. I have try every features on your system, but i can’t find feature to add service fee. I need it ASAP.
Thank you
email me via profile so we can discuss this

cheers
email me here https://codecanyon.net/user/bastikikang#contact and leave a message here so i can know
cheers
i have sent an email to your inbox, please check . Thank’s
reply sent
Hello Mate, thanks for ur time
I have installed but i realised the section in the front end to put the mobile image and google play store and apple store is not showing…
also adding page, i cant do text formatting and page settings
you can find that on admin -> theme settings if you cannot find this menu edit your admin account and tick the access to theme settings then re login again
you can use html for the custom page
thanks mate got that but where do i edit the account to tick the access theme settings…. is it from PHPadmin
PHPmyadmin
no edit your admin account and tick the access to theme settings then re login again
admin panel -> user list -> edit your admin account
Greetings Basti,
I have installed KMRS, it was working fine till the host in godaddy reached its maximum file limit, so i bought better host in godaddy. I install KMRS on the host now it is installing correct, but when i try to login in admin it shows username and password wrong, later i’ve checked in phpmyadmin the admin user was not created i run some queries there was no admin user created. First i thought it was from ssl but i checked its not that. Any help would be appreciated, also can you tell me if there is a better host which you have worked, or if KMRS can be hosted on heroku and how to deploy it,
Waiting for your prompt reply Thank You
hi mate
it will work on godaddy did you transfer the db to new db?
i suggest use a2hosting, bluehost or hostgator go for vps if you have budget its very fast
cheers
hello sir, why i am seeing different admin from your demo version? Am i using older version? Just bought and setup as directed in documentation but few links missing from left side menu like “Theme Settings”, “Post Code” etc
Here is screen short.
edit your admin account and tick the access to theme settings then relogin again
cheers
Which version of CURL used for the browser to identify the location of the customer? The site works perfectly with the version of cURL 7.17.9?
hi mate
it will work in any version of curl my server is using curl 7.42.1
just bought this and the mobile app, don’t know how to run and setup, tried zend studio but gave errors, please provide steps how to make them work, sent you an email couple hours ago.
hi mate
did you read the document on how to install ?
Waiting for 3 months now .. please confirm next update of KRMS and mobile app (customer)
mobile app will be update next week that is final including razor pay 
URGENT HELP… SITE DOWN…
Hi Basti,
My site is facing login issues. user’s are not able to login, gives “ERROR” while login…
Pls. help urgently…
what is your website address and ftp access? so i can check
i’ll mail u in 2 mins…
pls. chk ur mail…
can you include your website address? and the link for the cpanel
extremely sorry for this… got panicked…
sent u in email
reply sent
Done… Thank you so much for your prompt response.
Also, I have build apps for iOS & Android, but in iOS its not taking Icon & Splash screen on, either it takes default PhoneGap’s icon or no icon. Pls. chk screenshot for your reference and kindly help me.
Hi mate,
I have set up facebook login for website but it doesn’t work, when click on facebook login button there is nothing happens. Please help.
Thank you Eddie
please verify again facebook login works fine there is no issue reported for a long time
I have sent you an email with screen shots. Could you please check?
Thank you
where did you email me? i cannot find your email
email me here https://codecanyon.net/user/bastikikang#contact
Hi Basti,
I sent an email to basti@codemywebapps.com. Are you still using this one? if not, please let me know
Thanks!
am still using that but sometimes i cannot recieve email so i switch to gmail
email me here https://codecanyon.net/user/bastikikang#contact
email sent!
reply sent
How do I add msg91.com sms gateway which file need to modified I realy want to add this gate way, I am very apprciate if you guide me how to hack in either one of the existing sms gateway then replace it with msg91. Look like everyone is suggest for the pincode like what markhod comment above, and the truth is that we are waiting for this features to come and make our website go live.. please update soon ..also please mail me at pynman4@gmail.com for the sms gateway support Thank you
hi mate
you can add your own functions for sms on the file components/functions.php and look for the functions sendSMS
thanks
I am trying to generate unique order numbers instead of incremental ones. I’m hoping you can help me here and of course you can use the code in the next update 
Here’s what I have so far?
public function generateOrderID()
{
$unique_number = rand(100000000, 999999999);
if ($exists=Yii::app()->functions->checkOrderID($unique_number) ){
$results=Yii::app()->functions->generateOrderID();
} else {
return $unique_number;
}
}
public function checkOrderID($order_id)
{
$db_ext=new DbExt;
$stmt="SELECT * FROM
{{order}}
WHERE
order_id='$order_id'
LIMIT 0,1
";
//dump($stmt);
if ( $res=$db_ext->rst($stmt)){
return $res;
}
return false;
}
And in AjaxAdmin.php I changed it to:
if ( $this->insertData("{{order}}",$params)){
$order_id=Yii::app()->functions->generateOrderID();
I also changed the database order table from incremental to none but everytime the order is inserted as “0”. What am I missing?
hi mate
i suggest don’t remove the current order_id which is incremental instead add a new column for your unique order numbers
its because the type of field for order_id in the database is integer and 14 char only
thanks
Hi,
Are you able to make some changes for a fee? Like setting up a lunch menu from 11am to 4 pm. Also auto print to a printer without a pc maybe with a tablet?
Thank you
sorry mate but am not available 
This is 4th time im trying to contact you, i expect a good support. Is there any way to give address search preference to a certain city? which files to edit for that, for now you can focus only on country.
hi mate
sorry for late reply i was away
what do you mean? can you give more info
thanks
When I go to https://www.domain.com/store/profile and click on the order details, it opens in a new popup window, even on mobile. Is there an easy way to have this open on a new separate page instead?
you can but you will have to create a separate action and view for it
Hello, All your demo urls are pointing to HTTP only..I need this to be in https ? will it able to do so? I would like to buy if it could be accomplished in a few steps. Thanks
yes you can add ssl in your server you just need to change something on htaccess for https
Hi Basti, when you enter the merchant menu page directly. There comes a pop up asking for address. But I enabled search on postcode, should it not ask for postcode? https://gyazo.com/7b6cbb34bf259e1a71ddca9be9f41368
hi mate
you are correct i think these is a bug if you are using post code let me check this on my end
thanks
did you check?
not yet mate this needs some changes on the code remind me again tomorrow if i did not reply
thanks
ok mate will do. I mentioned a few weeks ago on how you should fix the postcode issue. when wil you be able to do that?
not sure yet am still working on mobile app update about the postcode i think these needs some changes
Yes, I gave you an example on how to fix it and you said it was a great idea. I will post it here for reminder:
so when user search on postcode it’ll search the same postcode as on merchant. 2.This is not a good way, why don’t you add the same postcode feature as in admin in the merchant side, BUT merchant only has the possibility to choose in which postcode area’s he can deliver. So merchant can’t add postcode, only admin can. He can only choose in which area’s he wants to deliver. Also please add a option were admin can force the merchant by not choosing the postcode only admin can. So I mean, when admin put some postcodes in the system. It comes up in the merchant side, where the merchant can click on that particuler postcode. I think this is a good way to fix the postcode thing. Let me know please.
Besides that, I have the mobile app too, there is no option to search on postcode there? :s
ah yes i remember i already saved your suggestion 
Besides that, I have the mobile app too, there is no option to search on postcode there? :s
your correct i will fixed the web version first then the mobile app
and btw for your first question about the address popup you can disabled that on admin -> settings -> Disabled popup asking customer address?
I disabled it but now everyone outside the postcode can order from restaurant? Will you fix it by asking postcode instead of address
you are correct again mate will do fixed it