shwaza
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Putting Something After <!–more–>Alright, thanks :). That was what I was going to do, but I figured there was a “cleaner” way to do it.
Thanks a lot 🙂
Forum: Fixing WordPress
In reply to: Category PermalinkAhh, thanks a lot!
Forum: Fixing WordPress
In reply to: Single Post Always Displays Same PostOh wait, sorry, I found out I was using using a pre-named variable and it was cancelling out its value. Thanks for helping me find it!
Forum: Fixing WordPress
In reply to: Single Post Always Displays Same PostAlright it works when I do that, however I’m not sure what I’ve done in my single.php file that could have caused that. Are there any basic things I could have disrupted to cause this?
Thanks by the way 🙂 At least I know it’s somewhere in that file.
Forum: Themes and Templates
In reply to: Get ID from category title?Oh wait, nevermind. I found out I had to convert it to an object and use cat_ID.
Forum: Themes and Templates
In reply to: Jumping down to comments doesnt workHow the system works is you link to #respond. When you add #(anything) to the end of a link it automatically makes the browser scroll to the element with the id that comes after the #. You need to have an element with the id ‘respond’ (no quotes). I did a quick look over your source and saw the div: <div class=”reply”>. You should change that to <div id=”respond” class=”reply”> and it should work.