logo

$10
Autofocus Plus

I am trying out this plug in for a photography client and for some reason, the posts are not displaying properly. When I click on the featured shot on the home page, I get a 'not found' message. The posts are indeed present.

http://whenthecoxcrows.com

This developer states he does not suppport the software. Bummer.

Diane Cox | 08/29/10 at 4:47pm | Edit


(7) Possible Answers Submitted...

  • avatar
    Last edited:
    08/30/10
    8:12am
    Baki Goxhaj says:

    Check your permalinks setting - seems they are miss-formed.

  • avatar
    Last edited:
    08/29/10
    5:18pm
    Khanh Cao says:

    The links for the posts are incorrect, to me, they look like a static string instead of being generated from get_permalink(). This could be the plugin or the theme's fault. I could not find the plugin so I can't post the exact fix here, sorry :-) but I think we only need a little change to make it work.

  • avatar
    Last edited:
    08/30/10
    8:12am
    Mattias says:

    The links to the posts (on the first page) is all linking to one and the same page (http://whenthecoxcrows.com/dianecox%20photography/) and are actually not linked to the posts itself.

    I did not get your question properly, are you the developer of this site. Or have you had someone develop this for you? If you are the developer: has any alterations been made to the theme AutoFocus Plus?

    I could help you further with this if you would like!

  • avatar
    Last edited:
    08/30/10
    8:12am
    Cosmin Popovici says:

    Can you show us your index.php code?

    As Baki above said, it's most likely a permalink issue, but that could also be because of the plugin (or something else), should it manipulate the WP query.

    You can use tinypaste.com to show us your full code :)

  • avatar
    Last edited:
    08/30/10
    8:12am
    Rashad Aliyev says:

    Change your permalinks settings to: http://codex.wordpress.org/images/a/a9/wordpress-permalinks-structure.gif

    Suggestion for your site stucture: /%postname%/


    Then edit your .htaccess file and be sure the codes are there. If it's not then edit it and paste all of things there.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress


    P.S: Be sure you don't have any permalink plugins. Maybe you've permalink redirectors plugin and it changed all of things automatically..

    Previous versions of this answer: 08/30/10 at 12:20am

  • avatar
    Last edited:
    08/30/10
    8:12am
    Kaavs says:

    Hi Diane,

    First of all check if you've got the latest version of the Plugin you are using. Download the latest version at http://wordpress.org/extend/plugins/regenerate-thumbnails/


    You might also want to take a quick look at this to guide you through the image settings : http://codex.wordpress.org/File:options-media.png

    Cheers,
    Kaavs

    Previous versions of this answer: 08/30/10 at 4:16am

  • avatar
    Last edited:
    08/30/10
    8:12am
    Nilesh shiragave says:

    Check the all your post links are going to


    http://whenthecoxcrows.com/dianecox%20photography/


    I think there is problem is with the the_permalink() php function which is called to retrieve the respective post links.

    check home.php file and search for this code

    <a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'sandbox'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><span><?php the_title() ?></span></a>

    and replace that code with this one

    <a href="<?php echo get_permalink($post->ID); ?>" title="<?php printf( __('Permalink to %s', 'sandbox'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><span><?php the_title() ?></span></a>

    Previous versions of this answer: 08/30/10 at 7:03am | 08/30/10 at 7:04am

This question has expired.





Current status of this question: Completed