The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

3 Pages V < 1 2 3 >  
Reply to this topicStart new topic
> HELP with W3C Validator
Christian J
post Feb 11 2019, 11:46 AM
Post #21


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



There are two TITLE elements, only one is allowed.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 11 2019, 12:28 PM
Post #22


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



You have two instances of TITLE. The validator complains about the second and redundant one. Where that one comes from... wacko.gif


CODE

<!DOCTYPE html>

<!--[if IE 7]><html class="ie ie7" lang="el"><![endif]-->
<!--[if IE 8]><html class="ie ie8" lang="el"><![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!--><html lang="el"><!--<![endif]-->

<head>

<link type="text/css" media="all" href="https://www.yourphysiopath.gr/wp-content/cache/autoptimize/css/autoptimize_365c6b81cd9cf8d3a27dc3e25a4b9a5e.css" rel="stylesheet" />
<link type="text/css" media="all" href="https://www.yourphysiopath.gr/wp-content/cache/autoptimize/css/autoptimize_365c6b81cd9cf8d3a27dc3e25a4b9a5e.css" rel="stylesheet" />

<title> - Φυσικοθεραπευτής Τερζόγλου Χαράλαμπος – YourPhysioPath</title>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"><link rel="profile" href="https://gmpg.org/xfn/11">
<meta name="format-detection" content="telephone=no"/>
<link rel="alternate" type="application/rss+xml" title="Φυσικοθεραπευτής Τερζόγλου Χαράλαμπος – YourPhysioPath" href="https://www.yourphysiopath.gr/feed/"/>
<link rel="alternate" type="application/atom+xml" title="Φυσικοθεραπευτής Τερζόγλου Χαράλαμπος – YourPhysioPath" href="https://www.yourphysiopath.gr/feed/atom/"/>


<title>Φυσικοθεραπευτής Τερζόγλου Χαράλαμπος – YourPhysioPath</title>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 11 2019, 12:35 PM
Post #23


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



These two errors I don't understand.
CODE

Error: Stray end tag head.

From line 1, column 7240; to line 1, column 7246

[endif]--></head><body


CODE
Error: Start tag body seen but an element of the same type was already open.

From line 1, column 7247; to line 1, column 7441

--></head><body data-rsssl=1 class="home page-template page-template-templates page-template-home page-template-templateshome-php page page-id-11 cookies-not-set inspiry-themes inspiry-medicalpress-theme">


I don't find any reason for those.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 11 2019, 12:42 PM
Post #24


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



I changed doctype and removed the XHTML slashes so I could validate with our validator. It doesn't complain about those last two errors.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 11 2019, 12:53 PM
Post #25


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



It's something in the embedded JavaScript that makes the validator think there's something amiss with </head> and <body> .
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 11 2019, 12:55 PM
Post #26


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



Sorry, Christian. I didn't see your reply about the duplicate TITLE. blush.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Feb 11 2019, 05:12 PM
Post #27


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



QUOTE(pandy @ Feb 11 2019, 06:35 PM) *

These two errors I don't understand.
CODE

Error: Stray end tag head.

From line 1, column 7240; to line 1, column 7246

[endif]--></head><body


CODE
Error: Start tag body seen but an element of the same type was already open.

From line 1, column 7247; to line 1, column 7441

--></head><body data-rsssl=1 class="home page-template page-template-templates page-template-home page-template-templateshome-php page page-id-11 cookies-not-set inspiry-themes inspiry-medicalpress-theme">


I don't find any reason for those.

There's a link and image in the HEAD section, where they 're not allowed (only in BODY):

CODE
<a href="https://kepa-anem.gr/wp-content/uploads/sites/2/2017/11/%CE%B1%CF%86%CE%AF%CF%83%CE%B5%CF%82%CE%BA%CE%B5%CE%B9%CE%BC%CE%B5%CE%BD%CE%BFAkiklosFLprin2018.pdf" target="_blank"><img style="float: right;" src="https://www.yourphysiopath.gr/wp-content/uploads/2018/12/orizontio1.jpg" width=450 height=400 alt="ΕΠΑνΕΚ 2014-2020"></a>

My guess is the above implies that the HEAD section has been ended and BODY has begun (keep in mind the start and end tags for HEAD and BODY are optional). Then when the validator sees the literal </head> and <body> tags it suddenly treats them as duplicates.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Feb 11 2019, 05:14 PM
Post #28


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



BTW the server for https://www.yourphysiopath.gr/ responds very slowly.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 11 2019, 05:28 PM
Post #29


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



Yes, very.

Ah, I didn't see that link. Odd though, when I removed the script blocks the errors went away.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Feb 12 2019, 05:49 AM
Post #30


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



I also should add that there are more validator errors showing up, after you fix the first ones. I don't know the quality of today's Wordpress HTML code, maybe some of it is not worth fixing all of it.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
temeter
post Feb 13 2019, 06:13 AM
Post #31


Newbie
*

Group: Members
Posts: 17
Joined: 7-February 19
Member No.: 26,819



Hello smile.gif

Any news? Did you saw the code of the website?

Thank you.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
temeter
post Feb 13 2019, 06:14 AM
Post #32


Newbie
*

Group: Members
Posts: 17
Joined: 7-February 19
Member No.: 26,819



Sorry I didn't show the page 2 smile.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
temeter
post Feb 13 2019, 06:23 AM
Post #33


Newbie
*

Group: Members
Posts: 17
Joined: 7-February 19
Member No.: 26,819



Hmm ok I see.

What do you propose to do? Because I do not have the knowledge to solve all these problems. Should I hire someone to make them? If I create an administrator account can any of you solve the problems? With the corresponding payment of course. Otherwise, is there anything I can do for myself to fix these problems?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 13 2019, 07:05 AM
Post #34


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



If you are going to pay for help it's probably better to get someone who is used to WordPress. And good at web standards. It might be hard to find one that are good at both though.

If the site works as it should, I would just correct what's easily corrected errors and leave the rest. If you find 10 WordPress sites and validate them, I bet you none of them will be without errors and most will have more than your site.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 13 2019, 07:27 AM
Post #35


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



Found this list by a WP lover of blogs that use WP. I did just a few, but those were full of errors.
https://www.wpexplorer.com/name-brands-use-wordpress/

Check a few of them for errors and I think you'll see what you are up against. There's WP itself, then there are third party templates that may add even more errors and in most cases probably do...
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
temeter
post Feb 13 2019, 09:37 AM
Post #36


Newbie
*

Group: Members
Posts: 17
Joined: 7-February 19
Member No.: 26,819



Ok Pandy I see wink.gif

Yes you are right, I understand fully and I think the same way too.
Ok then, I will think what I can do. If I find a good solution I will let you know.

Thank you a lot both of you for your help. Have a nice day smile.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 13 2019, 02:40 PM
Post #37


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



You too. And good luck. happy.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
temeter
post Feb 14 2019, 04:10 AM
Post #38


Newbie
*

Group: Members
Posts: 17
Joined: 7-February 19
Member No.: 26,819



Thank you smile.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
temeter
post Feb 28 2019, 09:18 AM
Post #39


Newbie
*

Group: Members
Posts: 17
Joined: 7-February 19
Member No.: 26,819



Hello my friends.

Finally the problems (errors) of the website resolved. I hired someone to fix them and everything ok now.

I want to thank you very much for your help here. I hope to be well smile.gif

Have a nice day!
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Feb 28 2019, 11:59 AM
Post #40


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



You are welcome. Sorry we couldn't help more. smile.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

3 Pages V < 1 2 3 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 24th April 2024 - 12:16 AM