acebone
Forum Replies Created
-
Just to add to the confusion:
On WP 3.5.1 – my picture upload and video uploads works just fine, but links ending on numbers does not seem to work
Try this one
Forum: Networking WordPress
In reply to: Advise on best WP-network site setup strategy wantedYou couldn’t have answered with better timing – was just about to go with a hunch rather than a tip 🙂
(I was going to do subdomains, not because I guessed the right thing, but because I like the URLs better LOL)
Thnx 🙂
Forum: Hacks
In reply to: Modifying 'the_contents' before saving?Done!
Forum: Hacks
In reply to: Modifying 'the_contents' before saving?Thanks!!
Forum: Plugins
In reply to: [Role Scoper] How to hide Role Scoper menu from non-admins?I have the exact same question… How did you do it?
Forum: Plugins
In reply to: [Plugin: Custom Field Template] store Date ind DB as timestampif you get a warning using the code-examples – then use this for code #0
$value = get_post_meta( $_REQUEST['post'], $title, true); if ( $value ) $enforced_value = date('d/m/Y', (int)$value);It converts $value from string to integer before feeding it to the PHP date function – which means you won’t get a warning.
Actually use this even though you don’t get a warning – you system-conf might change one day, and all of a sudden the warning will be there