3stripe
Forum Replies Created
-
Forum: Plugins
In reply to: Be nice and help a newbie with php/mysqlThis is working great now for me, but I wonder is it possible to change the output result so that it lists the posts by date, with newest at the top?
I’m guessing it would be “ORDER BY post_date DESC”??
[update: yup!]
Forum: Fixing WordPress
In reply to: WP 1.5 : quicktags for SafariHas anyone had any success using this hack in conjunction with the Tiger Admin theme?
I still can’t see any Quicktage in Safari 1.3.1…
http://orderedlist.com/articles/wordpress-administration-design-tiger/
Forum: Fixing WordPress
In reply to: Multiple Category changeYou might be able to do this using a mySQL query on your database. However I’m not much of an expert on these thing so I can’t give you any more info than that I’m afraid!
Forum: Plugins
In reply to: Using ‘Get Custom Field Values’ in sidebarAbietto, I gave up on this I’m afraid, couldn’t even get any answers from the plugin author 🙁
Forum: Plugins
In reply to: Hack/plugin to adjust User Levels capabilities?Haha well I tried my best, maybe Smultron gave me the wrong line number. It worked for me anyhow, the fix is even easier!
(So guys, that shoulda been line 353, not 354)
Forum: Plugins
In reply to: Hack/plugin to adjust User Levels capabilities?Ok I worked out point 1, which means point 2 can be ignored 🙂
My hack to allow users of level ‘xx’ to edit any other user’s posts… use with caution…
Line 354 of functions-post.php:
Change this :
|| ($author_data->user_level >= 10) ) {To:
|| ($author_data->user_level >= xx) ) {Forum: Plugins
In reply to: Be nice and help a newbie with php/mysqlOk that makes sense, cheers for the info!
Forum: Plugins
In reply to: Be nice and help a newbie with php/mysqlCould you explain the difference in that code then… how does JOIN work?
Forum: Plugins
In reply to: Be nice and help a newbie with php/mysqlHey wow thank you so much 🙂
Worked first time!
Forum: Plugins
In reply to: Be nice and help a newbie with php/mysqlPs. I have tried removing ‘wp_post2cat.post_id=wp_postmeta.post_id’ – but when I do this, I get multiple instances of each story appearing in the list of headlines – so it seems to mess something up.
Forum: Plugins
In reply to: Restrict users to certain categoriesTry searching http://wp-plugins.net/ for ‘User’ 😉
(EDIT: And what Moshu said)
Forum: Plugins
In reply to: RSS feed into Flash .swfjosepo, XML-RPC looks great!
Forum: Plugins
In reply to: Hack/plugin to adjust User Levels capabilities?Thinking more about point 3:
You could write a plugin to find $user_level and then change the CSS for Level 5 users to hide the div containing the ‘Advanced’ options ????
This poses the problem that the ‘Advanced’ options div doesn’t have a unique id… another hack required!
Not sure if this would work as I’ve never done any mods like this…
Forum: Requests and Feedback
In reply to: Category InterfaceCool. So roughly when is 2.0 due… is there somewhere I can see how it’s progressing?
Forum: Plugins
In reply to: Meta field content in page listing?Jeremy, can’t help you with his myself, but there is a snippet of code at http://wordpress.org/support/topic/39478#post-222573 from Kafkaesqui which you might be able to tweak to suit your needs…
Good luck 😉
3stripe