Viewing 10 replies - 16 through 25 (of 25 total)
  • What if your wordpress folder and your site URL is different — will the Mobile Edition still work?

    My site URL is neekole.com, but my WordPress folder is neekole.com/wp. I have my URL settings set up so that neekole.com automatically looks like /wp. Is there a way I can access neekole.com on my PDA, and it automatically forwards to neekole.com/wp/wp-mobile ?

    Thanks.

    Bleah, never mind. I can’t even seem to access the wp-mobile.php from my PDA! it seems to want to download the file instead of displaying it. I don’t get it.

    This is really quite odd, considering I’ve managed to call up other WordPress blogs with my PDA, but not my own.

    I pull my page in through Avantgo onto my Palm T2, but I can’t seem to get the page to properly wrap. It extends way over teh right hand side and scrolling back and forth is no fun.

    Is there a way to adjust the settings so it fits the page?

    Works beautifully (and wraps as well) on my Sony Clie TJ-37 (320×320 screen res.).

    Alex, you da man!

    When browsing from a browser matching one in the detection list – I get the following error instead of the mobile-edition website:

    Warning: Cannot modify header information – headers already sent by (output started at /home/route792/public_html/journal/wp-content/plugins/wp-mobile.plugin.php:2) in /home/route792/public_html/journal/wp-content/plugins/wp-mobile.plugin.php on line 75

    Any ideas how to fix this?

    UPDATE: OK – I just fixed it – cleaned up erroneous spaces at the beginning and end of the PHP files. (They were spaces that I inadvertently introduced as part of some hurried cut and pasting.)
    Apologies.

    One thing that would be useful is being able to strip out any images that would normaly be in the page. Any ideas how to do this?

    Hi there! Nice script, works great so far. I agree to the image resizing/stripping part. Afterall it should not be too hard, regexing ‘img’ tags from the content.

    Thank you for the fantastic plugin ??

    I have a question, I hope you may have an easy solution for it.

    I want the mobile version to strip the photos in posts. A major part of the site displays photos that are all 450px wide. This is rather resource intensive on bandwidth, and is not necessary to provide the information. I’m not seeing how this can be easily achieved. Am I missing something? What can be done? Thanks

    P.S. I tried to find support forum/site but there doesn’t appear to be any, hence my question in this thread. Thanks

    Well… I found a solution, thanks to a post from kafkaeski in a thread about removing images from RSS feeds!

    In wp-mobile.php, I found the loop and replaced:

    the_content()

    with:

    <?php
    $content = preg_replace('/<img[^>]*>/i', '', $post->post_content);
    $content = apply_filters('the_content', $content);
    echo $content;
    ?>

    And presto, no images appear in the posts in mobile version ?? FWIW, I also slightly modified the code so it validates and uses non-deprecated elements, and other minor stuff such as adding a DOCTYPE, etc. It’ll go live at the weekend ??

    Thanks again for a wonderful plugin. ??

    I would love to be able to use this plugin but with this plugin activated, i get a 404 error. with this plugin unactivated, i can get to my blog without any problems. I use blackberry 7510 and wp 2.0.4. Thanks for any help

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘WordPress Mobile Edition 1.7’ is closed to new replies.