WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New pages not displayingWithout fixing it you will need to keep it like that.
But it seems you have a permalink problem. First thing I’d try is deactivating all plugins then testing again.
Can check your .htaccess file to make sure it has the below in it
# 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 WordPressForum: Fixing WordPress
In reply to: New pages not displayingChange the permalinks back to default and test it.
Forum: Fixing WordPress
In reply to: Blank space between Menu and Body in ManifestIt is the sites description that is the cause. Either enter one or…
Add the below to your style.css
#site-description { display: none; }The find the below where it has -50 and change to 10.
#core-content { margin-top: 10px; }Forum: Fixing WordPress
In reply to: New password (from WP) won't work.Very odd that it won’t work even with the email for forgot password.
If you have access to your database I would do the below steps.
Forum: Fixing WordPress
In reply to: Difficulty limiting post excerptsGo in and edit your post and where you want it to cutoff put the below code.
<!--more-->There is also a button for that code in the HTML editor.
Forum: Fixing WordPress
In reply to: Difficulty limiting post excerptsAbove the excerpt code add this.
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?>Now go back in your post and on the right side set the Featured Image. What this code does is display whatever image is set as the Featured Image in the post.
Forum: Fixing WordPress
In reply to: Difficulty limiting post excerptsYes just change the word content to excerpt.
You will not see the image in the excerpt. They would need to click through to the actual page/post to see it.
Forum: Fixing WordPress
In reply to: New pages not displayingHow many different page names have you tried?
Asking because the only time I have seen this I tried to make a page with the exact same name as something in my media library and it gave me that error.
Forum: Fixing WordPress
In reply to: Difficulty limiting post excerptsThis is how I always do it.
Find
<?php the_content(); ?>change to
<?php the_excerpt(); ?>Forum: Fixing WordPress
In reply to: Difficulty limiting post excerptsWhat exactly are you trying to accomplish?
Forum: Fixing WordPress
In reply to: Difficulty limiting post excerptsI see a few ways that work on this thread.
Forum: Fixing WordPress
In reply to: Login IssuesI would deactivate that plugin manually via FTP.
Forum: Fixing WordPress
In reply to: How do I limit my search on post's title only?I don’t know your answer but why not just use a plugin that you can adjust the settings and do what you want it to do?
Forum: Fixing WordPress
In reply to: Side by side HTML in sidebarHere is what I show you have in there right now.
<div class="alignleft"> <iframe scrolling="no" div="" <="" style="width:120px;height:240px;" src="http://rcm-uk.amazon.co.uk/e/cm?t=carrotsandclaret.com-21&o=2&p=8&l=as1&asins=B001LWRHA2&ref=qf_sp_asin_til&fc1=000000&IS2=1<1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr"> </div>Put what I suggest in there then I can take a look to see what is wrong. Also your iframe code does not look correct. I would go back to Amazon and copy it again.
Forum: Fixing WordPress
In reply to: Classipress wordpress theme tweek helpYou need to ask for help through the theme developer since that is a paid template and have already been paid to support questions.
We typically only support the free themes found on this site.