tuxxen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Meta tags – google doesn't find any information about my siteUnfortunately, that’s a bit like asking “how long is a piece of string?”. It varies from site to site. It may only takes days but could take a few weeks.
Alright i guess i expected something like that π
Thanks you for you’re post πForum: Fixing WordPress
In reply to: Meta tags – google doesn't find any information about my siteIt loads fine for me and your meta information is all there. You may need to wait for a while to allow Google to refresh its index of your site. Also bear in mind that Google ignore meta-keywords and focuses purely on your content.
How long does this normally take? can i take days or weeks? π
Oh and another thing, i have some errors on my site and they all come from plugins that i use, does this “down rate” my post? been trying to fix all errors but i’m just started to learn about it so it may take “a while” befor i start to fix them
Forum: Fixing WordPress
In reply to: Leave comment broken?There we go, i found the problem i think.
My single.php did not have <?php comments_template( ”, true ); ?>seems like the problem is solved =)
Thank you so much for you’re help! i have been trying to solve this for one day now and if there was not for you it would have take me weeks to find it π
Forum: Fixing WordPress
In reply to: Leave comment broken?I do not know what i have done and why i have created 4 pages that i dont even use for anything i tough i used one of them as my “main site” as index.php but i did not, so this problem should not have anything to do with my pages since those pages been “empty” there must be something els i have messed up.
i think it’s my default pages that doesn’t display the comment box anymore
Forum: Fixing WordPress
In reply to: Leave comment broken?Here the comment work:
http://www.tuxxen.com/faqWhen i go to edit a page i can see this:
Parent:
without parentMall:
Standardmall (“default page”)Was it this you meant?
Forum: Fixing WordPress
In reply to: Leave comment broken?I think the problem started when i created the new pages, i did it manually, i use child theme of twenty eleven that i have created.
My wordpress version is the latest i’m pretty sure i messed something up when i created the new pages.
Where exactly do you mean by edit? sorry I’m a bit tired and cant think right now but ill try π
Forum: Fixing WordPress
In reply to: Leave comment broken?yeah thats checked, however i have added new pages and used them i think the problem may be here somewhere
Forum: Fixing WordPress
In reply to: Leave comment broken?Sorry my bad checked the wrong file, yes <?php comments_template( ”, true ); ?> is in my page.php
Forum: Fixing WordPress
In reply to: Leave comment broken?Hey tuxxen,
Thanks! I like my name as well haha
For the comment issue,
can you log in your WordPress backend,
and go to Appearance > Editor.
Click “Page Template” in the right sidebar,
and find if you have<?php comments_template(); ?>
Seems like i dosent have it, here is what i got:
<div id=”content”>
<div class=”maincontentbox”>
<div class=”main_content_boxheader”>
<h3>Senaste nyheter</h3></div><?php if ( have_posts() ) : ?>
<?php twentyeleven_content_nav( ‘nav-above’ ); ?><?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?><?php get_template_part( ‘content’, get_post_format() ); ?>
<?php endwhile; ?>
<?php twentyeleven_content_nav( ‘nav-below’ ); ?>
<?php else : ?>
<article id=”post-0″ class=”post no-results not-found”>
<header class=”entry-header”>
<h1 class=”entry-title”><?php _e( ‘Nothing Found’, ‘twentyeleven’ ); ?></h1>
</header><!– .entry-header –><div class=”entry-content”>
<p><?php _e( ‘Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.’, ‘twentyeleven’ ); ?></p>
<?php get_search_form(); ?>
</div><!– .entry-content –>
</article><!– #post-0 –><?php endif; ?>
</div><!– #maincontentbox–>
Forum: Fixing WordPress
In reply to: Leave comment broken?Hi geeksfolder first off i need to tell you that i love you’re name π
here is one example where the comment area is not appearing:
http://www.tuxxen.com/introduktion-absolut-mete#respondSorry i may have been bit misleading on my first post, the comment are not appearing this is the main problem.
/tuxxen
Forum: Fixing WordPress
In reply to: Validation 27 errors – there is no attribute "placeholder"Forum: Fixing WordPress
In reply to: Validation 27 errors – there is no attribute "placeholder"Thank you so much Rev, Voodoo you have saved me lots and lots of hours, i will check this out tomorrow first thing i do.
Many thanks!
Forum: Fixing WordPress
In reply to: Validation 27 errors – there is no attribute "placeholder"http://www.w3schools.com/html5/att_a_rel.asp
category tag is not listed as an acceptable value for rel, which your theme (or maybe a plugin) seems to be inserting
rel=”category tag”>
tag is acceptable
This comes from my theme i believe because i disable all plugins when i validated the site, however i have started to set the plugins up again.
I have read the link you gave me, is there any way to fix this problem? otherwise i will soon have hundreds of error however how should i fix this since its the theme who do it? (i use twenty eleven theme)
Forum: Fixing WordPress
In reply to: Validation 27 errors – there is no attribute "placeholder"Sure, I can probably help you out a bit more too….
Most of the remaining errors you have are due to duplicate ID usage.
That’s a simple thing really.IDs can only be used once on a page, classes can be used multiple times.
so if you are going to use an element on a page more than once, it has to be a class, not an ID.
For example, the overall header is normally only used once on a page, same thing for a nav menu.
So nav id=”whatev” is cool, same with header id=”something”
But something like an article will be used over and over. That’s why 2011 is set up to use the post ID as the article ID, that way each post gets a unique ID, whereas the article class can be something like post, etc…. classes can be repeated
Cool thanks, i have now fixed all ID errors π
This error come up each time i make a new post:Line 112, Column 206: Bad value category tag for attribute rel on element a: Keyword category is not registered.
β¦nlΓ€gg i AllmΓ€n information” rel=”category tag”>AllmΓ€n information </span>
Syntax of link type valid for and <area>:
A whitespace-separated list of link types listed as allowed on and <area> in the HTML specification or listed as an allowed on and <area> on the Microformats wiki without duplicate keywords in the list. You can register link types on the Microformats wiki yourself.Forum: Fixing WordPress
In reply to: Validation 27 errors – there is no attribute "placeholder"You are using html5 markup, with XHTML 1.0 Transitional doctype
Placeholder, srticle, footer, etc are all html5
<!DOCTYPE html>
Would be the appropriate doctype if you are going to use html5 markup
Thank you so much! π