remi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: bloginfo(version) reports wrong versionI have the exact same problem.
$wp_version
equals"2.5.1"
in wp-admin/version.php but something must have overwritten it because when the template is displayed,$wp_version
equals"2.5"
!Forum: Plugins
In reply to: Submark – a new pluginVery interesting plugin indeed. Good job!
Forum: Requests and Feedback
In reply to: RSS files are emptyIgnore the post above. I fixed it with this.
Forum: Themes and Templates
In reply to: Pages: customizing the listYou can also edit the file “/wp-includes/template-functions-post.php” in which you look for a line that looks like this:
echo $indent . '<li class="' . $css_class . '"><a href="' . get_page_link($page_id) . '" title="' . wp_specialchars($title) . '">' . $title . '</a>';
and you replace it to:
echo $indent . '<li class="' . $css_class . '"><a href="' . get_page_link($page_id) . '" title="' . wp_specialchars($title) . '">» ; ' . $title . '</a>';
But to be more semantic (because the page’s name is not “?? My page”, it’s “My page”), you could juste make a custom bullet image (which would look like “??”) using
li.page_item {
list-style-image: url(images/raquo.gif);
}Forum: Your WordPress
In reply to: designedby.exomelThank you!
Yeah, it’s not because it’s a blog that it cannot be well designed ??
Forum: Fixing WordPress
In reply to: Easy RSS solution?You can try zFeeder.
Edit: Sorry, forget that. That’s not the thing you want.
Forum: Your WordPress
In reply to: moonrocket.ca relaunchedWell, that’s a theme based on Kubrick, it’s too obvious.
Forum: Your WordPress
In reply to: exomel.com v2.0There’s always a way to make WordPress like you want it to work ??
Forum: Fixing WordPress
In reply to: Add ID tag into the Links ManagerOpen /wp-includes/template-functions-category.php and look for “
<li>
“‘sForum: Your WordPress
In reply to: exomel.com v2.0A hack of my own.
Forum: Fixing WordPress
In reply to: /cgi-system in siteurl bugThanks a lot!!!
P.S. – As you can read in my post, I was able to change siteurl value by my-self ??
Forum: Your WordPress
In reply to: Binary Expressions – New SiteI like the yellow-orange-gray-black combination… but I am really not sure of the Matrix-like header. It just doen’t fit with the rest of the blog’s “feel”. Also, (if you’d ask me) I’d put the date text in a soft yellow instead of blue. But that’s just my opinion.
Overall: great blog!
Forum: Your WordPress
In reply to: exomel.comI didn’t understand the question very well. Thanks for your answer basketball ??
Forum: Themes and Templates
In reply to: CSS Colors won’t applyErr… I guess it should work with
.storycontent p {
color: #ff00ff;
}
instead of
.storycontent p {
#ff00ff;
}
no?Forum: Fixing WordPress
In reply to: Workable fixed width tag?<pre>
tag works well with fixed width text.but Workpress seems to escape them all along with the CODE tag.
What do you mean? It changes
<pre>
to??