WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change Post Time to Get Text if left BlankThis post time/date has a lot more functionality then just displaying the time/date so I would recommend leaving that part alone.
What I would do is just create a separate heading or text within the post where you can just put your text “TBC” in it.
Forum: Fixing WordPress
In reply to: updated and now get 404 on all category pagesInstead of adding stuff directly to .htaccess file you might want to search through the plugins that will help prevent spam that you don’t need to mess with the .htaccess file to do so.
Forum: Fixing WordPress
In reply to: Lost password, forgot email accountForum: Fixing WordPress
In reply to: Lost password, forgot email accountThese forums are for self hosted WP installations. If you are using the free ones you should ask for help at http://en.support.wordpress.com/
Forum: Fixing WordPress
In reply to: updated and now get 404 on all category pagesCopy all that and save that in a text document (just to save it for your copy) and replace it with
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressYou have a lot of stuff I am not familiar with in there so the best thing to do is return it back to default to see if it works. If it does then something extra that you have in there is messing it up.
Forum: Fixing WordPress
In reply to: Restored database but web not fully workingDid you fix it because I see all the pages are loading?
Forum: Fixing WordPress
In reply to: updated and now get 404 on all category pagesDid you verify that your .htaccess file in the root folder is still there and contains what it needs to?
Forum: Fixing WordPress
In reply to: Home page showing full post instead of an excerptI would try…
Appearance > Editor > Select content.php on right side.
Find
<div class="entry-content"> <?php if($post->post_excerpt == ''){ the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'wplook' ) );Change the_content to the_excerpt and save. There might be an easier way if the theme had theme settings to do this, not sure.
But I would try this to see if it works.
Forum: Fixing WordPress
In reply to: WordPress Editor Deleting UnderlineMaybe your CSS is overriding it. Any chance to get a link to the page and tell me what word is supposed to be underlined?
Forum: Fixing WordPress
In reply to: How To Create an Affiliate Page for My Affiliates?If you are new to this then I wouldn’t try to do it yourself from scratch.
Do a search for wordpress affiliate program plugins and find one that will work for what you are trying to accomplish.
Forum: Fixing WordPress
In reply to: Previewed a Theme and Now Home Page GONEYou might just need to settings -> reading and set the home page as a page if that is how you had it before.
Did you have the home page as a single page or the blog posts?
Forum: Fixing WordPress
In reply to: Website Title Not Displaying CorrectlyOpen style.css and find
#header { height: 152px; overflow: hidden; }Add more to the height. Try 200 and refresh to see what you get.
Forum: Fixing WordPress
In reply to: Remove Header Image from a Static Home PageDepending on how you got it setup find the class for the header image and do something like
{ .home .classofwhatyouwanttoremove { display: none; }I dont see a header image in the demo or I would be able to help more.
Forum: Fixing WordPress
In reply to: Migrating site to new host, missing all blog response postsDid you say all comments are in your dashboard? So the problem is just no comments are showing up on your site?
Forum: Fixing WordPress
In reply to: Migrating site to new host, missing all blog response postsI would find one of your comments and copy some of the text.
Open the .xml file which is the output and do a search to see if it is in there. This way you know your comments are at least making it out.