WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to create directoryI would go through http://codex.wordpress.org/Changing_File_Permissions
Then you need to go through your posts/template/pages ect and change your pictures to your new URL if you migrated the images over.
Forum: Fixing WordPress
In reply to: Ruined my Site?Hard to say without looking at it but…
Change your folder name of the theme to something else. Just rename it and that should force the default theme.
If that doesn’t work let me know.
Forum: Fixing WordPress
In reply to: Moving the read_more link.If it works on categories but not the homepage then you need to take the HTML layout on categories.php and match it up with the homepage template.
Forum: Fixing WordPress
In reply to: homepage "HOME" slug and permalinkIt wouldnt include the slug and I wouldnt want to for SEO purposes either.
Forum: Fixing WordPress
In reply to: Help! Post won't updateMaybe try something like http://wordpress.org/extend/plugins/better-delete-revision/
Only thing I can guess (if you go to screen options and select revisions) is you might have a revision that is save with a future date. How that would happen, I dont know.
But try running something like that plugin. Just beware it will clear all revisions for all your posts.
Forum: Fixing WordPress
In reply to: Help! Post won't updateGot a cache plugin installed? Deactivate it.
Try a different browser.
Forum: Fixing WordPress
In reply to: Help! Post won't updateDid you ever publish it? Preview and publish are different.
Make a post. Publish it.
See what your permalink is.
Delete post. Trash it.
Make the exact same post and it will use the same permalink.
Forum: Fixing WordPress
In reply to: Help! Post won't updateYou can if you empty the post from trash. Done it quite a few times for the same reason as you.
If your worried make a test post first, delete, trash, and try to get same permalink.
Forum: Fixing WordPress
In reply to: users see their own posts linkUsers meaning authors? Make an author.php template
Forum: Fixing WordPress
In reply to: Help! Post won't updateIf all you are worried about is the permalink then delete the post and make sure you empty the trash. Then you can get the exact same permalink again. So just make the post over.
Forum: Fixing WordPress
In reply to: Button only visible to registered userCan use something like
<?php if ( is_user_logged_in() ) { echo 'Show the button'; } else { echo 'Dont show the button'; } ?>Forum: Fixing WordPress
In reply to: close wp-adminThere’s a few plugins if you search for them. I havent personally tested this one but you can try.
Forum: Fixing WordPress
In reply to: Changing banner photos on my websiteLooks like the images are coming from the below plugin
http://wordpress.org/extend/plugins/coin-slider-4-wp/
So find Coin Slider option page in wp-admin.
Forum: Fixing WordPress
In reply to: Blog posts doubling upNot without seeing your website or the template file that is generating the page you’re looking at.
Forum: Fixing WordPress
In reply to: Header turns black after page finishes loading.wrapper { margin: auto; position: inherit; width: 1100px; z-index: 0; }Remove the position line.
So the z-index and position line only. Not the background.
I only checked on homepage so it might up inner pages. So test after you change it.