iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Should my Incoming Links go to non-existent pages on my server?They shouldn’t. Mine started doing that a couple of days ago, so put it down to a glitch in the technorati feed. It looks like the links are coming in just as
<a href="random_number">.Forum: Fixing WordPress
In reply to: hierarchical commentsTry searching for ‘nested/threaded comments’. There was a hack around for 1.2 and I’m sure I’ve seen it done with 1.5, though I don’t know if it was every converted to a plugin.
Forum: Fixing WordPress
In reply to: Publishing “Page” as HomepageThere is no option to do this in the standard WP installtion. You could try Denis’ static front page plugin: http://www.semiologic.com/projects/static-front/
Forum: Plugins
In reply to: wp-photos vs. exhibitFirst result in a search for
get_currentuserinfo():
http://wordpress.org/support/topic/33129Forum: Fixing WordPress
In reply to: Localhost won’t send email for reset password?One way is to install phpmyadmin onto your machine aswell. You should then be able to access/edit your database through a nice interface. You could through terminal instead if you know what you are doing.
Forum: Fixing WordPress
In reply to: A podcast quicktagI assume this means we can be looking forward to the first podzcast soon then? 😉
Forum: Plugins
In reply to: Enabling comment editing by equal postersThe function
user_can_edit_postcan be found in includes/functions-post.php. It might be the place to look first.See this post for someone trying to do the oposite:
http://wordpress.org/support/topic/29221Backup first, comment changes, messing with core files is not recommended etc etc…
Forum: Fixing WordPress
In reply to: Posting images easilyThe ‘;’ is a bug from the early version of 1.5, suggest you upgrade to 1.5.1.3.
Forum: Fixing WordPress
In reply to: no login linkIf you are using 1.5+, use
<?php wp_loginout(); ?>and<?php wp_register(); ?>
A list of the template tags is hereForum: Fixing WordPress
In reply to: Stop WP From emailing users after they postoptions-discussion > E-mail me whenever:
Untick those?Forum: Plugins
In reply to: Changing the defualt user level from 0 to 2options-general > Anyone can register
and
options-writing > May publish articles
Should work.Forum: Fixing WordPress
In reply to: i forgot usernameThe default username is ‘admin’ – have you tried that?
Forum: Fixing WordPress
In reply to: errorSearching is the path to enlightenment.
Also see here.Forum: Plugins
In reply to: Rating PluginFor adding quicktags, see Podz’s guides: http://www.tamba2.org.uk/wordpress/quicktags/
You could make one quicktag to add something like
<div class="vote"><img src="pathtogrape1.jpg" alt="1 grape" title="horrible"></div>(I think that should work), then you could edit that code depending on what rating you want, OR, make a quicktag for each rating i.e:
<div class="vote"><img src="pathtogrape2.jpg" alt="2 grapes" title="bad"></div>
to
<div class="vote"><img src="pathtogrape5.jpg" alt="5 grapes" title="excellent"></div>
So you would end up with five quicktags in total. As to where to put the images, maybe in a subfolder of wherever you put your images normally? Wherever seems logical to you really.Forum: Fixing WordPress
In reply to: Configuring the upload functionThe stray ; was a bug in version 1.5.
Upgrading to the lastest version (1.5.1.3) fixes that, lots of other bugs and some security issues.