
Restaurants: ways to improve your profitability on Deliveroo, UberEATS and others!
Do you have a restaurant and are wondering how to generate margins with delivery via business providers responsible for delivering your orders? Here are some video ideas that I had the opportunity to discuss for the Coach Mon Resto website! Remember, I listed a year ago

The best electric scooter and bike solutions for restaurateurs and home delivery
As you know, I launched a restaurant brand whose specialty is offering home delivery. In addition to using marketplaces like Deliveroo or UberEATS, some restaurants want to continue "traditional" home delivery, with their own fleets of delivery drivers, especially in

TEST: is the LVE S5 the best electric scooter in terms of autonomy / price ratio?
After my Askoll review, I had the opportunity this week to test the LVE S5, a little gem imported from Asia, which boasts a battery life that is so far almost unmatched for the price. It was the Urban 360 store that allowed me to test this device. And the least we can say,

I tested Merci Jack, the specialist in work and maintenance of commercial premises
Today, I wanted to share with you my review of the Merci Jack solution, which I use for Libshop.paris. Merci Jack is a network of artisans allowing entrepreneurs, VSEs, SMEs, and larger organizations to subcontract all technical maintenance and development work for their premises and commercial spaces. https://www.instagram.com/p/B3cWOAdo0rt/

Is Akismet antispam paid? Here is a free, quick and super simple alternative
Hello everyone. If you own WordPress blogs for more or less profit, Akismet may have "blacklisted" access to your API key in the WordPress dashboard. Indeed, Akismet is now very careful about the following 3 conditions for a WordPress blog to use anti-spam:

Create a shortcode for the permalink of a WordPress article
I needed to create a shortcode that would allow me to display the link to a WordPress article. To do this, here is the code I added to my functions.php file: [code] add_shortcode( 'my_permalink', 'my_permalink' ); // The Permalink Shortcode function my_permalink() { ob_start(); the_permalink(); return ob_get_clean(); } [/code] And there was