Darrell Schauss
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why did half my page just shift to the left?Your html comments are broken. The problem is around this area, if you remove the
<!--it all recenters but causes other problems. You should go over all your HTML comments above this section to make sure they are properly opened and closed.<!-- <div id="content" class="widecolumn"> <div class="text"><!-->Another way to avoid this problem is for example you’re trying to comment out the footer do this instead.
<div id="footer" style="display:none;">Forum: Fixing WordPress
In reply to: Right sidebar only showing one widget……..These too tags are missing the closing
><a title="Security for your family" href="http://midwestsecuritylaminations.com/security-films"<a title="See our Products" href="http://midwestsecuritylaminations.com/products"If you do a View Source in Firefox you will see they are bold red because they are broken.
Forum: Fixing WordPress
In reply to: main body of website is blank; sidebar shows contentMaybe try XHTML Transitional instead of Strict. When in IE8 if I turn on compatibility view the content disappears like you say.
Tell the client to try unchecking…
Tools > Compatibility ViewForum: Fixing WordPress
In reply to: Logging problemEdit: Oops wrong post..
http://codex.wordpress.org/Function_Reference/get_bloginfo
get_bloginfo('template_directory');Forum: Fixing WordPress
In reply to: How To: Show the main domain like on DIGGPHP parse_url() function.
http://php.net/manual/en/function.parse-url.php
Returns:Array ( [scheme] => http [host] => hostname [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor )I’m hoping this is your issue. It sounds a little different. Your webhost has a virtual directory you access for stats that doesn’t actually exist in your site folders?
When that happens WordPress htaccess rules look for directories/files, if they don’t exist it tries to load the WP page. They fail as existing because they aren’t really in your folder.Try putting this before your WordPress rule in htaccess. This will cause access to /weblog to avoid the wordpress system.
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^/weblog/(.*)$ RewriteRule ^.*$ - [L] </IfModule> #here is the default... # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressFor letting me view the /stats on Dreamhost I have to over ride like this.. You can keep repeating that line with the OR to override what you need.
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^/stats/(.*)$ [OR] RewriteCond %{REQUEST_URI} ^/failed_auth.html$ RewriteRule ^.*$ - [L] </IfModule>Forum: Fixing WordPress
In reply to: Posts not loading in Internet Explorer but show fine in FirefoxYou are missing the closing </object> on the audio player.
Forum: Fixing WordPress
In reply to: Site Migration Url IssuesWordPress uses full URLs in images and such in posts so they are accessible in RSS feeds. You could export the posts table from database, open in Programmers Notepad or some or text editor, find replace the URL. Empty the table and reimport it.
Forum: Fixing WordPress
In reply to: index.htm to index.php in root directory onlyThe WordPress permalinks htaccess first looks if rhe URL access is a directory, then file, that actually exists on the server. If not will display the WordPress page it matches or 404. People directly accessing index.html or htm will get a 404.
Forum: Fixing WordPress
In reply to: Display: Second level of a defined categorywp_list_cats is depreciated
http://codex.wordpress.org/Function_Reference/wp_list_catswp_list_categories is the replacement
http://codex.wordpress.org/Template_Tags/wp_list_categoriesForum: Fixing WordPress
In reply to: problem with Permalink & Google SEOAll in One SEO shows canonical URLs which tell google your preferred URL for the page content that might have multiple URLs.
Forum: Fixing WordPress
In reply to: Duplicate ContentNo. WordPress will redirect to the permalink.
Forum: Fixing WordPress
In reply to: Hide linksTry the Exclude Pages plugin to choose what you don’t want in menus.
http://wordpress.org/extend/plugins/exclude-pages/Forum: Your WordPress
In reply to: Pushing the Limitstddewey.com is difficult to navigate the top buttons. If Im scanning left to right the word pops up for the item and covers the next one so i can’t hover to the next menu item.