1012 comments found.
Presale question. Is possible to edit articles and based on article auto generate img and add it as post img or inside post?
Hello,
Yes, editing articles automatically is possible. Also, adding images to the post featured image is also possible. Please check these tutorial videos for details: https://www.youtube.com/watch?v=WVccxtXQTcc https://www.youtube.com/watch?v=33lB-ddmNGM https://www.youtube.com/watch?v=W62gH5QiLVMRegards, Szabi – CodeRevolution.
I need a demo with real AI Chat voice in frontend
Can you make a live preview with AI Chatbot video voice realtime
Hello,
Please set up the plugin on its live demo site, here: http://wpinitiate.com/coderevolution/aiomatic-demo/
Tutorial on the Realtime AI Chatbot: https://www.youtube.com/watch?v=Zuy6Yd4Ik8o
Regards, Szabi – CodeRevolution.
The Amazon product review is not actually working, and I have done everything to import the review but it’s not working, but every other part is working.
Hello,
Please send me temporary admin login credentials to your site and I check on this issue. My email is kisded@yahoo.com
Regards, Szabi – CodeRevolution.
Dear Developer, how do I make the ‘agents’ read my posts? Is there a way to send my old posts in batches to OpenAI, or while I publish in real time?
Actually, I don’t want an agent in each post. I want an agent to access all my posts or a portion of my posts at once. Many posts complement each other, so the agent must access them all.
I appreciate your answer. Rgds!
Hello,
Currently the chatbot can read the current post (on which the chatbot is opened), using this method: https://www.youtube.com/watch?v=0j_e107bK1g
Also, it can read posts directly from the database, using this method: https://www.youtube.com/watch?v=bWPGTG0atjU
Regards, Szabi – CodeRevolution
How to connect this to an agent?
About what kind of agent are you asking more exactly? AI Assistant?
Yes, AI assistant. I’ve followed your video above, and activated wordpress scrapper extension but it did’t work. I tried database extension but it didn’t work. I get a processing error. try later.
I tried different openai models, but none of them worked.
Please give directions.
Thank you.
Which model are you using in the video? Please share this information.
This should not be a model related issue. Please send me temporary admin login credentials to your site and I check on this. My email is kisded@yahoo.com
Regards.
Credentials sent.
I sent you another email. Please take a look.
Ok, I check on this issue and let you know.
Hi, Szabi! Everything is up and running now. Thank you for your great support. You are the best!
I am glad to help! 
Regards.
I use custom fields in WooCommerce for Product description. Is it possible to generate AI content for custom fields?
Hello,
Yes, this is possible, please check this tutorial video for details: https://www.youtube.com/watch?v=1yV5Lg7cJZI
Regards, Szabi – CodeRevolution
I watched the video…according to it it is about creating a custom field. I need to generate content into existing fields in woocommerce
The method shown in the video will create values also in existing and also in new custom fields. Just be sure to enter the exact slug of the custom field and the plugin will be able to generate content for it.
Regards.
Can you impllement AIOMATCI AS An SSE client to listen to other MCP servers and interact with other MCP servers through agent chat.. 2. Create a PHP Endpoint for SSE: WordPress Hook: Use a WordPress hook (e.g., wp_ajax_my_sse_endpoint or wp_ajax_nopriv_my_sse_endpoint) to create a custom AJAX endpoint that will serve as the SSE server-side script. SSE Headers: In the PHP endpoint, set the appropriate headers to indicate that you’re sending an SSE stream: header(‘Content-Type: text/event-stream’); header(‘Cache-Control: no-cache’); header(‘X-Accel-Buffering: no’); (useful for disabling buffering in nginx) Event Data: Implement the logic in your PHP to fetch or generate the data you want to send as SSE events. This might involve: Querying the WordPress database. Checking for updates or changes. Interacting with external APIs. SSE Format: Send the data in the standard SSE format, which involves event:, data:, id:, and optionally retry: fields. Flush Output: After sending data, use flush() to send the data immediately to the client rather than buffering it. 3. Enqueue JavaScript for the SSE Client: Enqueue Script: Use wp_enqueue_script() in your plugin to load the JavaScript file that will contain the SSE client logic. Dependencies: Declare any dependencies the script has, such as jQuery, if you’re using it. 4. Implement the JavaScript SSE Client: EventSource: Use the EventSource object in your JavaScript code to establish the SSE connection to the PHP endpoint you created. Event Listeners: Attach event listeners (e.g., onmessage, onerror, or addEventListener for custom events) to handle incoming events from the server. Processing Data: Process the received data within the event listeners. For example, you might update the user interface or trigger further actions based on the event data. 5. Triggering Orchestration: Event-Driven Logic: Based on the type and content of the received SSE events, implement logic in your JavaScript to trigger specific orchestration tasks on the client-side. This could involve: Making AJAX requests to other WordPress endpoints or external services. Updating the user interface. Performing client-side calculations or manipulations. 6. Considerations for WordPress: Nonce Security: If you’re using AJAX requests to communicate back to the server from your JavaScript, generate and verify nonces to ensure the requests are legitimate. Admin vs. Frontend: Determine if the SSE client is for the WordPress admin area or the frontend of your website. This will affect where you enqueue the JavaScript and how you structure your PHP endpoint. Example (Simplified): php <?php /* Plugin Name: My SSE Client Description: Implements an SSE client in WordPress. */
// Register the SSE endpoint add_action(‘wp_ajax_my_sse_endpoint’, ‘my_sse_endpoint_handler’); add_action(‘wp_ajax_nopriv_my_sse_endpoint’, ‘my_sse_endpoint_handler’);
function my_sse_endpoint_handler() { header(‘Content-Type: text/event-stream’); header(‘Cache-Control: no-cache’); header(‘X-Accel-Buffering: no’); // Optional, for Nginx }
// Example: Send a message every 5 seconds
$counter = 0;
while (true) {
if (connection_aborted()) break;
}
// Send a message
echo "data: Hello from the server! Counter: " . $counter . "\n\n";
flush();
$counter++;
sleep(5); // Wait for 5 seconds
// Example: Send a custom event after 10 messages
if ($counter >= 10) {
echo "event: customEvent\n";
echo "data: This is a custom event.\n\n";
flush();
}
wp_die(); // Exit cleanly
// Enqueue the SSE client JavaScript add_action(‘wp_enqueue_scripts’, ‘my_sse_client_enqueue_scripts’);
function my_sse_client_enqueue_scripts() { // Assuming you have a sse-client.js file in your plugin directory wp_enqueue_script( ‘my-sse-client-script’, plugins_url(‘sse-client.js’, FILE), array(), // Dependencies (e.g., array(‘jquery’)) ‘1.0’, true // Load in the footer ); } Use code with caution.
javascript // sse-client.js
document.addEventListener(‘DOMContentLoaded’, function() { // Get the SSE endpoint URL const sseEndpoint = ajaxurl + ’?action=my_sse_endpoint’; });
// Create a new EventSource object
const evtSource = new EventSource(sseEndpoint);
// Listen for 'message' events
evtSource.onmessage = function(event) {
console.log('Received message:', event.data);
// Implement your orchestration logic based on the message data
};
// Listen for 'customEvent'
evtSource.addEventListener("customEvent", function(event) {
console.log("Received custom event:", event.data);
// Implement orchestration logic for this custom event
});
// Handle errors
evtSource.onerror = function(error) {
console.error('EventSource failed:', error);
// Implement error handling and reconnection logic
};
Hello,
Thank you for this idea, I noted it. Please check and vote for new updates for the plugin, here: https://trello.com/b/2yxVZapo/aiomatic-feature-ideas
Regards, Szabi – CodeRevolution
I have tried using your demo to test importing and rewriting news stories using RSS. My challenge is that I’ve not been able to successfully import the featured image from the source site. How can I achieve this?
Hello,
Thank you for contacting me.
To import full content from RSS feeds and if you also want to rewrite it using Aiomatic, I recommend you combine Aiomatic with Echo RSS: https://codecanyon.net/item/echo-rss-feed-post-generator-plugin-for-wordpress/19486974
Please note that Aiomatic can import ‘inspiration’ from RSS feeds and feed it into AI writers, it cannot rewrite the full content as it is on the original site. To do this, Echo RSS is required, which can be combined with Aiomatic for AI based rewriting.
Please check this tutorial video for details on combining Echo RSS with Aiomatic: https://www.youtube.com/watch?v=pDGUtNiEaZU
Regards, Szabi – CodeRevolution.
I have succeeded in importing articles using Echo RSS; however, they are not being rewritten by AIOmatic. I believe I have setup everything correctly but the articles just get published without any part of it (title or content) being rewritten. Is there something I’m missing?
Please send me temporary admin login credentials to your site and i check on this. Also, please send me in email your purchase code for Aiomatic.
My email is kisded@yahoo.com
Regards.
Is there a way to include a clickable link in the AI form generated respose?
Hello,
Yes, you need to enable HTML responses from the chatbot settings. Also, instruct the chatbot to send links to users if needed.
Regards, Szabi – CodeRevolution
Hi,I am looking at using the AI Forms and not the Chatbots. I don’t see such a setting in the AI Forms.
Sorry, but this is not yet possible. If you want to get this feature, I can add it to the plugin as a paid custom update. For details, please contact me at my email kisded@yahoo.com
Regards.
Hey, we have sent you mail from rishinamdeo73@gmail.com.
If I have a preference not to include all the instructions in the shortcode, so that in the event of a shortcode break – the instruction will not be visible to users, is there a way to do this?
Hello,
Sure, you can also use embeddings to add additional knowledge, please check: https://www.youtube.com/watch?v=hkk0d7W0kIs
Regards, Szabi – CodeRevolution.
When I choose to have the chatbot stand on the top left, is it possible to set it to be a little lower and not completely higher, so that it doesn’t hide objects?
Hello,
This can be done using some CSS added to your site, I recommend you check with a freelancer on this job, as it requires some CSS knowledge for this to be achieved.
Regards, Szabi – CodeRevolution.
I can fix this myself with CSS if I can easily know what its class is.
You can find the element class using Inspect Element in Chrome: https://www.lambdatest.com/blog/inspect-elements/#:~:text=To%20get%20the%20classes%20using,Testing%20with%20AI%20and%20Cloud%20.%E2%80%9D
Try class: openai-ai-form
Regards.
Is it possible to edit an existing shortcode or do I have to build it from scratch?
Hello,
Sure, you can edit an existing shortcode, just change its parameters as you need them.
Regards, Szabi – CodeRevolution.
I mean to ask, if you want to use the automated system, you have to rebuild it. The system doesn’t give you the option to edit existing code or save existing settings. You have to start from scratch. Is that correct?
Yes, correct.
Hi, can we clarify regarding text wrapping? It seems that there is no way for the text to fit the margins, meaning that in the floating chatbot on the site, the width of the content appears to be wider than the width of the chatbot’s pop-up, how do you control this?
Hello,
Please send me temporary admin login credentials to your site and I check on this issue. My email is kisded@yahoo.com
Regards, Szabi – CodeRevolution.
It amazes me that a plugin to auto-generate content with a bulk mode can only run once per hour, then if you want to run it more you should contact the author then he will sell you an extension for 25$ more.
Hello,
Thank you for contacting me.
Yes, this is the current pricing structure of the plugin. I plan to change it in the upcoming period, thank you for pointing this out.
Regards, Szabi – CodeRevolution.
I have added embeddings to the plugin and now want to use these embeddings with AI forms. I want the user to fill in the details in the form. Based on the details shared by the user and the embeddings I can created, I would like the AI form to generate a response. Can you suggest the best ways to do so?
Hello,
Yes, this is possible. To enable the embeddings to be used in the AI forms, please go to the plugin’s ‘Settings’ menu -> ‘Embeddings’ tab -> be sure to check the ‘AI Forms’ checkbox -> save settings.
Regards, Szabi – CodeRevolution.
I have enabled the same, but I am not sure whether the form responses are using the information from embeddings?
Send me temp admin and i check. My email is kisded@yahoo.com
Regards.
you got the mail from rishinamdeo73@gmail.com where the link for temporary access is mentioned.
Hello,
The issue was that you added embeddings with different namespaces. Please note that the AI forms can access embeddings only from a single namespace. I recreated the embeddings and left the namespace value empty, like this, AI forms will be able to access all added embeddings, please check.
Kind Regards, Szabi – CodeRevolution
Pre-Sale: Is it possible to use this to post into BlueSky? Also, does this plugin integrate with Paid Membership Pro and platforms like N8N? Any responses appreciated.
Hello,
Thank you for contacting me.
Currently, posting to BlueSky is not possible, but I noted this idea for upcoming updates.
Also, Paid Membership Pro integration is possible, please check this tutorial video for details: https://www.youtube.com/watch?v=6EBSMhp3zHM
Ultimate Membership Pro integration is also possible: https://www.youtube.com/watch?v=Ej4fPlA91N4
Regards, Szabi – CodeRevolution.
What about PrestaShop? I have a PrestaShop platform that allows vendors. Would it be possible to autopost new products using this plugin? Any responses appreciated.
Hello,
Sorry, but Aiomatic works only for WordPress, it will not work on Prestashop.
Regards, Szabi – CodeRevolution
Apologies for even asking that question.
No problem.
when i was creating my site, the plugin was working but after uploading to live server, it stopped working. it stopped generating post, all requirements are met and yet it stopped working
Hello,
First of all, thank you for your purchase.
Please send me temporary admin login credentials to your site, so I can check on this issue. My email is kisded@yahoo.com
Regards, Szabi – CodeRevolution.
hello, I use wordpress multisite and the plugin activated on network page, the Admin side panel in the network settings showed Aiomatic and so I spent the entire day just to get and put the api keys in and some basic settings only to then go to the main site and discover nothing is in the settings so the network entered API keys and setup is useless. Can you please make it so the settings in network are reflected in the main site because othewise there isnt even any point having the settings show in the network area and it will catch out anybody who uses multisite.
Hello,
Thank you for your purchase.
Currently each site has its own configuration, so the network admin plugin config is not used. I noted also your idea to propagate the main network settings to all sites, please check and vote for new updates here: https://trello.com/b/2yxVZapo/aiomatic-feature-ideas
Regards, Szabi – CodeRevolution
Hi, does Aiomatic fully support Slovak and Czech languages across all features? For example, AI agent replies, YouTube video publishing, content creation, chatbot responses, etc.? I would like to use the plugin on a Slovak/Czech website and want to ensure full compatibility. Thank you!
Hello,
Thank you for contacting me.
Yes, Slovak and Czech languages are fully supported by the AI models, you just need to specify in the prompt sent to the AI the name of the language in which you want to get the content.
Regards, Szabi – CodeRevolution
Suggestions to Improve Multi-Bot Chat
Multi-bot chat is a useful feature of the plugin, but I have a few suggestions to make it even more powerful and efficient:
-
Allow multiple bots to reply to a single question at once (multi-select bots), instead of requiring users to interact with each bot one by one.
This would save time and make comparisons between different bots’ perspectives much easier, especially when evaluating their answers side by side. -
Enable bots to respond to each other in sequence. For example, I ask one question, Bot 2 replies, then Bot 3 analyzes and builds on Bot 2’s response, and so on.
This would simulate a real discussion or brainstorming session among experts, allowing the bots to challenge, refine, or validate each other’s answers — leading to more thoughtful and higher-quality outcomes.
Thanks for considering these ideas!
Hello,
Thank you for these ideas, I noted them, please check and vote for new features here: https://trello.com/b/2yxVZapo/aiomatic-feature-ideas
Regards, Szabi – CodeRevolution
Hi, Is there any plan to implement AI conversational API from elevenlabs.io.Would be terrific you can add this function asap. I am very interested. Thanks, Dan
Hello,
I noted this idea to the update ideas list, please check and vote for new features, here: https://trello.com/b/2yxVZapo/aiomatic-feature-ideas
Regards, Szabi – CodeRevolution