Since upgrading to Wordpress 3.1.1 I noticed that the archive page (any category) has the side bar at the bottom of the page instead of to the right.
URL: http://www.prodijay.com/?cat=13
Is there a way to fix this in the archive.php or elsewhere?
(6 posts)
(3 voices)
Since upgrading to Wordpress 3.1.1 I noticed that the archive page (any category) has the side bar at the bottom of the page instead of to the right.
URL: http://www.prodijay.com/?cat=13
Is there a way to fix this in the archive.php or elsewhere?
Hi,
Have you made any changes to the PHP code? It seems that the archive view is now configured to be a full width page.
I did not change anything with the PHP code. It was working. I updated wordpress and then it wasn't. *shrug*
Hello prodijay,
Open up /wp-content/themes/awake/archive.php and on line 8 you should see this,
query_posts($query_string . '&cat='.$exclude_blog_cats);
Try changing it like this,
query_posts($query_string . '&cat='.$exclude_blog_cats . '&category_name=' . get_query_var('category_name'));
If that does not work for you then if possible PM us a Wordpress login so we can take a closer look.
That did resolve it! Thanks guys! Great response time! Great theme!
Your welcome prodijay, let us know if you need anything else.
You must log in to post.