nemonet
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WordPress Mobile Pack] iphone “handler could not be removed” errorThanks themauirob! I had the same problem here and deactivated feedlist to fix. Not sure why I was using feedlist either. hmm.
To clarify:
Because of multisite, I am restructuring my entire website. This is why I have installed a new instance of WP 3.0.
Here is my original blog:
http://www.naturalmedicine.com/blog/Here is my test location:
http://www.naturalmedicine.com/blogs2/only-natural/Same theme and version of WP. Yet in my test location “no categories” and “no posts” appear where tags are calling for them.
Forum: Fixing WordPress
In reply to: SQL Query to delete all tagsThis worked great for me, thank you!!
Do you have a blog/paypal, i can buy you a coffee or a beer?
Aloha…
Forum: Fixing WordPress
In reply to: Remove Category Base in WP 2.7Here is the code that worked for me with only 1 level of categorys (no childs)
if (@$this->query_vars["name"] == "page") { $tmp_ar = $this->query_vars; $this->query_vars = array(); $this->query_vars["paged"] = str_replace("/", "", $tmp_ar["page"]); $this->query_vars["category_name"] = $tmp_ar["category_name"]; }Forum: Fixing WordPress
In reply to: Category Base Removal and Category Pagination (Revisited)Update: Although this worked for me in the past, it does not anymore.
I have all my category’s as child’s of a parent “news” category. So when using this “fix” I get 404 on all category links.
I believe this is the reason why, and not that I am using WP 2.7 now. Not 100%
Either way, I really need help to find a work around. If you use paypal, ill throw in a donation.
Thanks for your help…
Forum: Plugins
In reply to: CSS Selector Selector in Admin?Im looking for the same thing. By default there is wp-caption, alignleft, alignright etc. I’m thinking these styles are defined in a style sheet located in /wp-admin/css/. I believe the visual editor is tiny mice, so maybe in the tinymice folder?
update:
The style sheet for the visual editor “css selector” is in
/wp-includes/js/tinymce/Add you style to wordpress.css to show up in the selector.
Forum: Fixing WordPress
In reply to: Category Base Removal and Category Pagination (Revisited)Yes, thank you much.
Im assuming when upgrading WP this will be overwriten, so CHMOD file or keep backup.
Cheers…
Forum: Fixing WordPress
In reply to: 404 Page doesn’t resolve, just shows code from my sidenavIm having same problem. When view source of parsed page no text from 404.
I checked search.php as it seeems it might be searching.
Also checked htaccess.
This is what ive found so far:
Check your Front Page Display (under Settings, Reading). It looks like you’re not using Posts, only Pages – I had the same problem on a WordPress.com blog and the way I “resolved” it was by making up a fake Post and setting that as the Posts page. I have no idea why that worked or what causes the problem though.
When I tried this trick, I noticed that my “Posts” drop down listed Pages not posts. Eh?
From webmaster world:
<?php if (is_single() && !have_posts()) { header("HTTP/1.0 404 not Found"); } ?>Did not work for me either.
I think it has to do with the index.php file in the theme Im using. Dont want to spend to much time unless its something else.
Anyone else?
Forum: Plugins
In reply to: Category parent as nav link?i guess i was working late and didn’t read the codex correctly, here is the tag for future readers (6=category id):
<?php
wp_list_categories(‘include=6&title_li=0’); ?>