Mags
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Problems with upgrade to 1.2.1Thanks, but it didn’t work. In fact, it kept the part of the blog that DID work from working. I didn’t overwrite the plugin files when I uploaded the new files. (And I didn’t overwrite index.php, config.php or wp-layout.css.)
Forum: Your WordPress
In reply to: AustenBlog, powered by WordPressI couldn’t have done it without you, Root!
Seriously, his layouts are a great help and a great starting place for those less experienced with CSS positioning, like me.Forum: Your WordPress
In reply to: AustenBlog, powered by WordPressThanks, I found the problem with the comments. When I changed the domain, I had to change the rewrite rules for the permalinks. It’s working now.
Forum: Fixing WordPress
In reply to: Word-wrap trackback URL’sTo help the n00bs (of which I am one myself), I used the following code:
“><?php _e(‘TrackBack URI’); ?> (Right click on link and click on “Copy Shortcut”)
That will work for IE. I figure anyone using another browser probably knows what to do. ??
Thanks for the code, Beel. Long trackback links were messing up my layout.Forum: Fixing WordPress
In reply to: Posts in ascending order with today’s always firswhoops, that’s index.php?order=ASC&cat=1 for your code. Sorry.
Forum: Fixing WordPress
In reply to: Posts in ascending order with today’s always firsSean, I have a similiar situation on one of my blogs. I had the archives all in one category. In the index.php template, I replaced <?php wp_list_cats(); ?> with a hard-coded link to the category archive page. To get the archive page to display in ascending order, it should be “https://www.example.com/index.php&order=ASC&cat=1” (or whatever your category number is). The actual URI is “https://www.example.com/index.php&order=ASC&cat=1” but if you don’t use the & the page won’t validate. Then on the Options-Reading page, set Show the most recent: to 1 post. The most recent post will show on your index.php page and you have hard-coded a link to the category in ascending order. I guess if you have more than one category you can repeat that as required.
I hope that helps. And I hope all that code shows up okay in this post. ??Forum: Plugins
In reply to: Poll hack problemsI’m having the same problem, shadow. What did you do to fix it?
Forum: Plugins
In reply to: WordPress 1.2 One Click BackupFantastic script! Thank you!
Forum: Fixing WordPress
In reply to: Can I do this ?TechGnome, is it possible to use that separate-category look solution with multiple sub-blogs? Something like:
@import url( <?php
if ($cat == “1”) {
echo “dir/cat1/cat1.css”;
if ($cat == “2”) {
echo “dir/cat2/cat2.css”;
}else{
echo get_settings(‘siteurl’);
}
?>/wp-layout.css);
Is that the proper syntax? I’m very new to PHP but am learning quite a bit here. Thanks for all the help and tips. These forums are really useful.Forum: Fixing WordPress
In reply to: Password gone missing after upgrade2fargon, thanks from me as well. I had the same problem, followed your steps, and all is well.
Many thanks!Forum: Fixing WordPress
In reply to: I think I duplicated myself!Worked great. Thanks!