iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments not working in 1.5 or 2.0What have you got as your permalink structure? Your archive links look a lttle off too so it might a place to start.
Forum: Themes and Templates
In reply to: paragraphs not appearing on one themeShould think it is the same issue as here:
http://wordpress.org/support/topic/58895?replies=2Forum: Themes and Templates
In reply to: Images not showing upThey can go there, for your path use
img src="<?php bloginfo'(stylesheet_directory'); ?>/images/yourimage.xxxForum: Plugins
In reply to: Using Split Posts With More TagTry
<?php if(is_single()) {
the_content(__('(more...)'));
} else {
the_excerpt();
} ?>
instead.the_excerptdoes not have any parameters:
Template_Tags/the_content
Template_Tags/the_excerptAlso,
the_contentshould default to(more...), so your orignal code should work fine.Forum: Everything else WordPress
In reply to: Photoblog?Looks like you can get the photoblox source here and integrate it into a regular post should you wish too.
Forum: Themes and Templates
In reply to: Category Name – Clear Text<?php the_category_rss(); ?>should see you right.
Full list of Template_tags here.Forum: Themes and Templates
In reply to: Are you a css guru, help!![Self-edited]
Forum: Themes and Templates
In reply to: Can someone create this theme for me?First run at it can be seen here (leaf from the themeswitcher).
Comments welcome. Still needs a lot of work to the underpinning, so currently no download nor timeline.
Oh, and I haven’t even thought of validation yet…
Forum: Themes and Templates
In reply to: Problem with Theme displaying on new site.I think there are a few fixes in that thread and links. Hardcoding should work, you can always back up everything and see if any of them work.
Forum: Themes and Templates
In reply to: Problem with Theme displaying on new site.View source:
link rel="stylesheet" href="http://best4& #215;4xfar.com/
WP is converting 4×4 to 4 ‘times’ 4. This has come up before and I thought it had been fixed.Maybe a reappearance of this bug:
http://wordpress.org/support/topic/34748Forum: Themes and Templates
In reply to: Can someone create this theme for me?I took a crack at it at the weekend (since the original author had given me permission previously). Still needs some work but I will put up my progress so far when I get back from work tonight.
Forum: Plugins
In reply to: “Title=” mod requestOr, for a prompt (the same as for the link):
http://wordpress.org/support/topic/7756?replies=7Note the line
edButtons[i].tagStart = '< a href=""'<br" />should read
edButtons[i].tagStart = '< a href=""'Mod/Podz – Any chance this can be edited in the other thread?
Forum: Themes and Templates
In reply to: Can someone create this theme for me?It was done to some extent here Unfortunately I don’t think it was released but it might be worth e-mailing the site owner to see if they would.
(Site is in Spanish but translates ok in google).
Forum: Fixing WordPress
In reply to: Upload location 2.0With 2.0 you can’t. I think in 2.0.1 it is being brought back. Until then this plugin will give you 1.5.2-style control:
http://www.ilfilosofo.com/blog/old-style-upload/Forum: Themes and Templates
In reply to: category colourI have no idea if this will work, but maybe something like:
<div class="<?php the_category_rss();?>">
Filed under: <?php the category() ;?>
</div>
And define your styles to the css as appropriate.I think this will definately go horribly wrong if you posts are in multiple categories.