altacivil
Forum Replies Created
-
Forum: Your WordPress
In reply to: please review my siteI like the site… although when I click on “previous posts” at the bottom… I get a 404 error.
Forum: Fixing WordPress
In reply to: Is it possible to remove the ‘index.php’ from permalinks?I had that same problem of haveing index.php in front of all my permalinks… I found that when I created an .htaccess file (a brand new one… dont delete your other one) and placed it in the root directory for my wordpress install and enabled permalinks, it worked…
so… for me my wordpress install is in https://gpetzold.swifthost.net/wp so when I created my .htaccess file, I placed it in “public_html/wp” (not in the directory where your theme is).Hope that helps
Forum: Fixing WordPress
In reply to: query_posts() for showing only 1 categorywhat did you do to get it to work?? are your previous and next post links still working?? I am trying to do the same but cannot get my previous and next posts links to function properly… I am getting a 404 error… what did you do to get it to work?
Forum: Fixing WordPress
In reply to: Only list one category?ahh apparently I am just being a noob… it should say [a href=php stuff to call that one specific category]
Sorry for the numerous postings…
Forum: Fixing WordPress
In reply to: Only list one category?Forum: Fixing WordPress
In reply to: Only list one category?Yes, I understood that bit… I am aware of how to create a link… I suppose what I should have wrote was how do I call up just that one category? Would a link to it just be https://mysite.com/wp/categorynamegoeshere? Or is there a way to say ?
Thanks for the help so far!
Forum: Fixing WordPress
In reply to: Only list one category?that sounds like a great idea… only could you be a little more specific… maybe point me in a direction that would help me out a bit more? (ie. How would I do that?)
Forum: Fixing WordPress
In reply to: Problem when page content flows onto annother…I tried implementing this code:
<?php
$page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : ‘1’;
query_posts(‘cat=7&paged=$page’);
?>but it seems to have no effect… in fact nothing shows up… what am I supposed to be adding/changing?
Forum: Fixing WordPress
In reply to: query_posts in include certain category??Upon further inspection of my site… it appears this is not an issue with the inclusion of the posts but rather an issue with the “page” itself… will start a new thread with the appropriate subject…
Forum: Fixing WordPress
In reply to: Add login form to front pageAfter a very quick search I found this… hope it helps..
Forum: Fixing WordPress
In reply to: Add login form to front pageIt is possible, I have seen it mentioned here before. Sorry but I dont know how… it would involve making a form (similar to the search form) and relating loging variables to the fields…
Have you searched the database (codex) for other threads relating to this??
Forum: Fixing WordPress
In reply to: Problem with “php query_posts” please help..A big thanks to alpaoide!
That worked great for the case where i have it set to “set(‘cat’, ‘-7’)” but when I want to display ONLY the posts in category 7 (on a different page in my site) ie. “set(‘cat’, ‘7’)” i get an error 404 page when I try to view the “previous posts” page.
Any ideas?
Forum: Themes and Templates
In reply to: Color fadeout as done on this site.Thanks!
Forum: Requests and Feedback
In reply to: Please take a looklooks good!! I like the old-fashioned’ness of the colors.
Forum: Installing WordPress
In reply to: is_single in the header.php what it is?It is checking to see if the page being viewed is “single.php” the page that is used to display a single post. And if the page is “single” then it displays “Blog Archive” before the title of your blog…