mystifier
Forum Replies Created
-
If I set ‘Send Notification to User’, I don’t get an error – the user email gets sent (if use WordPress details is set) but I still don’t get a Notification.
(The User email has a Results link which creates an error but I don’t want to use this feature anyway).
Hi Gyzmo,
You have to define a contact form.
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] General feature requestsIt would be very cool if logic could be applied between sections based on score to allow simple ‘flowcharting’
Score: Total score for section
SectionA: Section to goto if score >Score
SectionB: Section to goto if score <=ScoreMany thanks for making it available.
Thanks Codeeasily,
That has changed since my post; it used to be the same as the free skins with ambiguous SL, FS and PGC buttons.
Very nice plug-in, so few galleries seem to work without a hitch.
Forum: Requests and Feedback
In reply to: Request: Hide Posts in Child CategoriesIn the end, I figured out the field name change but in my original plug-in. This has been updated for 3.1+ by the author and is a very elegant solution:
http://guff.szub.net/2007/11/30/kinderlose/
Simple but essential!
Forum: Themes and Templates
In reply to: Hide Child Category PostsThe original plug-in, which has served fantastically for years, was very simply:
<?php function kinderlose_where($where) { if ( is_category() ) { global $wp_query; $where = preg_replace('/.term_id IN \(\'(.*)\'\)/', '.term_id IN (\'' . $wp_query->query_vars['cat'] . '\')', $where); } return $where; } add_filter('posts_where', 'kinderlose_where'); ?>Is there an obvious reason why this no longer works?
Forum: Themes and Templates
In reply to: Hide Child Category PostsNo joy… I think get_the_category() may need Post_ID as a parameter.
This is pretty crippling now so I may have to wind back to an early version where plug-ins work and stay there.
(Admin suffers in the same way. With several layers of sub-category, filter posts by category now returns many tens of pages because it includes every post from every child category – this was a dumb idea!).
Forum: Requests and Feedback
In reply to: Request: Hide Posts in Child CategoriesNothing there that helps I’m afraid but I am grateful for your continued help.
Plug-ins that hide child category posts have always been extremely popular and high download. This is because on websites where there are three or four levels of sub-category, it can soon result in many tens of posts showing unnecessarily at higher (hierarchical) levels. Without a plug-in, or better still, core fix, large websites ARE completely unusable.
I have seven or so different wordpress sites and I can’t think of one example where this is sensible core behaviour and not having an option to hide them at least is very poor.
The two websites given as examples receive in the order of 10000 pageviews/month, suffice to say that since I upgraded, I have received twenty-odd emails ‘informing’ me that the site navigation has stopped working.
I can’t fix it and it is enough reason to wind back to an old version where plug-ins work again.
Forum: Requests and Feedback
In reply to: Request: Hide Posts in Child CategoriesI don’t have $cat. I think it needs to be a call to get the current category, something like:
if(in_category(get_current_category())){(which doesn’t work but I can’t figure out what does).
Forum: Requests and Feedback
In reply to: Request: Hide Posts in Child CategoriesThat’s exactly what I have but it doesn’t work.
EXAMPLE: http://www.burtongrammar.co.uk
Select: School Staff >> (Life & Times Menu)
The ONLY post in this category is http://www.burtongrammar.co.uk/?p=134
That is ALL that showed before the update; now I get pages and pages of mis-ordered posts from all lower sub-categoriesSelect: Bond Street (Theme)
This has the mod applied. I get nothing in top-level menus (categories)!!I didn’t notice that things were so bad before I updated all websites, including the linked http://www.burton-on-trent.org.uk
My kids school website, which has four or five level deep sub-categories is a total mess with EVERY child-category showing at the top level.
WordPress might be okay for small blogs but suddenly, every website is completely unusable.
(Same applies to Admin, Filter Posts by Category is a total mess now again showing pages and pages of EVERY child-category).
Forum: Requests and Feedback
In reply to: Request: Hide Posts in Child CategoriesThanks Ipstenu, but I can remember trying this a long time ago.
Although my template Main Content area is very simply
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> .... <?php endwhile; ?>After the mod, top-level categories show empty.
I am not sure if this is a problem with my also using another category related plug-in: http://www.webspaceworks.com/resources/cat/wp-plugins/31/
Very frustrating!!
Forum: Requests and Feedback
In reply to: Request: Hide Posts in Child CategoriesWhen a category is selected, I only want posts to show for that category… not also posts for every single child (sub)category.
I have exhausted plug-ins so a hack would be greatly appreciated.
Forum: Requests and Feedback
In reply to: Request: Hide Posts in Child CategoriesI have used ‘Kinderlose’ for years (http://guff.szub.net/2007/11/30/kinderlose/)
This was a simple add_filter(‘posts_where’, ‘kinderlose_where’);And ‘Post Category Only’ worked fine (http://wordpress.org/extend/plugins/post-category-only/)
which added a class post_category_onlyNow neither have any effect and I can’t find one that works.
This is a big failing in wordpress; showing all child category posts on large sites is a crazy idea; being able to hide them as an option at least would be a massive God-sent.
Forum: Plugins
In reply to: [Post Category Only] Incompatible with 3.1.2This has no effect with v3.1.2
I hope if gets fixed, this plugs a big weakness in wordpress.
Forum: Fixing WordPress
In reply to: Changing Role CapabilityThanks Samuel B.
I found http://wordpress.org/extend/plugins/user-role-editor/ which looks great so far.