asarosenberg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Shortcuts or code links???That’s because you have only styled h1 tags within .entry-content. There is no .entry-content in the second page.
Forum: Fixing WordPress
In reply to: Links Deleted, Now Images don't Show on postsThe links in “Links” section have nothing to do with images in your blog. Your images have disappeared for some other reason. Check Media library to make sure that your images exist. If they do, readd them in your code with the button “Add media” in the post/page edit view.
Forum: Fixing WordPress
In reply to: WordPress is removing my links after I edit a pageThe visual editor can be tricky. I’ve had similar issues myself and therefore only use the text editor nowadays. It’s stripping your code out for some reason. The only thing I can suggest is to try to search on the forums for people with similar problems. Sorry I don’t have a solution for you.
Forum: Fixing WordPress
In reply to: Manual meta tags or plugin?Theoretically, yes, but I can’t tell you exactly how Google processes your code. The meta tag needs to go between the head tags
<head> <title>My great site</title> <meta name="description" content="This is a site of greatness." /> </head>
Sometimes Google can take a few days to update. You can ask them to re-index your site via Google Webmaster tools then the changes may show up sooner.
Forum: Installing WordPress
In reply to: Error message using Network SolutionsProbably the host is wrong then. Check this out.
Forum: Fixing WordPress
In reply to: WordPress is removing my links after I edit a pageIf you try the text editor and find that the problem disappears then you know it’s the visual editor that is causing it. That’s why its worth testing.
Forum: Fixing WordPress
In reply to: Manual meta tags or plugin?Your theme hopefully has a header.php template file somewhere. If you put your meta tag in there it will show up on all your pages. You don’t need a plugin for it if you are somewhat familiar with HTML.
Forum: Fixing WordPress
In reply to: Custom post type for gallery as Attachment PageYou can try flushing the rewrite rules.
Forum: Fixing WordPress
In reply to: WordPress is removing my links after I edit a pageI don’t know why but you can try using “Text” instead of “Visual” mode when editing and see if that solves it. It’s a little tab you select at the top right of the content editing box.
Forum: Fixing WordPress
In reply to: Matching sidebar length to post lengthIf the content of your posts is text which is similarly formatted in all posts you could use php function strlen to get the length of the content and use that to estimate how many widgets you need. Example
if ( strlen(the_content()) < 200 ) { // One widget } elseif ( strlen(the_content()) < 400 ){ // Two widgets } else { // All widgets }