j09
Forum Replies Created
-
Forum: Networking WordPress
In reply to: multilanguage site using a 3rd level domain: small SEO tip?Just off the top of my head…
Google does not care so much about “de” or “Deutsch” as a subdomain.
while it’s not a big factor….they tend to put some emphasis on the tld of the domain for locale.
What this means is that “somewebsite.NL” would theoretically have some advantage over somewebsite.COM in google NL….although only by very little and if all else is equal.
From an SEO point of view, short is always better.
You might also want to set your preferred address to http://yourwebsite.com instead of http://www.yourwebsite.com
One more thing I would like to mention is that you should let google know that all your pages…not matter what language they are…. are under the same umbrella of your main domain.
Use canonical tags
Forum: Fixing WordPress
In reply to: Can’t seem to center widget title?Glad it worked.
I could be wrong but you can try this for the social icons:
.sfmsb-clearfix {
text-align: center;
}
Forum: Fixing WordPress
In reply to: Loading page is too slowI don’t know about the admin pages, but there is a lot of js and css files in the render path.
Browsers will want to download all the css files and parse all the js files before the page finishes rendering.
In total the page has
close to 70 separate requests, Which is a lot- This reply was modified 9 years, 6 months ago by j09.
Forum: Fixing WordPress
In reply to: Can’t seem to center widget title?I am pretty sure that has everything to do with how the different page templates are set up.
Just my two cents…
You can verify by creating a new “test page”
First select “full-page” template…then check your logo…
Then change the template on the same page into anything other than “full-page”
If it shrinks…you have your answer.
Forum: Fixing WordPress
In reply to: add Javascript in a pageIf I understand your inquiry correctly, you need to add a script to a single page.
Meaning, you want it to only load on that particular page and not on the rest of the pages. If so, consider using this plugin:
This Plugin will give you a small box at the bottom of the page editor that you can use to add things to that page’s header.
Mind you, loading scripts in the header is not very SEO friendly unless you async the scripts.
—————————————————————————————-
Just in case I understood wrong and you actually want the script to load in the body of the page,
Then add the script text between these two tags on your page
<script type="text/javascript"> "Your Script Stuff Goes Here" </script>- This reply was modified 9 years, 6 months ago by j09.