Darrell Schauss
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My Account Doesn't Exist But I Can't Create It Because It Does…If there is corruption in your account then WordPress.com support will have to fix it. I would send a message to them using their support form they provide as last resort to Documentation and Forums. I wouldnt be surprised if there was corruption because of the space in user name.
Forum: Fixing WordPress
In reply to: Show authors in sidebar with info and pictureMake sure you replace all single quotes and double quotes with plain quotes ‘ and “. As copy paste from the blog they are fancy/curly quotes that dont copy correctly.
Forum: Fixing WordPress
In reply to: Website dissapears on reloadAre you using any cache plugins? Tried disabling or reseting/clearing cache from those plugins if using?
Have you tried visiting site while not logged into admin. I can refresh and visit posts fine.
It am using NoScript that disables javascript items by default in Firefox. When I allow the wibiya stuff thats when I start getting directed to 404s when visiting pages I used to be able to see.
Forum: Fixing WordPress
In reply to: [Plugin: Google XML Sitemaps] How to Disallow sub-directory?Then create a real robots.txt file in root and manually put in the Sitemap information and turn off the XML Sitemap option for using vitual.
You should also be aware of any other plugins you are using that edit virtual robots and manually put in those items. Also the Settings -> Privacy “Private, allow regular users, block bots” option uses virtual and should be turned off. Otherwise you would putDisallow: /to block all manually.User-agent:* Disallow: /directory/ Sitemap: http://www.yoursite.com/sitemap.xmlForum: Fixing WordPress
In reply to: My Account Doesn't Exist But I Can't Create It Because It Does…Post in here instead anyways.
Forum: Fixing WordPress
In reply to: "False" comment on every postThe count on the amount of comments might be messed up. Try opening the post for editing them hit save. Then try visiting the comments section in admin and clicking around.
This usually fixes things for me and resets post counts and auto tag plugins. So maybe it will work for comments too.
Forum: Fixing WordPress
In reply to: My own editable in-theme fieldsThis helped me. You can create custom Theme Options that will appear under Appearance menu.
http://forthelose.org/how-to-create-a-theme-options-page-for-your-wordpress-theme
The big piece of code in Step Two is not much to worry about when using it. It just provides a base framework for displaying different input box styles so your custom admin menu isn’t ugly.
Forum: Fixing WordPress
In reply to: How to change the website logo in browser?Look in your current theme header it may show a
link rel="shortcut icon". Older browsers it used to be favicon would load from root. But you can place it anywhere now. So either in root as I showed or replace the favicon in your theme folder that is currently linked to.Forum: Fixing WordPress
In reply to: .htaccess not found so I can't use permalinksIn Filezilla try Server > Force showing hidden files. Then reconnect and/or hit refresh a few times to see if the .htaccess shows up in the public root of site files.
Forum: Fixing WordPress
In reply to: How to change the website logo in browser?Make your logo look best you can gif at 16×16 then upload here will convert to .ico file. It can be transparent too.
http://www.favicon.cc/Place favicon.ico file into root of site and into
<head>
<link href="/favicon.ico" rel="icon" type="image/x-icon">Forum: Fixing WordPress
In reply to: CSS help […] ?????When viewing a full blog post it uses single.php template or you need to make one.
http://toyakankarate.com.au/blog/2010/07/test-2/When viewing a full page it uses page.php template or you need to make one.
http://toyakankarate.com.au/blog/our-dojo/It doesn’t look like you have single.php or page.php. You can copy index.php to make those two files then change the code so it shows full
<?php the_content(); ?>and not the “Read full article” text.Forum: Fixing WordPress
In reply to: changing header link…The blog site name on this page http://www.shopbardot.com/blog/ needs to point to the main domain?
Look in
header.phpfor<h1><a accesskey="h" href="<?php blog_info('url'); ?>"> BARDOT.</a></h1>change:
<h1><a accesskey="h" href="http://www.shopbardot.com/"> BARDOT.</a></h1>Forum: Fixing WordPress
In reply to: Please help me format table cell widthsI dont like tables but…
The table is 655w. The two image columns will be 120w each because of the graphics all being 120w. So 655 – 120 – 120 = 415. Two more columns left to use the 415 of space. 415 / 2 = 207.5. So give each column of text 200 or 205px width.
<table width="655"> <tbody> <tr> <td width="120"> <img > </td> <td width="200"> text </td> <td width="120"> <img > </td> <td width="200"> text </td> </tr> .....Only need to apply it to the first row, rest follows. I would convert what I’ve shown into css by given class to the TDs and referencing them in style.css
Align all the text images to the top. This is good for css to apply to all tables like this.
table td {vertical-align:top;}CSSified
table td {vertical-align:top;} table#services{width:655px;} table#services td.graphic{width:120px;} table#services td.text{width:200px;}<table id="services"> <tbody> <tr> <td class="graphic"> <img > </td> <td class="text"> text </td> <td class="graphic"> <img > </td> <td class="text"> text </td> </tr> .....Forum: Fixing WordPress
In reply to: is this a virusProbably. I is probably referencing bad stuff in the database stored in siteurlpath option.
http://wordpress.org/support/topic/siteurlpath-needed-in-wp_options?replies=3Yea it probably would be easier so you dont have to fiddle with prefixes and edit sql files and such. Will make things safer from writing over eah other as you build.