Manuel Schmalstieg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to limit character on titleGreat code indeed!
@bobinder, if you want to keep this title as a link, you would place this:
<a href="<?php the_permalink(); ?>">
before the code given by Texet, and you would close the link by placing
</a>
at the end.Forum: Fixing WordPress
In reply to: No RSS – XML parsing errorI’m bumping into the same error.
I hunted for blank lines in my theme’s php files, but no result.
The strange thing is that those two feeds:
/feed/atom/
/feed/rss/
are working fine, the error occurs only in the following:
https://ms-studio.net/feed/As i don’t want to do any patches that will be overriden by the next WP update, i’m leaving it as is… but if someone wants to investigate i’m ready to testify.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] CSS handle for Submit button@takayukister : thank you so much! this works perfectly.
actually i was hoping for such an option, but wasn’t able to guess the appropriate syntax.
Forum: Plugins
In reply to: Thematic All in One SEO duplicate Headers?To prevent the Thematic framework from producing the description tag, you simply edit the
header.php
file, and comment out the linethematic_show_description();
(on line 8), by adding//
before:
//thematic_show_description();
If you wanted to fine-tune the header functions of Thematic, you would find them in this file:
thematic/library/extensions/header-extensions.php
.Forum: Plugins
In reply to: can these plugins slow down my blog?Regarding the “wp-supercache”, this will actually make your blog load faster for most readers, since the content will be pulled from the static cache, and not from a dynamic database.
Regarding the other plugins, I don’t know, I think “seo pack” and “robots meta” simply add some lines into the page header, so that shouldn’t have much impact.
Also you may want to keep an eye on the size of the plugin scripts: if you have 5 or more active plugins and each is adding 20kb of code to the first load, then this will impact the loading time of your blog, at least for low-bandwidth users.
Forum: Plugins
In reply to: passing a variable from Post to Functions.phpHa, writing this message obviously had a therapeutic effect !!
I realize that the following does work:
bdw_get_images($post->ID);
I wrongly assumed that this would give me the current post page, but no, since we’re outside of the main Loop, it passes exactly the ID I want….
Yippy-Yaeeeh!!