iand
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme released: AC-NucleusLooks fine in both Safari2 and Firefox (Mac). Mind if I link to your theme? – I have a right-handed version of it here
Forum: Fixing WordPress
In reply to: Install a Favicon in Word PressIt should work with your brower. I can see it ok so maybe you need to clear your cache.
Forum: Fixing WordPress
In reply to: Install a Favicon in Word PressI see a lipstick mark? as a favicon at
marialua.com/(using safari2), or is the problem at a different site?Forum: Fixing WordPress
In reply to: breaking apart entriesSee here on how to edit your quicktags file to reinstate it:
http://wordpress.org/support/topic/33405Forum: Everything else WordPress
In reply to: What Track Links’ Update Times option do?You can also go to
/wp-admin/options.phpand change it there. There are lots of other things there too so be carefull..Forum: Fixing WordPress
In reply to: Get rid of the spamTry these:
http://codex.wordpress.org/Plugins/Spam_Tools
My recommendations (in conjunction):
Bad Behavior
Spam Karma 2
Referrer KarmaForum: Fixing WordPress
In reply to: Category Name whithout link !I think
<?php the_category_rss(); ?>will do the job.Forum: Installing WordPress
In reply to: Multiple blogs 1 MySQL database?For each install you will need to change the table_prefix in the wp-config file. See ‘single database’ here:
http://codex.wordpress.org/Installing_Multiple_BlogsForum: Fixing WordPress
In reply to: Firefox Search PluginNice one Podz,
For Mac users, the files go in
/Applications/Firefox.app/Contents/MacOS/searchplugins
(you will need to ctrl+click Firefox.app and select ‘show package contents’)Forum: Fixing WordPress
In reply to: wordpress control panel gone crazyHave you got the same problem as here:
http://wordpress.org/support/topic/38242 ?Forum: Fixing WordPress
In reply to: Posts by mail put line breaks in the postHave you got the mail format set as rich text or plain text? Try using the other one?
Forum: Fixing WordPress
In reply to: Category: Pictures are not shownIf you still need this, you have:
<div class="entry">
<?php the_excerpt() ?>
</div>
try
<div class="entry">instead
<?php the_content() ?>
</div>Forum: Fixing WordPress
In reply to: Category: Pictures are not shownI should think whatever page template is being used for the categories (archive.php I would guess) is using the_excerpt, rather than the_content. You could change that or track down the excerpt reloaded plugin which allows images.
Forum: Plugins
In reply to: Recent Posts Plugin questionI think the ‘-2’ type thing was on the to be done list, maybe it will be in the next release of the plugin.
Forum: Plugins
In reply to: Recent Posts Plugin questionEither in the template tag or the fuction itself, enter all the category IDs except the one(s) that you don’t want to use.
i.e I have$categories = '1 2 4 5'if you have five and want to exclude cat3.