Wordpress node not pushing

Hi, I created a workflow to automate posting Google Docs from a Google Drive folder to our WordPress blog. However, it seems that the content isn’t being published live on WordPress. Could you help troubleshoot why this might be happening?

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hey @josephavetti,

Welcome to the community :raised_hands:

When you say it isn’t publishing what do you mean? Is the post being created in Wordpress and what is the output of the Wordpress node?

Hi there Jon, thanks for your reply. When I say publishing, I don’t see it on my wordpress dashboard in the list of contents under “Posts”, the output of the wordpress node is “Node executed successfully”

Hey @josephavetti,

I have just given it a quick test and it appears to be working and it creates a post as a draft.

Can you share the full worklfow and the output of the Google Docs node so I can try and reproduce the issue?

sorry i am new in n8n and we’re using our local server to host it.

how do i share the full workflow?

Hey @josephavetti,

This docs page should help: Export and import workflows | n8n Docs

here you go @Jon :

{
“meta”: {
“instanceId”: “63bedc4dfa8618b205589ef9c8a003968ec01fb80782197e45c6ba51a0a50da2”
},
“nodes”: [
{
“parameters”: {
“rule”: {
“interval”: [
{}
]
}
},
“id”: “c36ec89a-f389-487d-81c8-0dddfc37582e”,
“name”: “Schedule Trigger1”,
“type”: “n8n-nodes-base.scheduleTrigger”,
“typeVersion”: 1.2,
“position”: [
1320,
820
]
},
{
“parameters”: {
“resource”: “fileFolder”,
“filter”: {
“driveId”: {
“mode”: “list”,
“value”: “My Drive”
},
“folderId”: {
“__rl”: true,
“value”: “1QFi32wiMdaBFtMjlVsdRq2CO8-lGhZKt”,
“mode”: “list”,
“cachedResultName”: “Blog Post”,
“cachedResultUrl”: “https://drive.google.com/drive/folders/1QFi32wiMdaBFtMjlVsdRq2CO8-lGhZKt
},
“whatToSearch”: “files”,
“fileTypes”: [
“application/vnd.google-apps.document”
]
},
“options”: {}
},
“id”: “8383341e-375f-4d09-a6cf-c28f1da5b961”,
“name”: “Google Drive1”,
“type”: “n8n-nodes-base.googleDrive”,
“typeVersion”: 3,
“position”: [
1540,
820
],
“credentials”: {
“googleDriveOAuth2Api”: {
“id”: “muVPxQPfHLCNfMQX”,
“name”: “Google Drive account”
}
}
},
{
“parameters”: {
“operation”: “get”,
“documentURL”: “={{ $json.id }}”,
“simple”: false
},
“id”: “b6982fc1-89ca-4b6c-b794-b4f95ba7def0”,
“name”: “Google Docs1”,
“type”: “n8n-nodes-base.googleDocs”,
“typeVersion”: 2,
“position”: [
1760,
820
],
“credentials”: {
“googleDocsOAuth2Api”: {
“id”: “JvszK6NVNlLyO2rv”,
“name”: “Google Docs account”
}
}
},
{
“parameters”: {
“assignments”: {
“assignments”: [
{
“id”: “815504de-024a-4e04-aaac-8ee9eee69fab”,
“name”: “title”,
“value”: “={{ $json.title }}”,
“type”: “string”
},
{
“id”: “c5fbbed5-0832-4b10-9234-2cb04254de3d”,
“name”: “body”,
“value”: “={{ $json.body }}”,
“type”: “object”
}
]
},
“options”: {}
},
“id”: “43d0853b-ade8-4cd4-aee6-837a20350b5b”,
“name”: “Edit Fields1”,
“type”: “n8n-nodes-base.set”,
“typeVersion”: 3.4,
“position”: [
1980,
820
]
},
{
“parameters”: {
“method”: “POST”,
“url”: “https://admin-vendor3.avetti.io/”,
“authentication”: “genericCredentialType”,
“genericAuthType”: “httpHeaderAuth”,
“options”: {}
},
“id”: “b1b0210f-ae13-4c2f-9ab5-264656733f62”,
“name”: “HTTP Request”,
“type”: “n8n-nodes-base.httpRequest”,
“typeVersion”: 4.2,
“position”: [
2200,
820
],
“credentials”: {
“httpHeaderAuth”: {
“id”: “BbXCPYqphG3IsjfT”,
“name”: “Header Auth account”
}
}
}
],
“connections”: {
“Schedule Trigger1”: {
“main”: [
[
{
“node”: “Google Drive1”,
“type”: “main”,
“index”: 0
}
]
]
},
“Google Drive1”: {
“main”: [
[
{
“node”: “Google Docs1”,
“type”: “main”,
“index”: 0
}
]
]
},
“Google Docs1”: {
“main”: [
[
{
“node”: “Edit Fields1”,
“type”: “main”,
“index”: 0
}
]
]
},
“Edit Fields1”: {
“main”: [
[
{
“node”: “HTTP Request”,
“type”: “main”,
“index”: 0
}
]
]
}
},
“pinData”: {}
}

hi @Jon were you able to check the issue?

Hey @josephavetti,

I have tested it with a fresh install of n8n and Wordpress and it works as expected. Can you share the output of the wordpress node?

{
“meta”: {
“instanceId”: “63bedc4dfa8618b205589ef9c8a003968ec01fb80782197e45c6ba51a0a50da2”
},
“nodes”: [
{
“parameters”: {
“title”: “={{ $json.title }}”,
“additionalFields”: {
“content”: “={{ $json.body }}”,
“status”: “draft”
}
},
“id”: “c138e493-64a4-43b6-8b5c-bb38f6923ec3”,
“name”: “Wordpress”,
“type”: “n8n-nodes-base.wordpress”,
“typeVersion”: 1,
“position”: [
2200,
560
],
“credentials”: {
“wordpressApi”: {
“id”: “1acPbGns50vGgO8b”,
“name”: “Wordpress account”
}
}
}
],
“connections”: {},
“pinData”: {}
}

@Jon here

this is where we are trying to implement the workflow https://admin-vendor3.avetti.io/

hi @Jon sorry just checking if you have an update on this?

hi @Jon just a quick followup on this man. thanks

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.