devilmaycry
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Saving HTML in a post errorI can also confirm that the Rich Text Editor will save large portions of HTML code incorrectly. As samboll mentioned, just revert back to the standard editor and you should be as right as rain.
Forum: Fixing WordPress
In reply to: Cannot view comments to my daily entriesWhat’s the URL of your blog? I’ll take a look.
Forum: Fixing WordPress
In reply to: Sidebar broken after I pasted some codeWhoa! I just checked it in Internet Explorer and now I see the problem. I really don’t know what to suggest if you are certain that uploading a new theme won’t help.
Forum: Fixing WordPress
In reply to: Sidebar broken after I pasted some codeNow that is strange, uploading a new theme really should negate the effects of your Site Meter code. Is it your posiesplace.net blog that is messed up? Because that one looks fine to me.
Forum: Installing WordPress
In reply to: wp 2.0.2 upgrade – specific files changed?Forum: Themes and Templates
In reply to: Sidebar customizationIt’s certainly possible, although I’m unsure if you can actually do this through the Admin CP. The only way I know how to do this is by manually adding the HTML code into your sidebar.php. Something like this:
[li]
[img src=”domain.com/category-header.jpeg” /]
[ul]
[li]Content goes here…[/li]
[/ul]
[/li](Obviously replace the “[ ]” with the appropriate “< >” characters).
But if you’re familar with HTML then you shouldn’t have a problem.
Forum: Fixing WordPress
In reply to: customise the search_base (prefix) ??Search for this in your nice-search.php file:
if ( is_search() && strpos($_SERVER[‘REQUEST_URI’], ‘/wp-admin/’) === false && strpos($_SERVER[‘REQUEST_URI’], ‘/search/’) === false ) {
wp_redirect(get_bloginfo(‘home’) . ‘/search/’ . str_replace(‘ ‘, ‘+’, str_replace(‘%20’, ‘+’, get_query_var(‘s’))));Replace with this:
if ( is_search() && strpos($_SERVER[‘REQUEST_URI’], ‘/wp-admin/’) === false && strpos($_SERVER[‘REQUEST_URI’], ‘suche/’) === false ) {
wp_redirect(get_bloginfo(‘home’) . ‘/suche/’ . str_replace(‘ ‘, ‘+’, str_replace(‘%20’, ‘+’, get_query_var(‘s’))));Forum: Installing WordPress
In reply to: Write Page won’t write.Hi dorif,
It may be a permalinks issue, go to your Admin CP > Options > Permalinks and set them to default. Just test this for me.
What’s the URL of your blog?
Forum: Fixing WordPress
In reply to: this my sound stupid but…That’s not a stupid question at all. 🙂
Yes, you will have to purchase your own domain in order to have your own ‘clean’ URL. I would recommend GoDaddy.com as an ideal place to shop for one.
Forum: Themes and Templates
In reply to: Footer Tag causing issuesTry running your homepage through the W3C XHTML validator, it will let you know if you have any missing tags in your template.
Edit: Nevermind Sam beat me to it. 😉
Forum: Fixing WordPress
In reply to: How do I keep out publicYou could password protect your public_html folder using a .htaccess file, obviously meaning only users that know the password could gain access to your blog. But I just installed a test wordpress blog under a different directory, for instance: domain/test/wp/ and tweak my templates from there. When I’m satisfied with a template I will move it to my primary blog and go from there.
Forum: Fixing WordPress
In reply to: Akismet and Comment BlacklistAs far as I’m aware it’s functioning fine with me, even with blacklisted comments. Are you using the latest version of WordPress?
Forum: Fixing WordPress
In reply to: Comments From EmailYou should be able to change that in your Admin CP, under Options > General > E-mail Address.
Forum: Fixing WordPress
In reply to: Unable to create pageWow, that does sound pretty bizarre. Which version of Internet Explorer are you using?
And although it’s probably not what you want to hear, but as a temporary fix you might want to consider switching to Firefox.
Forum: Fixing WordPress
In reply to: Source code not showingWhen you want to view the source code of a page in Internet Explorer just go to ‘View > View Source’.
In Firefox just press CTRL + U.