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