Hi everyone
Can someone explain to me within Meta Tags how you can use the "user defined" box
thanks & regards
Martin...
Page Properties - Meta Tags
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
- BaconFries
-
- Posts: 5936
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Page Properties - Meta Tags
It means what is says, that you the user can add your own meta tags that aren't already generated by the program.Can someone explain to me within Meta Tags how you can use the "user defined" box
See the following examples below, what these do is to tell the users browser not to cache the content of the page/site so each visit to the page is fresh and not calling old content.
Code: Select all
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
Re: Page Properties - Meta Tags
BF - silly question, how does the expiry tag affect cache? Can this be used instead to ensure fresh content is loaded every time the page is visited? And how does this affect page speed (load times) and seo that are constantly at war with each other?
The Website Guy - MN
Small Business Web Design
Small Business Web Design
- BaconFries
-
- Posts: 5936
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Page Properties - Meta Tags
Maybe this will help
The advantage of using expires 0 is as mentioned prior the user will always get fresh content if for talking sake you have updated the page. As for SEO there should be no effect as Google will still crawl and index your site/pages as normal just as if you have or haven't used them.
By setting it to 0 you are telling the browser to check for fresh content each visit.how does the expiry tag affect cache?
Yes see previous answer.Can this be used instead to ensure fresh content is loaded every time the page is visited?
By using any of them it can effect load times. Lets say you use no cache what you are then telling the browser and your PC is to not to save any information about the page. This then means that on the next visit the browser has nothing to compare with on your PC's cache so will need to download again.And how does this affect page speed (load times) and seo that are constantly at war with each other?
The advantage of using expires 0 is as mentioned prior the user will always get fresh content if for talking sake you have updated the page. As for SEO there should be no effect as Google will still crawl and index your site/pages as normal just as if you have or haven't used them.