3stripe
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin Hooks edit_form_advanced — Display above Save/Publish Buttons?I think you can do it with some sneaky javascript… not sure how save this is but:
<script language="JavaScript" type="text/javascript"><!--
var placement = document.getElementById("quicktags");
var includediv = document.getElementById("YOURDIVNAMEHERE");
var mozilla = document.getElementById&&!document.all;
if(mozilla)
placement.parentNode.appendChild(includediv);
else placement.parentElement.appendChild(includediv);
//--></script>Forum: Fixing WordPress
In reply to: making <! –more– > link to top of post pageSo I have to use a hack to do this? 🙁
It seems to be slightly different for WP2.0.3….
Change line 92 of template-functions-post.php to:
$output .= ' <a href="'. get_permalink() . "\">$more_link_text</a>";(I think… use with caution!)
Forum: Plugins
In reply to: Document management plugin (for PDFs etc)Ps… this is what I’ve got so far:
http://i107.photobucket.com/albums/m318/3stripe/wp_write_post_with_doc_link.jpg
Forum: Fixing WordPress
In reply to: thumbnail size+1 for an image management plugin 🙂
Forum: Plugins
In reply to: Document management plugin (for PDFs etc)Cool… on its way
Forum: Plugins
In reply to: Document management plugin (for PDFs etc)Not quite what I’m after – read my first post again!
Forum: Fixing WordPress
In reply to: A mess in capabilities, how to fix that?Phew. Thanks for this. Just locked myself out of Users as well!
Forum: Fixing WordPress
In reply to: Can I simplify the admin interface?D’oh. Just realised that Role Manager does this already!
Is there way to hide the post password, meta fields, and excerpts though?
Forum: Fixing WordPress
In reply to: Can I simplify the admin interface?If I wanted to write a plugin to hide particular areas of Admin (The ‘Links’ tabs for instance)… would it be hard?
Forum: Plugins
In reply to: Admin simplified pluginDoesn’t seem to work on WP2? Hmmm. I’d love if it could do… so many extra options that I’d like to hide 🙂
Forum: Plugins
In reply to: Document management plugin (for PDFs etc)kalico: i have this working fine… but not as a plugin – it’s hard coded into the write post pages.
if i can work out how to wrap it up as a plugin, we’re in business 🙂
Forum: Fixing WordPress
In reply to: wp_list_pages & custom classes for navigation menuNo-one seems to be reading this forum these days… a year ago this post would get a couple of answers at least…. anyone here ?!?!?!
Forum: Fixing WordPress
In reply to: Using template tags within PHP pagesIt’s really weird that bloginfo(‘url’) is outputted before everything else… kinda annoying in fact.
But thanks for the tip guys 🙂
Forum: Fixing WordPress
In reply to: wp_list_pages & custom classes for navigation menuWell, it looks like http://www.adsworth.info/wp-pagesnav is going to get me pretty close to where I need to be…
Forum: Fixing WordPress
In reply to: query_posts & multiple loops on my homepageAh-ha… if you have multiple loops but only one query_post, it will apply to all of your loops!
“The only way I have found to get around this is to make a new query before each loop.”
Thanks to http://obeattie.com/2006/05/08/query_posts-limitations/ for this tip…