bschiav
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pagination with multiple columns / custom loopsSolved; Codex link
and WP_Navi support link that helped gave me the fix:
http://scribu.net/wordpress/wp-pagenavi/right-way-to-use-query_posts.htmlMost of the time, your theme is just using query_posts() wrong.
So here is the correct way to make paging work using query_posts():
Say you have something like this:
query_posts(‘cat=8’);
or like this:query_posts( array( ‘cat’ => 8 ) );
If the file in question is a custom page template, replace it with this:query_posts( array( ‘cat’ => 8, ‘paged’ => get_query_var(‘page’) ) );
Otherwise, replace it with this:query_posts( array( ‘cat’ => 8, ‘paged’ => get_query_var(‘paged’) ) );
Forum: Plugins
In reply to: [Author Avatars List/Block] Widget ListWhat I wanted was already resolved in this post (well apparently not resolved for that user, but resolved for me)
http://ww.wp.xz.cn/support/topic/avatar-alignment-indented-in-widget?replies=7
Thanks, please close this post.
Forum: Plugins
In reply to: [Author Avatars List/Block] Widget ListMaybe that’s unnecessary…what I’m trying to accomplish is a formatting similar to the widget above it on the right hand side (see http://www.upforseconds.com )
…I’m looking through the CSS now, maybe I’ll get it. Any help is appreciated.
thanks
Forum: Fixing WordPress
In reply to: Seperate posts to another page?Well that was easy! Thank you for the helpful post! I’m slowly gettin’ there…
Forum: Fixing WordPress
In reply to: [Resolved] Resizing Thumbnails, not takingAhh…it is 160×160…just not displaying as such. I should be able to find it…I’ll check the styles.
Forum: Networking WordPress
In reply to: Each site seems to link to the same "main" siteThanks again, there are numerous free rewrite filters for IIS6…my issue is very likely a configuration problem once I have them up and running. It may be more of a pain than it’s with with my current setup…I certainly want to keep all of the WHS functions working so I can’t ditch IIS6.
I’ll just go ahead and work with multiple installations, At least until I gain a better understanding of some of this stuff.
FYI for those who may search this, this link seemed to work for permalinks on WHS, but didn’t work when I attempted to go with a network install as mentioned in the above posts
http://www.chriscredendino.com/2009/03/10/how-to-create-wordpress-pretty-permalinks-on-iis-whs/
Iconics ISAPI Rewrite Filter also worked for permalinks…If anyone figures out the proper configuration to get either working with a network install please share. Otherwise I’ll go with multiple installations for now, thanks!
Forum: Networking WordPress
In reply to: Each site seems to link to the same "main" siteThank you for the suggestion…however I’m not really sure what to look for
I’ve just tried removing Ionics ISAPI rewrite filter and using Managed Fusion URL Rewriter via this link:
http://www.incrementalcoding.com/post/2010/04/18/Wordpress-Blog-on-Windows-Hosting-using-Managed-Fusion-URL-Rewriter.aspxAlso tried using the wordpress code for .htaccess in the Managed Fusion rules file since their docs stated it used the same syntax and could be copied over. Installation seems like it just required copying the files to the right spot unless I’m totally missing something.
Either way I’m now further away than before…now clicking on the post gives me a 404 error. It’s surprising that I can’t find a straightforward tutorial on this…I’m doing quite a bit of searching…
I may revert back to the url writer I had before and tinker with the web.config file as you mentioned…however like I said, I wouldn’t really know what to look for.