Entrepreneurial thoughts – Digital, Foodtech, SEO, WordPress…

Do you own a restaurant and wonder how to generate profit margins with deliveries through business partners who handle your orders? Here's a video with some tips I discussed for the Coach Mon Resto website! Remember, a year ago I listed the different delivery options…

As you know, I launched a restaurant chain specializing in home delivery. Besides using marketplaces like Deliveroo or UberEATS, some restaurants prefer to continue with "traditional" home delivery, using their own fleets of drivers, especially in suburban or rural areas…

Today, I wanted to share my experience testing the Merci Jack solution, which I use for Libshop.paris. Merci Jack is a network of tradespeople that allows entrepreneurs, very small businesses, SMEs, and larger organizations to outsource all the technical maintenance and renovation work for their premises and commercial spaces. https://www.instagram.com/p/B3cWOAdo0rt/ Merci Jack doesn't just…

Hello everyone. If you own WordPress blogs, whether for profit or not, Akismet may have blacklisted access to your API key in the WordPress dashboard. Akismet is now very strict about the following three conditions for a WordPress blog to use its anti-spam service for free: You don't have…

I needed to create a shortcode to display the link to a WordPress post. Here's 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 then all I had to do was use the shortcode…

Opening a restaurant, increasing sales, and achieving profitability: this is the ultimate guide to success in the restaurant industry, written by a restaurateur with over 10 years of experience. This guide is a course that raises awareness of the challenges of the restaurant industry, its digitalization, profitability, delivery, and more…

Here is a free, open course that will introduce you to digital entrepreneurship, management 2.0, and organizational dynamics. Through this course, I will try to convey the various considerations related to the digitalization of a company and how to adapt its teams to the challenges of the 21st century. I. Theoretical Introduction and Assumptions…

A free guide to understanding the basics of social media: community management, social networks, digital marketing, and essential tools to optimize your online presence. This guide is a summary of the social media course I taught at the Sup de Pub communication school (INSEEC Group), which I now update over time.
Here is a little trick for BuddyPress to remove the rich text functionalities of the editor from the xProfile text areas, like bio field for example. Add this custom code to bp-custom.php to disable the rich text: [code] /*———-*/ /* REMOVE rich text on xprofile text area /*———-*/ function antipole_remove_rich_text( $field_id = null ) {…

Here's a little tip I'd like to share that's very useful on BuddyPress installations: it involves disabling your social network users' ability to use "rich text features" (which include italics, bold, etc.) in multi-line profile fields, such as the "About" field.