Code

Discussion on Karenderia Multiple Restaurant System

Discussion on Karenderia Multiple Restaurant System

Cart 5,364 sales

bastikikang supports this item

Supported

This author's response time can be up to 2 business days.

29724 comments found.

I have a issue when people select a meal item how do I set it so they can pick 2 side items free that are included in the mean example they order fried chicken and then it come with mashed potatoes and string beans as side with their order ? As of right now when the click fried chicken it gives them no options to select 2 side dishes with their meal

double post already answer

HTTP ERROR 500 at the /paymentoption page after the login. The cart is not getting updated with the items

hmmm can you send me your site i will try to order

I guess there’s a problem with the other modules. Whenever /modules is being updated, the cart updation and checkout stops working. I removed all the modules and started working from scratch again. Mobile app and merchant app seems to be fine, is there any problems with the modules?

which module ?

Hello Basti

please check your email I sent you email about payment gateway

I find that anytime I make an edit to a custom page, it creates a new version of that page and places the content in a new page named for the previous page. Example, I make Terms Of Service after Privacy, but if I make any edits to either of the pages, it will rename the other one the name of what I am editing. If I delete the page, it will delete all custom pages.

Currently, I would have to make sure my content and markup is 100% correct before inserting into a page editor (I use the code editor so I may structure my h1, h2, h3, and other HTML tags to my liking), and if I want to edit, I should expect to have to recreate every page again.

Also, how can we remove the folder structure from the URL (without having to edit .htaccess)? For instance, I would like my URL structure to be “yoursite.com/page” not “yousite.com/page-pagename”

Thanks.

I think I see why this is happening. I see that all IDs are set to “0” and as such, will be effected by any edit or deletion. I suspect that I will have to go into database and set to auto increment the pages…what table should I look for?

did you migrate from another server? by exporting database the primary key is gone and auto increment that is why the id is always zero

use your phpmyadmin and look for table _custom_page

set the id as auto increment and as primary key

why you using old yii framework ?

when i build this yii 2 is not yet stable :)

Seems that if the customer lists apartment 1 or anything like that in address that it messes up the GPS location for driver in driver app. Please look into that. Coordinates get screwed up because no match in Google for apt 4 for example.

sorry but am confuse can you provide screenshot or example?

Hi Basti! I have an error at the order confirmation stage.

As soon as the customer clicks on “confirm order” a yellow error appears: https://snag.gy/NhanzY.jpg

Please advice ASAP.

The thing is that the order arrives at the admin/merchant. And also, when you click on accept or cancel the order, it does not exit from the new order pop-up screen.

I did what you suggested earlier and deleted the driver ad-don and reinstall it and it is working fine now. Thanks a lot, Basti!

awesome! mate cheers

When we set location search type as “City/Area” and some user browse a restaurant then the popup opens to select location but the popup displays nothing but only a close button. Same thing happens when user try to change his location by clicking on “Change Location Here”. The same popup opens which is supposed to ask the user his location but it displays nothing but a close button.

sorry but did you purchase?

Hello Basti, 1. How can I Hide Addon Category Name from the receipts? 2. How can I hide Cooking Reference Name from the receipts? 3. How can I hide Ingredients Name from the receipts? 4. How can I make Cooking Reference Required? 5. How can I make Ingredients Required?

I tried to modify the code open the file assets/js/store.js look for the line $( document ).on( “click”, ”.add_to_cart”, function() { and add this code

var cooking_ref=$(”#cooking_ref:checked”).length; if ( cooking_ref<=0){ uk_msg(“Cooking ref is required”); return; } var ingredients=$(”#ingredients:checked”).length; if ( ingredients<=0){ uk_msg(“Ingredients is required”); return; }

but it didnt work

can you provide screenshot where is this

Sorry for being too late Here what I want https://imgur.com/fT2cqUi

you will have to edit the code for it :(

and that is in models/view-receipt.php

Some pages are not available on the SEO page to change the name.

Example: merchantsignupselection

How to insert them?

you are correct seo is not fully added in kmrs specially the new method for seo

try this one open the file controller/storecontroller.php and look for functions

actionMerchantSignupSelection

and add this of couse you need to change the value to what ever you wanted

$seo_title='YOUR TITLE'; $seo_meta="YOUR META"; $seo_key='SEO KEY WORDS'; $seo_title=smarty('website_title',getWebsiteName(),$seo_title); $this->pageTitle=$seo_title; Yii::app()->functions->setSEO($seo_title,$seo_meta,$seo_key);

I have a pre-sale question:

I live in the Mexico/USA border, and I have access to two cities. I would like to offer the service locally. Is the a way to set-up the system for two countries/cities at the same time?

don’t lock the search address under admin settings to country so you can use any countries

but the currency will be use is only one kmrs is not yet multiple currency

I buy it but still it is not working http://foodohhfood.com/admin

sorry but which one is not working?

hello basti, I was reinstalling KMRS version on wamp localhost to do some code modification on layout design but on installing it stays at step2. Creating databases tables Creating table address_book [OK]

and is remains there. Where can error come from?

hmmm can you turn on error reporting in index.php

ini_set(“display_errors”,true);

it will show what causing the error

and let me know the error

also it will be great if you can send me your ftp access so i can check

email me here https://codecanyon.net/user/bastikikang#contact

leave a comment here once you send it so i will be notified

Hello sir can you please help me in this http://hotel.globalwebsolution.biz/admin i have put mobile app code in this script. So, please can you help me

sorry mate? link is not working ?

Hi Basti, I think there is something wrong with this merchant forogt Password

I have this hi [restaurant_name]

Your verification code is [code]

Regards – [sitename]

sorry what is the issue?

Hi Mate

I would like to split the delivery_time into two fields – Start time & End time at checkout page. For example, a user can select from 9.00 to 10:00 am, instead of only 9 am. Could you please advise on how to change it ? Which files and particular line of codes that need to be modified ?

Many thanks in advance

Should the variable named differently to store two values – starttime, endtime, example variable names likes delivery_time1 or endtime ? Using the same variable name delivery_time does not store two values.

I tried two fields, but variables can't be passed to next page such as paymentoption, comfirmorder & checkout ? 
<?php echo CHtml::textField('delivery_time',$now_time,
            array('class'=>"timepick grey-fields",'placeholder'=>Yii::t("default","Start Time")))?>
           <?php echo CHtml::textField('endtime',$now_time,
            array('class'=>"timepick grey-fields",'placeholder'=>Yii::t("default","End Time")))?>

What is missing in the code ?

yes but my code is checking for delivery_time if this is enabled in the backend

i cannot tell the exact code since i never tried it

your code is almost there just tried if those will work

hey basti how to remove android push picture after uploading?

sorry what do you mean? is this for mobile app? if yes please comment in proper item

have you got a date to release the Single App

sorry mate i cannot promise any date :( there is always something coming up on my end

Hi Basti, I sent you an email via https://codecanyon.net/user/bastikikang around two days ago. Did you find a chance to read that? BR,

reply sent

Hi Basti,

I’m checking the Receipt/Order printing onto a 80mm Thermal Printer with 200pxl and 14font size on Merchant Setting.

The printout does not finish at the end of the Report. After printing the report, the paper feeds for about 2-3 meters before it cuts the paper. It indicates 2 pages too.

Few questions have already asked by others on this same topic.

Any reason you’d think causing this issue?

Thanks, Guy

mate i have a new printer that am working on its a very great printer you can use this on web and merchant app

its has api for printing the receipt so you can print the receipt automatically when there is new order :) i will post the video here once i integrated this printer

cheers

That is good news.

yeah it is :) very excited to finish this printer projects

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey