greencode
Forum Replies Created
-
Nope, nothing unusual. All other plugins work perfectly okay and so did this before I upgraded to the latest version?!
The jayne_site is the name of the database and the zfw4638_ is used instead of wp_
Yes, zfW4638_blc_filters does exist in the DB
Great, just tested the new release and it works perfectly.
Anybody else having this issue?
Forum: Plugins
In reply to: [Plugin: postTabs] Permalink urlI know it’s been a while since I last mentioned this but is there any way of changing this?
It seems to have something to do with the ‘fs=1’ that gets inserted into the url. When you remove this then it shows perfectly okay??
Forum: Plugins
In reply to: [Ultimate Security Check] [Plugin: Ultimate Security Check] BSMy thoughts exactly. At the very least it should help you and tell you what to do in order to get A’s across the board. Some of the stuff it’s come back with I’ve no idea what I’m supposed to do in order to fix.
Forum: Fixing WordPress
In reply to: Where have my categories gone?!Thanks for this – worked perfectly.
Forum: Fixing WordPress
In reply to: get_posts and custom field questionThis has since been resolved in the following post: http://wordpress.org/support/topic/425472
Forum: Fixing WordPress
In reply to: Pass custom field value to get_posts queryYAY, Thank you so much for your help with this – just tried again and it works perfectly. A great end to a frustrating weekend 😉
Forum: Fixing WordPress
In reply to: Pass custom field value to get_posts queryThanks for helping here – much appreciated. I now have the following code but nothing is being displayed:
<ul> <?php $key = get_post_meta($post->ID, 'custom-field-name', true); $key = explode(',', $key); function trim_value(&$value) { $value = (int)trim($value); } array_walk($key, 'trim_value'); $myposts = get_posts(array('post__in' => array($key), 'posts_per_page' => -1)); foreach($myposts as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>Forum: Fixing WordPress
In reply to: get_posts and custom field questionUmm, actually I’m not sure that does work. If I add more than one post id in the custom field i.e. 26,3,589,8 – it will only display the first one and not all posts.
Forum: Fixing WordPress
In reply to: get_posts and custom field questionAh ha, I’ve done it! Here’s the code should anyone else require it:
<ul> <?php $key = get_post_meta($post->ID, 'custom-field-name', true); global $post; $myposts = get_posts(array('post__in' => array($key))); foreach($myposts as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>Forum: Fixing WordPress
In reply to: get_posts and custom field questionHi, Sorry I don’t think I explained clearly enough. I don’t want each post marked with “featured-posts” in the custom field to appear on the page.
Basically if you could write the code then what I would want is this:
$myposts = get_posts(array('post__in' => array(<?php echo get_post_meta($post->ID, 'custom-field-name', true); ?>)));I know you can’t write it like that but I’m looking for the content of my custom field to be brought into the array.
Forum: Plugins
In reply to: [Plugin: Register Plus] Password always “Too short”Umm, unfortunately still not working for me even though I’ve replaced the code mentioned about. The strength meter just doesn’t do anything.