hallsey
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What’s wrong with my post page?Dunno what to tell you. I have IE 6 under Win2k and your site looks fine.
Forum: Fixing WordPress
In reply to: Changing the Page ID Order in Admin Manage PagesOne thing that DOESN’T work is to add “
ORDER BY $wpdb->posts.ID DESC
” to the query at line 20 of edit_pages.php. That is the query because, if I introduce a syntax error, WP complains when displaying the list of pages.I think it may have something to do with the page_rows() function, but that’s as far as I looked.
Forum: Fixing WordPress
In reply to: Why won’t my Links Image URI show up?Oh, I gotcha! Here’s what you may need to do. Check to see that Show Images is checked for the link category itself (Links | Link Categories).
If not, just Edit and check the box. The Edit button is way to the right.
Forum: Fixing WordPress
In reply to: Why won’t my Links Image URI show up?Okay, I’m up way past my bedtime and can’t type straight.
It’s https://www.clicketyhome.com
Hope you find a solution!
Forum: Fixing WordPress
In reply to: Why won’t my Links Image URI show up?Heh heh, well, that didn’t work very well. I guess you can’t embed images here.
Anyways, your picture seems to display fine when I embed it here https://wwww.clicketyhome.com
Forum: Fixing WordPress
In reply to: Why won’t my Links Image URI show up?Does it look like this in your blog? <img src=””>
If you enter
<img src="https://www.gamerentalguide.com/blog/wp-content/themes/default/images/four.gif">
does it not display like this? <img src=”https://www.gamerentalguide.com/blog/wp-content/themes/default/images/four.gif”>(I may not be understanding the question?)
Forum: Fixing WordPress
In reply to: Problem with links to old pagesMaybe a permalink issue? I don’t know but maybe you need to rewrite .htaccess?
For what it’s worth, the non-permalink way of accessing page 2 works fine:
Forum: Fixing WordPress
In reply to: Moving wordpress from one host to anotherCoincidentally, I just saw this in another post.
Forum: Fixing WordPress
In reply to: Line Spacing in posts…help needed..Try using the code for non-breaking space, like this:
<br>
<br>For greater spacing,
<p>
<p>I believe the standards frown upon contrived spacing like that, but… [shrug]
Forum: Installing WordPress
In reply to: Link error! Where I can find » ?Look in the WP control panel, under Options | General. You probably need to change the URIs there. Check also Options | Miscellaneous to make sure the upload directory is set correctly.
I hope that helps. Nice looking site, though I don’t speak German. ??
Forum: Themes and Templates
In reply to: How to change “Pages” title to another name in Default themeFrom the admin panel, go to Links | Link Categories, and then click on the Edit button (to the far right) of the Pages link category.
Forum: Fixing WordPress
In reply to: Internet Explorer — a disasterLooks okay on IE 6
Forum: Installing WordPress
In reply to: Installation sets fileupload_url incorrectly (?)I know. It’s only an issue for me because I’m trying to setup WP for some people who will then distribute it amongst themselves. I’m trying to make it as turnkey as possible because these folks are the type who, if you say move the mouse, they pick the mouse up and move it! ??
And I still don’t understand why this line doesn’t do what it’s supposed to:
add_option('fileupload_url', get_option('siteurl') . '/wp-content');
I program in other languages (just starting with PHP), and that line appears to me to concatenate the contents of the option ‘siteurl’ plus the string ‘/wp-content’
Now, the option ‘siteurl’ has a value, yet the option ‘fileupload_url’ winds up with just ‘/wp-content’
Forum: Fixing WordPress
In reply to: links to different pagesCheck your Apache httpd.conf file, which should be in the Apache/conf folder. Look for the section below and make sure it has index.php in addition to index.html.
<IfModule mod_dir.c>
DirectoryIndex index.html index.php
</IfModule>
Basically, you’re telling it that when you don’t specify a webpage, that it should assume and look for index.html or index.php.
I think that’s the solution anyway.
Forum: Installing WordPress
In reply to: border around image how to?Oh, btw, the class stays in your style.css file.