lawtai
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lost Categories when writinghmm, not sure if this would actually make a difference, but what user level are you trying to post with? if you log in with your admin account can you see the categories then? if so, then just increase your user level for your account.
Forum: Themes and Templates
In reply to: Static pages that keep the themeBy static pages, I’m sure you’re talking about the Pages function in 1.5. Those aren’t technically “static” but act in the same way. They work based off the template page.php which is located in your themes folder. So if you want your Pages to look like the rest of your blog, just edit the pages.php file to resemble your index.php file.
Forum: Fixing WordPress
In reply to: font size of User profilesyou mean within your admin section? i’m pretty sure any styling done for that is with your wp-admin.css file in your wp-admin folder.
Forum: Fixing WordPress
In reply to: 1.5: /?tegory%/%postname%.php dont worklook a few threads lower.
Forum: Fixing WordPress
In reply to: Permalinks and Commentsyou don’t need it, but I believe it’s code to allow trackbacks for your blog.
Forum: Plugins
In reply to: Warn if title post is blank?haha but isn’t it a lot easier for you to just go back and edit the title/slug name than to create a plugin for this?
Forum: Fixing WordPress
In reply to: Upgraded now unable to comment…@iddapidda your comments seem to work when i tested it. although name/e-mail weren’t required.
Forum: Fixing WordPress
In reply to: Getting 404s whenever clicking “category” and “archive” linksheh, well seeing how that part is “over your head” that’s probably what you need to do. just use an ftp program and for a program like filezilla, just set the file attributes.
Forum: Fixing WordPress
In reply to: Category permalinksdoes it work without the /%category%/ tag? sometimes permalinks can be finnicky and only work with a certain structure.
Forum: Fixing WordPress
In reply to: Getting 404s whenever clicking “category” and “archive” linksmore info would be helfpul, but did you check to see if your .htaccess file is cmod to atleast 666
Forum: Fixing WordPress
In reply to: Permalinks and Commentstry adding this:
<?php comments_template(); ?>
to your loop. probably under the trackback call?
Forum: Plugins
In reply to: Static Front Page Plugin not working???Don’t you need to create a template page home.php and not a slug name home for the plugin to work correctly?
Forum: Everything else WordPress
In reply to: blog page linkum, so you want your blog to be located at https://alfheim.info instead of https://alfheim.info/blog?
Either reinstall WP into your root directory instead of a folder, or follow the instructions here:
https://www.ads-software.com/docs/installation/different-address/
Forum: Requests and Feedback
In reply to: “Special” pages for ongoing topics.actually, it wouldnt’ be that hard to do.
take a look here:
https://codex.www.ads-software.com/Template_Tags/wp_list_cats
you’ll want to do something like this in your sidebar.php:
Topics of interest
< ul>
<?php wp_list_cats(‘exclude=1,2,4,5’); ?>
</ ul>
and just exclude all but the ones you want to show. you can find the category number in your manage category page.Forum: Plugins
In reply to: Timesince wrong time?heh i got similar errors when I tried to use the time since, where it’d show as being posted 1 year ago or something like that. never figured out what was causing it though as I stopped using the plugin.