willgoldstone
Forum Replies Created
-
Forum: Plugins
In reply to: Can’t get PHPEnkoder to work.Michael, If I want to just use this to encode an email thats stored in a custom field, can I use what is written above –
<?php $email= (get_post_meta($post->ID, 'email', true)); ?> <?php echo enkode_mailto("$email", "$email"); ?>
Doesn’t seem to work for me. I just get the actual address.. am I wrong to expect something different. I tried simple mail encoder but this doesnt work with custom field values. Thanks in advance ??
Forum: Alpha/Beta/RC
In reply to: Image Sizing Radio Buttons Greyed outSo the fact that I was running 2.6.3 before the beta and am running 2.6 on various other instances of wordpress and don’t encounter this issue using the same test images is irrelevant? seems.. a bit unlikely?
Thanks for trying to help i’m just not sure where this leaves me or whether what you’re saying there is right – although the fact no one else seems to have this issue could mean its just me!
any other thoughts anyone?
Forum: Alpha/Beta/RC
In reply to: Image Sizing Radio Buttons Greyed outHi all,
still getting nightly releases, still no solution to this, is anyone else having this issue? it seems i’m the only one! Is everyone able to upload images and select a size? could anyone post a screenshot so I know if its my server or not?
Cheers
Will
Forum: Alpha/Beta/RC
In reply to: Image Sizing Radio Buttons Greyed outI tried realllly large image – over 3000 x 2000, how does the math effect it? can it simply not parse the resizing so falls over? im testing with pics that ive posted in WP 2.3 onwards btw.
Forum: Alpha/Beta/RC
In reply to: Image Sizing Radio Buttons Greyed outOk scratch that I just signed up and got the nightly release – still can’t choose thumb, medium or large. curses.
Forum: Alpha/Beta/RC
In reply to: Image Sizing Radio Buttons Greyed outBut you can get to the other two, so thats some progress. Is beta 2 still the latest? I havent seen info on a newer release yet – how do you get the nightly release?
Forum: Alpha/Beta/RC
In reply to: Image Sizing Radio Buttons Greyed outIts not the flash part of it, its the bit below, so the image goes up fine its the part beneath alignment, where it says ‘Thumbnail’ , ‘Medium’ ‘Large’ ‘Full Size’ – that part of the form is html based, I even double checked this by switching to ‘Browser uploader’.
So its not a flash issue, cheers for the reply though.
Forum: Alpha/Beta/RC
In reply to: Image Sizing Radio Buttons Greyed outI’ve tried this with several different sized images and on 4 different browsers – FF mac, safari Mac, FF pc and IE7 PC. Same result.. surprised it seems to be only me..
Forum: Plugins
In reply to: [Plugin: AdServe] 2.5 supported?Ignore me I am an idiot it works fine i just let the ads run out of credits.. what a plum. eek.
Just to confirm this plugin WORKS FINE IN 2.6! yay!
Forum: Plugins
In reply to: Adserve no longer works in v.2.6, thoughts?Ignore me I am an idiot it works fine i just let the ads run out of credits.. what a plum. eek.
Forum: Plugins
In reply to: [Plugin: AdServe] 2.5 supported?Seems broken in 2.6, help?!
Forum: Fixing WordPress
In reply to: Make a Role which is only allowed to write to 1 category?Good save! sorry yeah, too many shorthand names in my head, cheers man good work ??
Forum: Fixing WordPress
In reply to: List Authors, but not certain roles.Hi all – i’ve now realised i’ll probably have to edit one of the includes to get this feature – a file called author-template.php.
on line 448 you’ll see
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users " . ($exclude_admin ? "WHERE user_login <> 'admin' " : '') . "ORDER BY display_name");
But I want to get rid of other types of users by excluding not simply the admin, but ‘public’ user types also. I’ve tried altering that line to this –
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users " . ($exclude_admin ? "WHERE user_login <> 'admin' AND 'public " : '') . "ORDER BY display_name");
and I also tried this –
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users " . ($exclude_admin ? "WHERE user_login <> 'public' " : '') . "ORDER BY display_name");
and this –
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users " . ($exclude_admin ? "WHERE user_login == 'public' " : '') . "ORDER BY display_name");
None of which has worked so far. HELP!
Will
Forum: Fixing WordPress
In reply to: Make a Role which is only allowed to write to 1 category?Hi guys, If anyone has same issue as me I ended up using the links2categories 2 plugin, found in the wp plugins directory here. It allows you to grant access to post writing based on user level, so I set my user level for all categories except public to 5 for example, and then let the public users write to public if they are level 2.
works a treat.