Storyman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Page ProblemFirst, are you using the WP default theme or ??? The category issue might be related to the theme.
Rather than deleting the pages set the unwanted page’s status to ‘Draft’ and see what happens.
My experience with WP has been pretty solid and haven’t heard of anything like this happening.
Forum: Plugins
In reply to: Word Count JavaScriptMichael,
Did you ever get it working?
Forum: Everything else WordPress
In reply to: Is it a Hack or a WordPress defaultKmessinger,
Thanks for the info. I’ll sleep better tonight.
Forum: Fixing WordPress
In reply to: Need to list Home page post by IDAnyone ??
Forum: Fixing WordPress
In reply to: For some reason my options are gone (Bold, Italic, Img)How about marking your post ‘Solved’?
Forum: Fixing WordPress
In reply to: wp-cache deactivated, but appears to still functionOtto42,
Thanks. Didn’t know that. Solves question.
Forum: Fixing WordPress
In reply to: Remove Documentation and Support Forums links from DashboardCould you explain why you would want to do that?
Forum: Fixing WordPress
In reply to: Dashboard stopped showing incoming linksJeremy,
Thanks for the info.
Still a bit confused though. When I check link:www.mysite.com/ about 80 sites are listed. As of now no incoming links are listed in Dashboard.
Is there something I need to do (refresh something, plugin)? Or will they just appear over time?
Forum: Fixing WordPress
In reply to: Dashboard stopped showing incoming linksNo one else have this problem?
Forum: Developing with WordPress
In reply to: WordPress almost crawlingYour site loaded perfectly for me. Have you tried using a different browser?
Forum: Fixing WordPress
In reply to: blog title refuses to changeYou appear to have solved the problem.
Would you mind sharing what you did to solve the problem, then mark the post resolved?
Forum: Fixing WordPress
In reply to: 2.3.1 Serious ProblemUpdated 3 sites from 2.3 to 2.3.1 without any problems. Though in the future I think I’ll wait several days after a new release. I’m taking this problem as a cautionary tale.
Forum: Plugins
In reply to: Category list not updatingMichaelH,
You are right. The post in question are future timestamped.
I’ll have to check out get_category_parents(). The code posted does work–sans the timestamp issue.
Thanks
Forum: Fixing WordPress
In reply to: Page 2 and Home display same postsAfter contacting one jcornide, who had posted the same problem and received no replies, he was kind enough to email what solution he did find.
After contacting jcornide, I found the solution that he used to solve the problem. This is what he wrote:
Yes, I solved the problem with the page 2. Maybe you are excluding one category in the home of your blog? If yes, you maybe be using something like:
query_posts( “cat=-3”);Well, I changed that for this:
query_posts( $query_string . “&cat=-3”);And now works ??
Hope this will help.
The solution I contrieved was a If-Else:
<?php if (!in_category(‘3’)) : ?>
posting code here
<?php else : ?>
<?php endif; ?>[This code was used on index.php and page.php]
Of the two, I feel jcornide’s solution is far better than mine–less is more in my book.
Forum: Your WordPress
In reply to: Page 2 show the same posts as the home pageAfter contacting jcornide, I found the solution that he used to solve the problem. This is what he wrote:
Yes, I solved the problem with the page 2. Maybe you are excluding one category in the home of your blog? If yes, you maybe be using something like:
query_posts( “cat=-3”);Well, I changed that for this:
query_posts( $query_string . “&cat=-3”);And now works ??
Hope this will help.
The solution I used was a If-Else:
<?php if (!in_category(‘3’)) : ?>
posting code here
<?php else : ?>
<?php endif; ?>[This code was used on index.php and page.php]
Of the two, I feel jcornide’s solution is far better than mine–less is more in my book.