This is my basic WooCommerce sync with Airtable... Actually, it's not just Airtable but also Meilisearch.
One of my stores uses WooCommerce (sadly), and I've moved this workflow to n8n today.
It updates Airtable with the new order status or data, then updates the Meilisearch DB with the new data.
Why do I use Meilisearch? The main reason is to link it with other apps faster than WordPress. Calling my WordPress DB takes resources from my web server, and I don't need that. Here, I use Meilisearch, which I already use for many other use cases to store data and then link the data with other apps.
For example, a Telegram store bot to search for products, orders, etc.
My roadmap project is to create a Telegram bot that will manage orders for each customer. Once they link their account with Telegram, they will be able to see their orders, browse products, and access assigned coupons within Telegram.
And for sure, the main reason for using Telegram is not because of the free API but because I need to test new features like Telegram Stars (payment gateway) and mini apps (web apps). This way, I will be able to show a small website catalog for the products inside Telegram.
I've done some tests before, and the mini apps can work with n8n. We can build e-commerce on Telegram mini apps using n8n + Meilisearch and the WP API to place orders only, which will not cost server resources, just for the paid users.
One of my stores uses WooCommerce (sadly), and I've moved this workflow to n8n today.
It updates Airtable with the new order status or data, then updates the Meilisearch DB with the new data.
Why do I use Meilisearch? The main reason is to link it with other apps faster than WordPress. Calling my WordPress DB takes resources from my web server, and I don't need that. Here, I use Meilisearch, which I already use for many other use cases to store data and then link the data with other apps.
For example, a Telegram store bot to search for products, orders, etc.
My roadmap project is to create a Telegram bot that will manage orders for each customer. Once they link their account with Telegram, they will be able to see their orders, browse products, and access assigned coupons within Telegram.
And for sure, the main reason for using Telegram is not because of the free API but because I need to test new features like Telegram Stars (payment gateway) and mini apps (web apps). This way, I will be able to show a small website catalog for the products inside Telegram.
I've done some tests before, and the mini apps can work with n8n. We can build e-commerce on Telegram mini apps using n8n + Meilisearch and the WP API to place orders only, which will not cost server resources, just for the paid users.
I hate the n8n workflows list without buttons to open; each time I need to open one, I have to go through the list again. So, I made a small script that injects a button behind the workflows to open them in a new tab without losing the main page of the workflow list. and just thought why not sharing it:
To set this up:
If you can't read the code and need to ensure it's safe, go to Claude.ai or ChatGPT, paste the code, and ask them to read it for you.
SIDE NOTE: DO NOT FORGET TO CHECK THE MIDJOURNEY TELEGRAM GROUP NOW IT HAS +40K PROMPTS/RESULTS.
Please open Telegram to view this post
VIEW IN TELEGRAM
❤4
🚀 Now you can host n8n AI as a live chat on any website!
Check it out: https://www.npmjs.com/package/@n8n/chat
Easy installation - just add this code to your website's Header:
Remember to replace 'YOUR_PRODUCTION_WEBHOOK_URL' with the workflow link you'll create for your project on n8n.
Enhance your website with AI-powered chat today! 💬✨ #n8n #AIChat #WebDevelopment
Check it out: https://www.npmjs.com/package/@n8n/chat
Easy installation - just add this code to your website's Header:
<link href="https://cdn.jsdelivr.net/npm/@n8n/chat/dist/style.css" rel="stylesheet" />
<script type="module">
import { createChat } from 'https://cdn.jsdelivr.net/npm/@n8n/chat/dist/chat.bundle.es.js';
createChat({
webhookUrl: 'YOUR_PRODUCTION_WEBHOOK_URL'
});
</script>
Remember to replace 'YOUR_PRODUCTION_WEBHOOK_URL' with the workflow link you'll create for your project on n8n.
Enhance your website with AI-powered chat today! 💬✨ #n8n #AIChat #WebDevelopment
❤3
🚀 Update Alert!
I've made a small update to the GPT instructions to ask whether you are a #beginner or #advanced user with n8n. If you indicate that you're an advanced user, you won't receive step-by-step usage instructions. If you want code and you are advanced, you'll receive the code directly without unnecessary texts. 🎯
This will save you time and space in the chat! 🕒💬 If it doesn't work and I still receive negative feedback on the answers, I will split the GPT into one for advanced users and one for beginners.
I've made a small update to the GPT instructions to ask whether you are a #beginner or #advanced user with n8n. If you indicate that you're an advanced user, you won't receive step-by-step usage instructions. If you want code and you are advanced, you'll receive the code directly without unnecessary texts. 🎯
This will save you time and space in the chat! 🕒💬 If it doesn't work and I still receive negative feedback on the answers, I will split the GPT into one for advanced users and one for beginners.
> 📩 I'm keeping my eye on the feedback emails forwarded by OpenAI and will reply to them ASAP.
👍1
NodeMation By Nskha
🚀 Update Alert! I've made a small update to the GPT instructions to ask whether you are a #beginner or #advanced user with n8n. If you indicate that you're an advanced user, you won't receive step-by-step usage instructions. If you want code and you are advanced…
🔥 [Advanced Users Mode]
From now on, you may get advanced expressions from my GPT, and it will work like a charm! ✨ Don't worry—no more "Invalid Syntax" errors. Go and test it! 🧪
This is because I fed it new instructions for the knowledge base syntax that works with n8n called CEF-IIFE (borrowed it from Claude Sonnet 😂). It should output only if the expression you asked for is complex. It will apply when the expression requires:
- Multiple operations 🔄
- Array processing 📚
- Complex conditionals 🔀
- Data transformation 🔄
- Using a lot of variables 📊
- Using loops ♻️
The pros of this expression are that you no longer need JS nodes; you can write the JavaScript code inside your nodes or set nodes. The only con you may notice is slightly slower processing, but not slower than running a code node separately.
From now on, you may get advanced expressions from my GPT, and it will work like a charm! ✨ Don't worry—no more "Invalid Syntax" errors. Go and test it! 🧪
This is because I fed it new instructions for the knowledge base syntax that works with n8n called CEF-IIFE (borrowed it from Claude Sonnet 😂). It should output only if the expression you asked for is complex. It will apply when the expression requires:
- Multiple operations 🔄
- Array processing 📚
- Complex conditionals 🔀
- Data transformation 🔄
- Using a lot of variables 📊
- Using loops ♻️
The pros of this expression are that you no longer need JS nodes; you can write the JavaScript code inside your nodes or set nodes. The only con you may notice is slightly slower processing, but not slower than running a code node separately.
> To make the GPT better, please ALWAYS click "LIKE" 👍 on the working answers and click "DISLIKE" 👎 on the bad answers. This is very helpful in improving the GPT responses. 🙏
👍1
NodeMation By Nskha
🔥 LIMITED TIME ONLY! 🔥 🏆 Claim Your FREE Lifetime n8n LICENSE! 🏆 🔧 Don't forget to UPDATE TO THE LATEST VERSION. ➡️ Follow these steps: - Go to Billing & Plans - CLICK ON THE NEW POPUP - ENTER YOUR EMAIL TO GET YOUR LICENSE KEY RIGHT AWAY! 🎉 Congratulations!…
If you haven't received them yet, here are the 3 paid features now available for free when you active your key:
1️⃣ . Restore your old version of workflows (24h auto delete).
2️⃣ . Debug the current executed workflows from history (🔥 this is the most useful feature!).
3️⃣ . Add tags and rates to the executed workflow data.
To be honest, these features should always be free since they are core functionalities. It's great to see the n8n team finally offering them at no cost! I had previously requested this for verified creators, and now they're making it available to everyone. Don't miss out on this opportunity!🚀
To be honest, these features should always be free since they are core functionalities. It's great to see the n8n team finally offering them at no cost! I had previously requested this for verified creators, and now they're making it available to everyone. Don't miss out on this opportunity!
Please open Telegram to view this post
VIEW IN TELEGRAM
Important Notice Regarding Coolify and n8n Integration
When using Coolify with n8n, always ensure you're using HTTPS links. This is crucial because the FQDN (Fully Qualified Domain Name) will be shared with n8n. If it's not HTTPS, your app will run on HTTP even if you have SSL enabled. This can lead to several issues:
- 🚫 Webhooks may experience excessive redirects, causing them not to work or be slow.
- 🚫 Node triggers like Telegram might stop working without any apparent reason.
- 🚫 Your n8n instance may become inaccessible.
All these problems stem from not using an HTTPS domain on Coolify's FQDN and not enabling Cloudflare's SSL mode to "Full/Strict". Do not turn off the Cloudflare proxy (this is strongly not recommended).
To resolve these issues:
1. Use an HTTPS domain on Coolify's FQDN.
2. Enable Cloudflare SSL mode to "Full/Strict".
A client shared that they used their domain with WordPress hosting, which strictly requires the SSL mode to be set to "Flexible". To handle this with Cloudflare, navigate to the Page Rules in your account settings. Then, enable the SSL mode only for the subdomain running your n8n instance (e.g.,
When using Coolify with n8n, always ensure you're using HTTPS links. This is crucial because the FQDN (Fully Qualified Domain Name) will be shared with n8n. If it's not HTTPS, your app will run on HTTP even if you have SSL enabled. This can lead to several issues:
- 🚫 Webhooks may experience excessive redirects, causing them not to work or be slow.
- 🚫 Node triggers like Telegram might stop working without any apparent reason.
- 🚫 Your n8n instance may become inaccessible.
All these problems stem from not using an HTTPS domain on Coolify's FQDN and not enabling Cloudflare's SSL mode to "Full/Strict". Do not turn off the Cloudflare proxy (this is strongly not recommended).
To resolve these issues:
1. Use an HTTPS domain on Coolify's FQDN.
2. Enable Cloudflare SSL mode to "Full/Strict".
A client shared that they used their domain with WordPress hosting, which strictly requires the SSL mode to be set to "Flexible". To handle this with Cloudflare, navigate to the Page Rules in your account settings. Then, enable the SSL mode only for the subdomain running your n8n instance (e.g.,
n8n.domain.tld) and set it to force SSL mode to "Full/Strict". That's all, and it should work without any problems.👍1🔥1
🌟 Vote for This Feature!
Hey everyone! Please take a moment to vote for this feature: Socks5 Support in HTTP Request Node.
Socks5 proxies help you bypass website security by using DNS + Proxy, unlike standard HTTP proxies that rely on static DNS. This makes them more versatile!
💡 If you're looking for affordable Socks5 proxies, I recommend Webshare as a great option: Webshare Proxies. They offer ISP Residential proxies for just $8/year! Personally, I buy one per client and share it with them for browser use. This way, it appears to services that they are real users! ✅
Hey everyone! Please take a moment to vote for this feature: Socks5 Support in HTTP Request Node.
Socks5 proxies help you bypass website security by using DNS + Proxy, unlike standard HTTP proxies that rely on static DNS. This makes them more versatile!
💡 If you're looking for affordable Socks5 proxies, I recommend Webshare as a great option: Webshare Proxies. They offer ISP Residential proxies for just $8/year! Personally, I buy one per client and share it with them for browser use. This way, it appears to services that they are real users! ✅
n8n Community
Socks5 support in http request node
One year ago this was discussed: Socks5 support in http request node? I am using the desktop version nowadays. How can I make the HTTP request go via a socks5 proxy in the desktop setup? When doing things in bash is as easy as this: I first just get…
🫡2
To convert any internal website API into a long-lasting API, I follow this process:
1. Automate the user login 🔐
2. Establish a KV (Key-Value) database to securely store tokens 🗄
3. Implement n8n's internal API, converting it similarly, to manage service API keys using the credentials same as official way 🔄
By doing this, any website can function on n8n as an official API. These workflows run in the background, frequently updating tokens according to their expiration times. ⚙️
1. Automate the user login 🔐
2. Establish a KV (Key-Value) database to securely store tokens 🗄
3. Implement n8n's internal API, converting it similarly, to manage service API keys using the credentials same as official way 🔄
By doing this, any website can function on n8n as an official API. These workflows run in the background, frequently updating tokens according to their expiration times. ⚙️
Hey everyone! 👋
I've got a preference for Mega.io over other cloud services, but recently I needed to automate some personal tasks using cloud storage. For business purposes, I always go with S3. However, I found that Dropbox might be a cost-effective solution for small business use.
The challenge with Dropbox and n8n is that it doesn't support the refresh token method needed for accessing specific internal features like file or folder sharing. To tackle this, I created an internal workflow that converts Dropbox's internal API to the official API using n8n micro-services method.
Since implementing this, the workflow has been running smoothly with just a ~5-second delay.🚀
I've got a preference for Mega.io over other cloud services, but recently I needed to automate some personal tasks using cloud storage. For business purposes, I always go with S3. However, I found that Dropbox might be a cost-effective solution for small business use.
The challenge with Dropbox and n8n is that it doesn't support the refresh token method needed for accessing specific internal features like file or folder sharing. To tackle this, I created an internal workflow that converts Dropbox's internal API to the official API using n8n micro-services method.
Since implementing this, the workflow has been running smoothly with just a ~5-second delay.
Please open Telegram to view this post
VIEW IN TELEGRAM
I wanted to share some progress with you. Today, I started using Puppeteer, which involves automation through headless browsers.
After some research, I discovered the easiest way to set it up is by using Coolify with a project called "Browserless." This setup allows me to connect it with n8n and restrict API calls to the n8n server exclusively using Cloudflare.
The main reason for this is to bypass the Cloudflare challenge page. I was having difficulty with n8n while trying to inject JavaScript code required by a service like 2Captcha to overcome Cloudflare's bot protection. To tackle this, I opted for an RPA method, and using a headless browser proved to be the best solution.🚀
i just want to let you know if you used it with coolify then do not use the internal debugger use the cloud one faster: https://chrome.browserless.io/debugger/💊
Thanks for your attention!😊
After some research, I discovered the easiest way to set it up is by using Coolify with a project called "Browserless." This setup allows me to connect it with n8n and restrict API calls to the n8n server exclusively using Cloudflare.
The main reason for this is to bypass the Cloudflare challenge page. I was having difficulty with n8n while trying to inject JavaScript code required by a service like 2Captcha to overcome Cloudflare's bot protection. To tackle this, I opted for an RPA method, and using a headless browser proved to be the best solution.
i just want to let you know if you used it with coolify then do not use the internal debugger use the cloud one faster: https://chrome.browserless.io/debugger/
Thanks for your attention!
Please open Telegram to view this post
VIEW IN TELEGRAM
NodeMation By Nskha
Channel photo updated
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1
YouTube
Automate Your Designs: Robolly + n8n Tutorial
🎨 Master Design Automation: Robolly + n8n Complete Tutorial Guide!
Get instant image & video automation with Robolly inside n8n—no coding required!
Learn to install, configure, and generate visuals using custom templates.
Expand your workflow and skyrocket…
Get instant image & video automation with Robolly inside n8n—no coding required!
Learn to install, configure, and generate visuals using custom templates.
Expand your workflow and skyrocket…
Get instant image & video automation with Robolly inside n8n—no coding required!
Learn to install, configure, and generate visuals using custom templates.
Expand your workflow and skyrocket productivity—timestamps below! 🚀
🕐 TIMESTAMPS:
00:00 - Intro & Overview: Quick Setup Guide
00:50 - Step-by-Step Installation Process
02:00 - Automating Image Generation
05:00 - Creating Dynamic Videos
08:00 - Managing Historical Renders
10:00 - Pro Design Tips & Freepik Integration
14:00 - Community Resources & FAQ
#robolly #n8n #automation #nocode #designautomation #workflow #tutorial #productivityhacks #automation2024 #workflowautomation
Please open Telegram to view this post
VIEW IN TELEGRAM
❤1
It's been a long time since I abandoned this project, which was designed to generate fully functional n8n installation files. The goal was to provide no-code users with the best possible experience through a GUI configuration for setting up their own n8n instance.
I identified this as a serious problem after spending around two days in meetings with my client, configuring and setting up his instance step by step. The issue was that I had to teach him every single step along the way.
I thought to myself, "Why not create an entire project that automates each step for the client?" I started by writing a basic script for him, explaining every single line I added to his Docker file. He really appreciated it, and that encouraged me to take the idea further by converting it into a full-fledged website.
However, the challenge was figuring out how to ensure his credentials wouldn't be shared with my servers. This led me to realize that everything had to run locally on the client side. Every AI request, search, or any operation would need to occur locally. Although this is a significant challenge for someone new like me, it's an excellent way to build trust with users by ensuring their credentials remain secure.
Until now, it supports 86 credential values with n8n. Every single step suggested is based on my own tests, so I believe it is going to be the ultimate tool that truly cares about n8n installation—not just default values and a quick setup!
I identified this as a serious problem after spending around two days in meetings with my client, configuring and setting up his instance step by step. The issue was that I had to teach him every single step along the way.
I thought to myself, "Why not create an entire project that automates each step for the client?" I started by writing a basic script for him, explaining every single line I added to his Docker file. He really appreciated it, and that encouraged me to take the idea further by converting it into a full-fledged website.
However, the challenge was figuring out how to ensure his credentials wouldn't be shared with my servers. This led me to realize that everything had to run locally on the client side. Every AI request, search, or any operation would need to occur locally. Although this is a significant challenge for someone new like me, it's an excellent way to build trust with users by ensuring their credentials remain secure.
Until now, it supports 86 credential values with n8n. Every single step suggested is based on my own tests, so I believe it is going to be the ultimate tool that truly cares about n8n installation—not just default values and a quick setup!
🔥4💯2👍1
NodeMation By Nskha
It's been a long time since I abandoned this project, which was designed to generate fully functional n8n installation files. The goal was to provide no-code users with the best possible experience through a GUI configuration for setting up their own n8n instance.…
Vote here if you'd like to see this project go live this week or prefer any of the other ones we've already worked on:
https://www.facebook.com/groups/n8nuser/posts/1845502812877094/
https://www.facebook.com/groups/n8nuser/posts/1845502812877094/
