Can WeBuilder be integrated in WordPress Online Platform?
Moderator: kfury77
Forum rules
Please try to follow these guidelines. This will help to receive faster and more accurate response.
Please try to follow these guidelines. This will help to receive faster and more accurate response.
- Check the Support section of the corresponding product first. Chances are you will find your answer there;
- Do not create new topics for already reported problems. Add your comments to the existing topics instead;
- Create separate topic for each problem request. Do NOT post a number of non-related problem reports in a single topic;
- Give your topic a meaningful title. Titles such as "A question," "Bug report" and "Help!" provide others no clue what your message is about;
- Include the version number of the software you are using;
- This is not an official customer support helpdesk. If you need a prompt and official response, please contact our support team directly instead. It may take a while until you receive a reply in the forum;
Can WeBuilder be integrated in WordPress Online Platform?
I normally use WordPress online - Theme GeneratePress.
Is there a way to edit the WP pages in WeBuilder to check the code immediately with HTML and CSS validators?
My request focuses on avoiding copy and paste procedures and stay consistant with the codes.
Thank you for your support,
Walter
Is there a way to edit the WP pages in WeBuilder to check the code immediately with HTML and CSS validators?
My request focuses on avoiding copy and paste procedures and stay consistant with the codes.
Thank you for your support,
Walter
Re: Can WeBuilder be integrated in WordPress Online Platform
If you have FTP access to the site, you can edit the pages directly in WeBuilder.
There are 10 types of people in the world: Those who understand binary and those who don't.
Re: Can WeBuilder be integrated in WordPress Online Platform
Files like htm, css, php I know. But how to transfer a WP page to WeBuilder? Where do I find a certain page via FTP?
Thank you,
Walter
Thank you,
Walter
Re: Can WeBuilder be integrated in WordPress Online Platform
You cannot edit certain page via ftp, because wordpress has page template. You extract a page via a php script which interrogates database.drwjs wrote:Files like htm, css, php I know. But how to transfer a WP page to WeBuilder? Where do I find a certain page via FTP?
Thank you,
Walter
So, a certain page must be edited via wordpress dashboard. Or, you create a special page template for your needs.
Re: Can WeBuilder be integrated in WordPress Online Platform
You could also write a custom plugin for WeBuilder that could communicate with a browser extension like GhostText, which is available for Chrome and Firefox
There are 10 types of people in the world: Those who understand binary and those who don't.
- chrisjlocke
- Top Contributor
- Posts: 995
- Joined: Mon Aug 01, 2005 4:12 pm
- Location: Essex, UK
- Contact:
Re: Can WeBuilder be integrated in WordPress Online Platform
There are also cache plugins for Wordpress which create static HTML pages. The idea of these is that it speeds up the website, as it doesn't needlessly access the database, etc. You could edit these cached HTML pages. The location of these would be different for each plugin.
Re: Can WeBuilder be integrated in WordPress Online Platform
Since Wordpress editing is based on textarea/contenteditable, GhostText would be the best way to integrate WeBuilder with Wordpress editing.
Example of Sublime Editor with GhostText:
To integrate it with WeBuilder, you need to setup a small nodejs server to handle communication to/from the GhostText plugin. And a websocket script to handle communication with WeBuilder, to/from the nodejs server.
Example of Sublime Editor with GhostText:
To integrate it with WeBuilder, you need to setup a small nodejs server to handle communication to/from the GhostText plugin. And a websocket script to handle communication with WeBuilder, to/from the nodejs server.
There are 10 types of people in the world: Those who understand binary and those who don't.
Re: Can WeBuilder be integrated in WordPress Online Platform
I think it is too complicated.
It is like killing a fly with a cannon.
It is like killing a fly with a cannon.
Re: Can WeBuilder be integrated in WordPress Online Platform
If you want to have full-duplex communicate between the editor and other applications, Websockets is the only way to do it.
That's how GhostText works too.
I made a small test plugin, and got it to send data between the GhostText browser plugin and WeBuilder, so it is possible.
That's how GhostText works too.
I made a small test plugin, and got it to send data between the GhostText browser plugin and WeBuilder, so it is possible.
There are 10 types of people in the world: Those who understand binary and those who don't.
Re: Can WeBuilder be integrated in WordPress Online Platform
I got GhostText integrated with WeBuilder in a new plugin. So far the data transfer between WeBuilder and GhostText is working, but I got some problems with creating a document in WeBuilder. (It keeps creating a new document every time GhostText sends data, even if I compare filenames.) So I guess I'll need Aivars help to finish the lat part. 

There are 10 types of people in the world: Those who understand binary and those who don't.