WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pages/Content Displays twiceYou need to go through your template files. It looks like after the footer it calls the content again.
Using http://pastebin.com/ can you post your index.php found in Appearance -> Editor then select that file on the right side?
Forum: Fixing WordPress
In reply to: Side by side HTML in sidebarTry
<div> <div class="alignleft">INSERT FIRST CODE HERE</div> <div class="alignleft">INSERT SECOND CODE HERE</div> </div>Forum: Fixing WordPress
In reply to: Deactivating ArchivingYour site isn’t loading for me.
If they are referencing a single page then the URL should never change and they should always be able to.
Can you explain the process a little different on what is going on? I am a little confused.
Forum: Fixing WordPress
In reply to: Header image link to homepageUse http://pastebin.com/ and give us your whole header.php file.
Forum: Fixing WordPress
In reply to: Parse errorWell this is going to get complicated then.
But here is info on http://codex.wordpress.org/FTP_Clients
Basically what you need to do is access your files on your server and edit that one file you changed to fix whatever error you introduced.
This is the only way to get your site back and running.
Forum: Fixing WordPress
In reply to: Parse errorIf you mess up functions.php you have to FTP in and edit the file through there. After you do that it will restore it back to normal.
Just try to undo the change you made. Refer back to the original file to get it right.
Forum: Fixing WordPress
In reply to: Unable to delete non-default link categoryAhh I misread.
Well what I would do is login to the database and delete it from there to see what happens. That probably isn’t the best way but that is just what I would try next.
Forum: Fixing WordPress
In reply to: Unable to delete non-default link categoryAs far as I know you can delete the default category.
What I would try is to rename that category to one of that you want to use. Then move all those links to that category.
That way the default category is a category you are using and you wouldnt have to delete it.
Forum: Fixing WordPress
In reply to: remove wp register/membershipWith that plugin disabled and that checkmark uncheck when you go to
yoursite.com/wp-login.php?action=registerwhat do you see?
Forum: Fixing WordPress
In reply to: show comments publicly (no login required)?There is no such Wordperss setting for viewing.
Viewing the comments is controlled by the theme. Why your theme is setup like that is unknown. Kind of crazy it works like that.
Forum: Fixing WordPress
In reply to: Unable to delete non-default link categoryWhere exactly are you talking about?
Forum: Fixing WordPress
In reply to: show comments publicly (no login required)?Since it is a paid theme you need to ask support through them since we dont have access to the theme files in order to help you.
Generally support for themes on here is only for the free themes when it comes to questions like this.
Forum: Fixing WordPress
In reply to: show comments publicly (no login required)?What theme are you using?
Forum: Themes and Templates
In reply to: Center page theme templateI recommend just searching through http://wordpress.org/extend/themes/ to find one similar to what you want.
Forum: Fixing WordPress
In reply to: Black shadow over the SUBMIT buttonIn your CSS you have
body, input, textarea { border-top: 10px solid #000000; font-size: 13px; line-height: 19px; }That border-top is what is causing it. It is cause a 10px border above every input and textarea.
If you wanted that just on the body then you need to remove it from here and put just in the body.