Wordpress visual editor

Has anyone been able to enter text into the wordpress visual post editor box?

iPhone OS 3.1.3

Posted on Apr 6, 2010 10:59 AM

Reply
11 replies

Apr 6, 2010 12:17 PM in response to akraymond3

@akraymond3

No such luck. However the HTML editing portion works without issue.

While I can't be certain, I believe this is due to the fact that when selecting "Visual" the HTML is rendered. Granted, a desktop browser can accommodate this, however given the touch characteristics of mobile Safari, it behaves differently thus preventing you from selecting text within an element.

Apr 6, 2010 12:21 PM in response to DaMacNut

@DaMacNut

I think what he's asking is when creating a blog post, you are faced with choosing between the "HTML" and "Visual" tab. One is the WYSIWYG editor, the other accepts raw HTML. He cannot edit in the Visual editor, which I believe is due to the HTML being rendered and mobile Safari treating it differently than a traditional desktop browser.

However, that said, I just made a blog post using the HTML tab without any issue.

Apr 6, 2010 12:39 PM in response to akraymond3

I can look at the Wordpress source real quick for you and see if I can send you a workaround code snippet.

As for the issue at hand, I busted out the Wordpress app on my iPad and it seems to be working fine. Granted, I don't know exactly what you're trying to do within the Visual editor, but it does give you the option of adding photos, links, etc.

Just make sure you have XML-RPC turned on to use it within your General settings.

EDIT: I suppose I should ask if you are using Wordpress.com or a self-hosted install of Wordpress.

Message was edited by: gb KeyserSoze

Apr 6, 2010 12:43 PM in response to gb KeyserSoze

The bigger issue is a website we use at work as a forum. It doesn't have a way to turn off the visual editor so I can't use it on the iPad. Wordpress just did the same thing so I used it as an example. If I go to the work site on my iPhone it serves up a special format that works. I just need a way to trick it to think the iPad is an iPhone when I hit the site.

Apr 6, 2010 6:36 PM in response to akraymond3

Unfortunately, you cannot alter the user agent of the iPad like you can in Safari or Firefox. The problem here is that you have either a server side script like (PHP or ASP) or client side JavaScript detecting the agent and forwarding you on. The problem is clearly the iPad agent isn't defined in your site's code.

If you or a developer at your company can edit the main index of your forum and add the below code it will forward iPhones and iPads to your mobile admin URL. I've added a space to the script tag so they will show up in the forum and you'll need to replace the mobile URL.

< script type="text/javascript">// <![CDATA[
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
document.location = "YOUR MOBILE URL";
}
// ]]></ script>

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Wordpress visual editor

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.