vomers
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 does not showI had the same issue. I just created a new page. It seems that any existing page will not display the contact form. Not sure why, but creating a new page resolved my issue. I hope that helps.
Thanks,
JeffForum: Fixing WordPress
In reply to: Can some one help me real quick?you must have got this working as it is scrolling just fine in I.E. 6 for me. Page looks like the 3 screen shot with a couple of more items added at the bottom.
Forum: Fixing WordPress
In reply to: PHP Include/Database ErrorThis article might help. Mainly it states that the location of your socket file might not be in a standard location.
Hope this helps.
Forum: Fixing WordPress
In reply to: Adding new functions, general_template.php pageThe function is set up to allow for multiple sidebar configurations.
just call the function with the name of your sidebar
<?php get_sidebar(name); ?>For example if I wanted do add a sidebar on the right side I would
create the sidebar file and name the file sidebar-right.phpI could name it sidebar-blue.php and still have it show up on the right side it is just the name used to locate the file that displays the sidebar.
then just call the function
<?php get_sidebar(right); ?>and it will use the sidebar-right.php
file for the sidebar
I hope that helps.
Forum: Fixing WordPress
In reply to: Need Help Asap…Internal Server Error 500Typically this is caused by an error in the code. You most likely made a change that the server cannot understand. Look closely at any files you modified recently. Things to look for are new functions or calls to functions that you recently added. Unfortunately, there are just too many things that can cause this and with out any code to look at it will be hard to say.
A good rule of thumb is to make a copy of your file(s) then modify the copy so you always have a back up of a working file. So you can just upload the working file(s) if you make a change that causes a server error.