29722 comments found.
On the Merchant Alert Settings page
http://foodsquire.com/merchant/alert-settingsThere is a typo that you missed.
Title at the top “Alert Settngs”
ok mate you can change that in the file controller/merchantcontroller.php and look for functions actionAlertSettings()
another question: I do want this to be by location,, so like group under close area .. so looks like you dont have categoires for delivery and not even location map.. can you please tell me , if it possible ot show all rests on a map ???
hi mate
sorry but what do you mean?
it will show all your restaurant in the map in browse resto -> View Restaurant by map
For Twilio Sender ID, is that just my Twilio phone number:
(781) 206-2118
Cannot find any reference to what this is specifically?
hi mate
the sender id is your twilio number you will have to input this with + sign
if you are using free account you need to purchase a number
another question, am going to add 100 food deliver companies. but want them to be type of disable.. so .. if they join and paid ( type of claim) then they start working if not paid its looks like a listing site. is that possible with this product?
hi mate
hmmm you mean if they not paid you cannot order from that restaurant?
sorry but not how kmrs works
restaurant will have to signup in your website and pay for membership once they paid they can sell there food
yes.. like CLAIM your Listing.. that will alow to run the website for the first days.. its hard to find company that want to join the empty website
sorry but claim your listing is not available
you need to have a restaurant to signup in your website
Hi, I just purchase, so here is my question, I need it for spanish people. so .. is this 100% translated or google translate also do I have to check page by page to fix the translations?
hi mate
am not using google translate you will have to translate the language file and upload it in admin-> manage language
you can find the language file in the root folder the file is mt_language_file.php
Hi Team,
You have restricted the admin and merchant menu view. were and how you have done i want know because I want disable few features from merchant menu links.
hi mate
you need to add admin user and tick the access to that user same for merchant
hope that helps cheers
Hi Team,
I want customize this menus list for merchant and administrator. We want to restrict some fields from this menu so please help me who can id customize.
<?php $this->widget(‘zii.widgets.CMenu’, Yii::app()>functions>merchantMenu());?>
hi mate
that is a yii library you cannot customize that functions
what are you trying to achieve?
hi sir i am having problem to start install on the install 2 it keep give me this ” Connecting to database..Uncaught exception: SQLSTATEHY000 php_network_getaddresses: getaddrinfo failed: Name or service not known” im using a2hosting.
hi mate
what type of a2hosting account? am using a2hosting as well
what did you put in mysql host ? try localhost
im using a2hosting vps managed with cpanel and root access. i try but still will came out same thing. not sure what else should i do..
hehe thanks solved
glad to hear that mate
cheers and happy new yr
Hello, as I do for the subcategories are transformed from http to https. Example: / Merchantsignup / Browse etc
I am trying and it turns out that when you enter a subcategory with mydomain.com/Merchantsignup not redirects to https
Only works when income mydomain.com.
already modify the .htaccess with:
RewriteCond %{HTTPS} !on RewriteRule (.*) https://%{HTTP HOST}%{REQUEST URI}
this is the correct htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourwebsiteaddress\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourwebsiteaddress.com/$1 [R,L]
</IfModule>
Did not work. When I try to enter mydomain.com/Browse.
It only works in mydomain.com
Is possible to force from php?
hi mate it should work
it will turn your website to https
am using that
what are you trying to achieve? http to https right?
If works the .htaccess with http to https, the problem is that if someone is of enter from mydomain.com / URL OF MERCHANT, not is transformed is remains in http. example: in my browser entry to http://bastisapp.com/kmrs/menu-subway. the .htaccess does not force the change to https://bastisapp.com/kmrs/menu-subway. I basically want is to assure me that all enter with https and not http.
without importing if the user modified the url
as I repeat only works if you only enter from http://mydomain.com automatically turns to https://mydomain.com
In youtube even if you change the url to http is transformed to https automatically: http://www.youtube.com/watch?v=Jh17uhEZ2oA
it does not work:
http://stackoverflow.com/questions/4762859/htaccess-redirect-subfolder-to-https
can you give me your website so i can check? cause if the website is https all the link will be also in https
I sent to you a mail
hi mate that is normal if you type your website to non https
if you want to force redirect to https
you can do it by php or in your domain manager
http://stackoverflow.com/questions/5495825/best-practice-for-auto-switching-from-http-to-httpsHi Basti,
I set holidays for restaurants.
But customers can still order food during the holidays.
I setup as link http://menuone.net/images/holiday.PNG
How can I fix this issue? Thanks.
hi mate
i think i have already posted the quick fixed for this bug
anyways here is the quick fixed
1. open the file components/functionsv3.php and look for the functions isMerchantcanCheckout
change the whole functions to
public static function isMerchantcanCheckout($merchant_id='')
{
$msg=''; $code=2; $button=''; $holiday=2;
$is_pre_order=2;
$now=date('Y-m-d');
if ( $m_holiday=Yii::app()->functions->getMerchantHoliday($merchant_id)){
if (in_array($now,(array)$m_holiday)){
$holiday=1;
$msg=getOption($merchant_id,'merchant_close_msg_holiday');
if (empty($msg)){
$msg=t("Sorry merchant is closed");
}
}
}
if (!yii::app()->functions->validateSellLimit($merchant_id) ){
$msg=t("This merchant is not currently accepting orders.");
}
$is_merchant_open = Yii::app()->functions->isMerchantOpen($merchant_id);
$merchant_preorder= Yii::app()->functions->getOption("merchant_preorder",$merchant_id);
if ($is_merchant_open){
$code=1; $button=t("Checkout");
if ($holiday==1){
$code=2;
}
} else {
if ($merchant_preorder==1){
$code=1; $button=t("Pre-Order");
$is_pre_order=1;
} else {
if ($holiday==2){
$merchant_close_msg=getOption($merchant_id,'merchant_close_msg');
if (empty($merchant_close_msg)){
$msg=t("Sorry merchant is closed.");
} else $msg=$merchant_close_msg;
}
}
}
/*check if merchant is close via backend*/
if ( getOption($merchant_id,'merchant_close_store')=="yes"){
$code=2;
$msg=getOption($merchant_id,'merchant_close_msg');
if (empty($msg)){
$msg=t("This restaurant is closed now. Please check the opening times.");
}
}
return array(
'code'=>$code,
'msg'=>$msg,
'button'=>$button,
'holiday'=>$holiday,
'is_pre_order'=>$is_pre_order
);
}
2. open the file views/store/menu.php after the code
<?php else :?>
<?php echo CHtml::textField('delivery_time',$now_time,
array('class'=>"timepick grey-fields",'placeholder'=>Yii::t("default","Delivery Time")))?>
<?php endif;?>
add this
<?php if ( $checkout['is_pre_order']==2):?>
<span class="delivery-asap">
<?php echo CHtml::checkBox('delivery_asap',false,array('class'=>"icheck"))?>
<span class="text-muted"><?php echo Yii::t("default","Delivery ASAP?")?></span>
</span>
<?php endif;?>
Thanks for help, fix it.
cheers
Hi can you add this payment option . todopago.com.ar this works for Argentina
hi mate
will do take note
cheers
Friend, my site is no longer asking the location when I use the google chromes browser. In firefox question. What if?
hi mate
google chrome as some kind of security so it will not work it will only work in firefox
you need to turn off the security in your chrome browser
Hi, First of all a happy new year and well done on the theme.
With regards to Karenderia System,
I am researching to purchase a system of that sort. I really like the theme especially the admin area and process.
I have found better themes as in the aesthetics design to accommodate modern designs. I believe that the front of your theme lacks design and is more a developer feel compared to this.
https://themeforest.net/item/food-bakery-restaurant-bakery-responsive-wordpress-theme/18970331Referring to the modals mainly
http://foodbakery.chimpgroup.com/restaurants/life-powers/Will you be updating the design anytime soon?
Looking forward to hear from you .
hi mate
happy new yr
sorry but i have no plans yet for the themes
Hi,
I am trying todo what I describe here: https://goo.gl/iTu94nI am extending your code but do not understand how I create a button that will update the SQL database.
Can you give me an example of how that works?
My code is offline so cannot share FTP access at present.
hi mate you need to have knowledge in mysql command and php
i suggest better to learn first the basic for php
I am unable to install on my shared hosting… Can yu please help me out…
I am able to install it. thank you.
am glad to hear that mate cheers and happy new yr 
Thank you and wish you the same. Wish you all the success for you and your products. I very much like your apps.
many thanks 
Hi basti,
there is bug in merchant commission, i already set commission setting using fixed value, but when i test restaurant signup and see in the merchant commission setting it show percentage as default.
please see my screenshot
https://drive.google.com/open?id=0B5GMFnbV2GngOXdTNFBPcllFcGMThanks
hi mate
i think you are correct here is the quick fixed
open the file components/ajax.php look for the functions merchantSignUp2() before this line
if ( !Yii::app()->functions->validateUsername($this->data['username']) ){
add this
$commision_type=getOptionA('admin_commision_type');
if(!empty($commision_type)){
$params['commision_type']=$commision_type;
}
Apps Module URLS or not working i am getting http://lunchexpress.picbic.com/merchantapp . 500 error
lunchexpress.picbic.com is currently unable to handle this request. HTTP ERROR 500
hi mate
sorry but did you purchase merchant app i can see that you did not
Hello, I tried the demos various times to be sure of the way it works and if it is what I need. It really is! You did an awesome job! Only suggestion I would have: you should make it possible for a consumer to reserve a table AND select what he wants to eat, pay it via the platform, so when he arrives he is treated as a vip guest in the restaurant (table ready and food ready). I have been to some restaurants that offer this service in Europe, and it really is awesome to arrive and have your food freshly cooked without having to wait (especially on business trips) – Some will say, yes but what if he wants something else to eat not reserved for: it’s at the benefit of the restaurant
hi mate
thank you for your kind words 
i really like your suggestion i will do make sure it will be added on my update list 
cheers
Awesome!! As well as for kartero, once I see you updated in your changelog, I’ll definitely purchase them!
will do mate cheers 
I want to purchase more from you but didnt no what I need Karenderia Driver Mobile App Karenderia Order Taking App (Merchant Receiving Orders) Karederia Loyalty Points Program Karenderia Duplicate/Export/Import Merchant Addon So if I purchase it could you help me in installation and configuration? and can I have special discount?
hi mate
hmmm sorry but looks like you did not purchase kmrs
just wondering where did you get it?
yes i always help with the installation if the you buy my item
but for compiling to mobile app i do charge
installation of modules is free
yes I got it from e-bay but now I need add more add-on from the main source …..your products could you please help and support?
what the 
what do you mean ebay? am not selling to ebay am only selling my item here on cc
can you give me the link?
Happy New Year, Bastikikang! A new year reveals new features. We’re(buyers) hoping 2017 brings you good times with great PURCHASES to all your products….
Hi mate
Happy new year mate
and happy new year to all 