jetshack
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “Comment” function not working at allok… then the next thing that I would try is to copy in the comment code from a known good index.php file.
Forum: Plugins
In reply to: Post Headlines on a non WordPress pageForum: Fixing WordPress
In reply to: “Comment” function not working at alltry replacing your comments.php and comments-popup.php files with files from a different theme just to see if it’ll work. If it does then you know the problem is within those files.
If it doesn’t work then it’s something inside the call.
maybe.
Forum: Installing WordPress
In reply to: Static Front Page pluginhttp://www.semiologic.com/software/static-front/
reading down the page some
“WordPress 2.0 compatibility
The “Blog” page feature does not work with WP 2.0.”does that help?
Forum: Fixing WordPress
In reply to: Password Protect A Single Pagethis isn’t perfect… but… you can change the cookie timeout by
go to
wp-includes/pluggable.php
find the line which looks something likeif ( $remember )
$expire = time() + 31536000;
else
$expire = 0;change the expire time from 31536000 (which equals 365 days in seconds) to the desired ammount of seconds
that’s going to change the timeout for your cookies sitewide… not just for that page.
Forum: Fixing WordPress
In reply to: view bloggo to the admin section click on the options tab
check the Blog address (URL):
Forum: Everything else WordPress
In reply to: Validation errors caused by YouTube codelink to site?
Forum: Themes and Templates
In reply to: CSS Pro needednot sure what your question is… to me it looks like the two are fairly similar… you’ll need to edit the css file in either your theme folder of your site folder to match up with the other…
Forum: Fixing WordPress
In reply to: “Comment” function not working at alldo you have your options set to allow comments and if so do you have a call to the comments in your page.php (or index.php) file?
Forum: Themes and Templates
In reply to: Cannot use my own themego to the admin menu then the presentation subtab and select your theme…
surely it’s not that easy of a fix is it?
Forum: Themes and Templates
In reply to: Sidebar stopsyou’ve put the background image into your body callout (also I looked at your 1×875 img and didn’t see anything…) and then set the “main” container indide the body div…
try putting the background iamge into the main div.
Forum: Fixing WordPress
In reply to: Can not do anything over than postdo you have ftp access? check the permissions on your folders… http://codex.wordpress.org/Changing_File_Permissions
Forum: Fixing WordPress
In reply to: Separate sidebar from main page?looks like you’re on the right track…
(sorry didn’t get back sooner… dont’ check in on weekends.)
Forum: Everything else WordPress
In reply to: How do I structure this site?you could have something similar to
example.com/spells/magic-missile
by changing the permalink structure.
I’d suspect you’d want these two tags…
%category% %postname%Forum: Fixing WordPress
In reply to: HELP! plz. My sidebar is missing (only appears on homepage)my bet is that you have a file called page.php in your theme folder which doesn’t make a call to the sidebar… you could delete that file and then it would use the index.php file as the template.