James Olney
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cookie control – new EU lawsOk I tracked it down. It was a plugin – Cforms – I can only assume I thought I had deactivated and tested again or had assumed it wasn’t the culprit.
It installs a cookie even if it isn’t onscreen – let alone if it is actually used!
Forum: Plugins
In reply to: Cookies on WordPressHi
Sadly no. Neither are ecommerce enabled or fancy in any way which makes it more of a mystery. In many ways they are almost identical to other sites I have on the same server which don’t install cookies so I am at a loss.
All I really need to do is identify this cookie and detail it but because it is such a vague one I cant find anything useful ??
thanks for replying!
I have also noticed that it interferes with the standard excerpts elsewhere in the site – for some reason it forces them to show html.
I have deactivated your plugin for now.
Forum: Plugins
In reply to: [More Fields] More fields metas in query_postsI had the same problem and in the process was advised not to use query_posts as they can muck things up globally so use this instead (replace catid with whatever you have named your custom field and it will suck the ID number in:
<?php $my_query = new WP_Query(array( 'cat' => get_post_meta($post->ID, 'catid', true), 'posts_per_page' => 5, )); if ($my_query->have_posts()): ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> titles, content etc goes here <?php endwhile; ?> <?php endif; ?><?php wp_reset_query(); ?>
Forum: Plugins
In reply to: [Custom Post Template] [Plugin: Custom Post Template] No longer works for 3.1I disagree. Doesn’t work with 3.2 or 3.2.1.
Clean installation. No other plugins or potential conflicts. Running php5.x
installs ok but the pulldown option to choose your template on the post page doesn’t appear. I rely on this template ??
anyone run into this or found a solution?