AnsonA4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide the first post in my blogUpdate: There is also a “newer entries” link now on my index page, AnsonAlex.com, even though there aren’t any newer entries.
If you click it, it takes you to the same place you go to when you click “older entries”.
Other than those two above issues this fix works but if someone could shed some more light on the topic I would really appreciate it.
Forum: Fixing WordPress
In reply to: Hide the first post in my blogThis worked great for me except that after page 6, the “older posts” button is no longer an option. If I go to ansonalex.com/page/7 the proper page displays however the navigation has disappeared. Here is my code (mine is a little different, I have 3 posts that I do not want displayed and I want to display 10 posts per page):
$paged = (get_query_var('paged')) ? get_query_var('paged') : 3; $posts_per_page = 10; $offset = $posts_per_page * ($paged - 3) + 3; $args = array( 'posts_per_page' => $posts_per_page, 'paged' => $paged, 'offset' => $offset, ); query_posts($args); if (have_posts ()) { while (have_posts ()) { (the_post());Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] Error in Normal Display page after upgradeHaving the same issue. Where were you able to find the older version?
Forum: Fixing WordPress
In reply to: WYSIWYG Visual Editor Gone!@ govpatel
Hah… Wow do I feel dumb…
I had it disabled in my profile, thanks for the tip Govpatel!!
Forum: Fixing WordPress
In reply to: WYSIWYG Visual Editor Gone!I am having this exact same problem- no more visual editor. Fortunately I usually write in the html view anyway but I want to view a table in my WYSIWYG and I cannot. There is no option to switch to that view. I think this happened a few weeks ago when I ran the update to 3.0.4 but I just updated to 3.1 and there still is no WYSIWYG editor.
Any other suggestions other than disabling and reenabling all plugins?