iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS w/MultiplySafari2 and Bloglines both automatically pick up the feed for me.
Forum: Plugins
In reply to: the_excerpt ReloadedYep, I took out the div that wraps the permalink:
I changed line 82 (ish) from$excerpt .= "<div class=\"more-link\"> <a href=\"". get_permalink() . "#more-$id\">$more_link_text</a></div>";
to$excerpt .= "<a href=\"". get_permalink() . "#more-$id\">$more_link_text</a>";
I guess you could swap the div for a span instead.Forum: Fixing WordPress
In reply to: Important Security Information – UpdatedPodz, I think you have zipped the wrong wp-settings.php file – it has references to ‘capabilities’ which I think is something to do with 1.6. The raw version seems to work ok.
Forum: Themes and Templates
In reply to: What are they using to do this…Looks like the divs bit might be created thus:
<div class="entry <?php the_category(); ?>" id="post-<?php the_ID(); ?>">
<div class="entryContent">
and then the styling is done via images in the css file.Forum: Plugins
In reply to: Limit posts on front page‘perpage’ or ‘custom query string’ should turn up what you are looking for.
Forum: Fixing WordPress
In reply to: Alternative Start PageYes, home.php is only called for your starting page. Index.php, single.php etc.. will still be used in order of preference as described on the Template Hierarchy codex page.
Forum: Fixing WordPress
In reply to: Alternative Start PageYou could try using home.php, which will be loaded as your front page in preference if it exists. As a starting point rename a copy of index.php and hack it as you want. For putting your posts where you want,
get_postsorquery_postsmay be the way to go.
http://codex.wordpress.org/Template_Hierarchy
http://www.chrisjdavis.org/2005/06/13/secrets-pt-3/Forum: Fixing WordPress
In reply to: Is this a plug in – shaded box for quotesIf you delete the width declaration, the box should size to fit (you will probably need some extra padding round your images though as otherwise your rounded box will touch it.
Forum: Fixing WordPress
In reply to: Creating Multiple UsersIf you are logged in as admin you can create new users through
users > authors and users.
Then promote/demote them to the user level that gives them the level 0f access that you want (probably level 2). Full details on what each user level allows can be found here:
http://codex.wordpress.org/User_LevelsForum: Fixing WordPress
In reply to: Incoming Links ProblemA bit here:
http://wordpress.org/support/topic/40222 sections of the feed are dated 01/01/1970, so something is wrong there.Forum: Themes and Templates
In reply to: Error ?Sorry, stuffed the link:
http://guff.szub.net/the-excerpt-reloadedForum: Themes and Templates
In reply to: Error ?It seems it is requiring the excerpt reloaded plugin to work. If you have that plugin in your folder, activate it. If you don’t you can download it from here. Alternatively, edit your theme index.php file and replace
the_excerpt_reloaded()withthe_excerpt().Forum: Requests and Feedback
In reply to: The future of AJAX on WordPressThe only answer to that question is ‘when it is ready’. Since it is still pre-alpha, it is not going to be for a while…
Forum: Fixing WordPress
In reply to: Should my Incoming Links go to non-existent pages on my server?Pretty sure – The cosmos rss feed has posted dates as 01/01/1970. I checked out some other feeds at random and they show the same, so it looks like technorati is the cause.
Forum: Fixing WordPress
In reply to: Should my Incoming Links go to non-existent pages on my server?The links are legit. this is the current technorati rss feed my dashboard is parsing, it looks like the
<link>1120357970</link>bits are causing the problem.