Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Autofocus Plus WordPress

  • SOLVED

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.

Answers (7)

2010-08-29

Baki Goxhaj answers:

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

2010-08-29

Mattias answers:

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!

2010-08-29

Cosmin Popovici answers:

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 :)

2010-08-30

Rashad Aliyev answers:

Change your permalinks settings to: [[LINK href="http://codex.wordpress.org/images/a/a9/wordpress-permalinks-structure.gif"]]http://codex.wordpress.org/images/a/a9/wordpress-permalinks-structure.gif[[/LINK]]

Suggestion for your site stucture: <strong>/%postname%/</strong>


Then edit your <strong>.htaccess</strong> 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..

2010-08-30

Kaavs answers:

Hi Diane,

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


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

Cheers,
Kaavs

2010-08-30

Nilesh shiragave answers:

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>

2010-08-29

Khanh Cao answers:

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.