Foodomaa - Multi-restaurant Food Ordering, Restaurant & Delivery Application - (NULLED BY @LALBILLA)

Foodomaa - Multi-restaurant Food Ordering, Restaurant & Delivery Application - (NULLED BY @LALBILLA) 3.5

No permission to download

arrocy

Active member
Null Master
Trusted Uploader
Jun 16, 2020
185
213
43
Then I don't think this is the right place to do so except you want to hire a developer to do that for you.

Or you ask the developer directly 🤷🏾‍♂️
Some people want free customization, some people willing to pay.
This is very useful option if any one knows the solution please share. and second most wanted schedule delivery also missing and Phone registration missing eatiko.com customized the code
is there any option to change the order status by the seller? like the order is ready, so the Delivery agent can go to the shop to pick it up.

Because at the moment delivery agent will not know if the order is ready for pickup or not, which mean if the delivery agent goes early to the shop, they need to wait, which is waste of time and money, as mean time they can deliver for someone else.

Can anyone help with this, please?

Thank you.
Simple mods/customizations are easy to achieved. When you ask for customer's app customization, it's really hard to do it without the customer's app source.
I posted customer's and delivery's apps customization recently, that's only changing 1 line of code.

I saw customer's app source code before, just to make the SMS login feature like eatiko, you need to remove and add a bunch of lines of codes in multiple files.
And if you decided to go this route, you're probably going to be stuck on that version, unless you are willing to pay again to carry all the customizations to the newer version(s).

So, I suggest to go to foodomaa's codecanyon page and post a request comment, hoping that the author will listen to your suggetion(s).
 
  • Love
Reactions: TheRyD3r

tapasfun

New member
May 2, 2021
23
10
3
Some people want free customization, some people willing to pay.


Simple mods/customizations are easy to achieved. When you ask for customer's app customization, it's really hard to do it without the customer's app source.
I posted customer's and delivery's apps customization recently, that's only changing 1 line of code.

I saw customer's app source code before, just to make the SMS login feature like eatiko, you need to remove and add a bunch of lines of codes in multiple files.
And if you decided to go this route, you're probably going to be stuck on that version, unless you are willing to pay again to carry all the customizations to the newer version(s).

So, I suggest to go to foodomaa's codecanyon page and post a request comment, hoping that the author will listen to your suggetion(s).
Yes, you are right, that's why I'm stuck to buy a genuine license because It actually doesn't fulfill the requirements, hence I used the nulled version to do the testing.

I see it's on their RoadMap already but not sure when they will implement it: https://trello.com/c/DEZsTeA2
 

tapasfun

New member
May 2, 2021
23
10
3
If anyone wants to use multiple numbers for Whatsapp notification can use this:

Notification on 2 numbers at the same time.

Simply add this code on OrderContoller.php

After this line
PHP:
$this->sendPushNotificationStoreOwner($restaurant_id, $unique_order_id);
replace XXXX to your WhatsApp number & apikey


PHP:
/* START SEND WHATSAPP WITH API TO OWNER AFTER ORDER PLACED/

$msgMessage = "New Order Arrived!*

Restaurant Name -". $restaurant->name."

Customer Name : ". $user->name."

Customer No : ". $user->phone."

Customer Address : ". $newOrder->address."

Order ID : #". $newOrder->unique_order_id."

Order Price :". config('appSettings.currencyFormat') .$newOrder->total;

$message= urlencode($msgMessage);

$url = 'https://api.callmebot.com/whatsapp.php?phone=XXXX&text='.$message.'&apikey=XXXX';

$contents = file_get_contents($url);

/*Start for second number /

$url = 'https://api.callmebot.com/whatsapp.php?phone=XXXX&text='.$message.'&apikey=XXXX';

$contents = file_get_contents($url);

/ End for second number/

/ END SEND WHATSAPP WITH API TO OWNER AFTER ORDER PLACED*/


@arrocy can you please help, if there anyway, we can send the order notification to the store owner's WhatsApp number and delivery guy's phone number?
 
Last edited:

arrocy

Active member
Null Master
Trusted Uploader
Jun 16, 2020
185
213
43
I made some mods on the customer's and delivery's apps regarding thousand separator and removing the decimal point. This is useful for countries that have a lot of digits in their currency. (Fulfilling my promise when I post patches to null v2.6.1)
This is a compiled NodeJS, the mods include:
1. Adding thousand separator on customer's and delivery's apps (india will be 1,23,456 the rest will be 1,234,567 or 1.234.567)
2. Removing decimal point on customer's and delivery's apps
3. Removing wallet animation on delivery's app (it's not possible animating a string)
4. Change the "Call Now" function to "Whatsapp" on customer's and delivery's apps (must edit translation. change "Call Now" to "Whatsapp")

Request by posting a reply, not PM!
** START COPY/PASTE POST **
Hi @arrocy I want to try you modification.
I want to use it because in REPLACE_IT_WITH_YOUR_COUNTRY we use a lot of digits in our currency
I understand that this is for testing purpose only and I will not use it on my production site, unless this mod has bee proven works, then I will use this mod on my production site.
** END COPY/PASTE POST **
I will go to sleep now, I will PM you tomorrow with the zip file to whoever brave enough to test it. LOL!

WARNING!!!
This will replace your original NodeJS files /static/js, please make a backup before proceeding.

Any minor changes on the mods (example: want to keep decimal point and/or keep the "Call Now" function), request by PM!

-Arrocy-
 
Last edited:

arrocy

Active member
Null Master
Trusted Uploader
Jun 16, 2020
185
213
43
If anyone wants to use multiple numbers for Whatsapp notification can use this:

Notification on 2 numbers at the same time.

Simply add this code on OrderContoller.php

After this line
Code:
 $this->sendPushNotificationStoreOwner($restaurant_id, $unique_order_id); [CODE]

replace XXXX to your WhatsApp number & apikey

[CODE]
/* START SEND WHATSAPP WITH API TO OWNER AFTER ORDER PLACED/
$msgMessage = "New Order Arrived!*
Restaurant Name -". $restaurant->name."
Customer Name : ". $user->name."
Customer No : ". $user->phone."
Customer Address : ". $newOrder->address."
Order ID : #". $newOrder->unique_order_id."
Order Price :". config('appSettings.currencyFormat') .$newOrder->total;
$message= urlencode($msgMessage);
$url = 'https://api.callmebot.com/whatsapp.php?phone=XXXX&text='.$message.'&apikey=XXXX';
$contents = file_get_contents($url);
/*Start for second number /
$url = 'https://api.callmebot.com/whatsapp.php?phone=XXXX&text='.$message.'&apikey=XXXX';
$contents = file_get_contents($url);
/ End for second number/
/ END SEND WHATSAPP WITH API TO OWNER AFTER ORDER PLACED*/


@arrocy can you please help, if there anyway, we can send the order notification to the store owner's WhatsApp number and delivery guy's phone number?
@tapasfun

It is possible, but you must use third-party API such as callmebot.

the steps are mentioned before, do not follow the steps that I produce using conventional whatsapp API, cause using whatsapp api from orderController IS NOT possible.
Using whatsapp API is possible from the customer's and delivery's apps.

PHP -> server side application
NodeJS (javascript) -> client side application.

I already mentioned the cons and I think it's not worth it to do this mod, since it is already have 2 ways of notification (OneSignal and SMS by msg91)
But, if you still want this feature, PM me!
 

tapasfun

New member
May 2, 2021
23
10
3
@arrocy
The PWA version of the apps doesn't send a notification alert or get Location access when the app isn't opened on the user mobile.

So for the notification, trying to bypass with WhatsApp, so seller and driver can get the notification on Whatsapp even when their app isn't open. So they can open the app and see the details.

Yes, we can use callmebot for now, as it free :)

Thank you.
 

hodgso2k21

Member
Apr 9, 2021
57
11
8
Good news everyone....
Whatsapp communication between user and delivery guy (opening whatsapp instead of opening phone app)

Edit these 2 files:
1. /static/js -> 18.xxx.chunk.js
find: href:"tel:"+t.delivery_details.phone
replace it with: href:"https://api.whatsapp.com/send?phone="+t.delivery_details.phone

2. /static/js -> 23.xxx.chunk.js
find: href:"tel:"+t.user.phone
replace it with: href:"https://api.whatsapp.com/send?phone="+t.user.phone

Edit translations Settings->Translations ->Edit language:
find: Call Now
Replace it with: Whatsapp

Clear caches from the admin panel is necessary for the changes take effect.
great dear
tks for the nulled
 

techiswealth

New member
May 21, 2021
1
0
3
Hi Dear
Anyone can help me with the PWA, as pop-ups don't execute and show after excessing the web on browser.?
 

Pokerman

New member
May 30, 2021
19
1
1
I made some mods on the customer's and delivery's apps regarding thousand separator and removing the decimal point. This is useful for countries that have a lot of digits in their currency. (Fulfilling my promise when I post patches to null v2.6.1)
This is a compiled NodeJS, the mods include:
1. Adding thousand separator on customer's and delivery's apps (india will be 1,23,456 the rest will be 1,234,567 or 1.234.567)
2. Removing decimal point on customer's and delivery's apps
3. Removing wallet animation on delivery's app (it's not possible animating a string)
4. Change the "Call Now" function to "Whatsapp" on customer's and delivery's apps (must edit translation. change "Call Now" to "Whatsapp")

Request by posting a reply, not PM!
** START COPY/PASTE POST **
Hi @arrocy I want to try you modification.
I want to use it because in REPLACE_IT_WITH_YOUR_COUNTRY we use a lot of digits in our currency
I understand that this is for testing purpose only and I will not use it on my production site, unless this mod has bee proven works, then I will use this mod on my production site.
** END COPY/PASTE POST **
I will go to sleep now, I will PM you tomorrow with the zip file to whoever brave enough to test it. LOL!

WARNING!!!
This will replace your original NodeJS files /static/js, please make a backup before proceeding.

Any minor changes on the mods (example: want to keep decimal point and/or keep the "Call Now" function), request by PM!

-Arrocy-
Hi @arrocy I want to try you modification.
I want to use it because in REPLACE_IT_WITH_YOUR_COUNTRY we use a lot of digits in our currency
I understand that this is for testing purpose only and I will not use it on my production site, unless this mod has bee proven works, then I will use this mod on my production site.
** END COPY/PASTE POST **
 

arrocy

Active member
Null Master
Trusted Uploader
Jun 16, 2020
185
213
43
Hi @arrocy I want to try you modification.
I want to use it because in REPLACE_IT_WITH_YOUR_COUNTRY we use a lot of digits in our currency
I understand that this is for testing purpose only and I will not use it on my production site, unless this mod has bee proven works, then I will use this mod on my production site.
** END COPY/PASTE POST **
Are you in vietnam?
How much is the largest bill you have in vietnam?
 

ricust4

New member
May 1, 2021
9
1
3
@arrocy brother is it possible to put another payment method? I would not use api, it would be exactly the same as effective but it will say something different, could you help me? Thanks in advance
 

Silva

Active member
Oct 12, 2020
432
233
43
I made some mods on the customer's and delivery's apps regarding thousand separator and removing the decimal point. This is useful for countries that have a lot of digits in their currency. (Fulfilling my promise when I post patches to null v2.6.1)
This is a compiled NodeJS, the mods include:
1. Adding thousand separator on customer's and delivery's apps (india will be 1,23,456 the rest will be 1,234,567 or 1.234.567)
2. Removing decimal point on customer's and delivery's apps
3. Removing wallet animation on delivery's app (it's not possible animating a string)
4. Change the "Call Now" function to "Whatsapp" on customer's and delivery's apps (must edit translation. change "Call Now" to "Whatsapp")

Request by posting a reply, not PM!
** START COPY/PASTE POST **
Hi @arrocy I want to try you modification.
I want to use it because in REPLACE_IT_WITH_YOUR_COUNTRY we use a lot of digits in our currency
I understand that this is for testing purpose only and I will not use it on my production site, unless this mod has bee proven works, then I will use this mod on my production site.
** END COPY/PASTE POST **
I will go to sleep now, I will PM you tomorrow with the zip file to whoever brave enough to test it. LOL!

WARNING!!!
This will replace your original NodeJS files /static/js, please make a backup before proceeding.

Any minor changes on the mods (example: want to keep decimal point and/or keep the "Call Now" function), request by PM!

-Arrocy-
Hi @arrocy I want to try you modification.
I want to use it because in REPLACE_IT_WITH_YOUR_COUNTRY we use a lot of digits in our currency
I understand that this is for testing purpose only and I will not use it on my production site, unless this mod has bee proven works, then I will use this mod on my production site.
 

arrocy

Active member
Null Master
Trusted Uploader
Jun 16, 2020
185
213
43
@arrocy brother is it possible to put another payment method? I would not use api, it would be exactly the same as effective but it will say something different, could you help me? Thanks in advance
what kind of payment method?
 

arrocy

Active member
Null Master
Trusted Uploader
Jun 16, 2020
185
213
43
Hi @arrocy I want to try you modification.
I want to use it because in REPLACE_IT_WITH_YOUR_COUNTRY we use a lot of digits in our currency
I understand that this is for testing purpose only and I will not use it on my production site, unless this mod has bee proven works, then I will use this mod on my production site.
REPLACE_IT_WITH_YOUR_COUNTRY ??
Please state your country and the largest paper bill in your country.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu