Page Properties - Meta Tags

All WYSIWYG Web Builder support issues that are not covered in the forums below.
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
Post Reply
User avatar
MartinPorter
 
 
Posts: 58
Joined: Thu Jul 20, 2017 1:39 pm

Page Properties - Meta Tags

Post by MartinPorter »

Hi everyone

Can someone explain to me within Meta Tags how you can use the "user defined" box

thanks & regards
Martin...
User avatar
BaconFries
 
 
Posts: 5369
Joined: Thu Aug 16, 2007 7:32 pm

Re: Page Properties - Meta Tags

Post by BaconFries »

Can someone explain to me within Meta Tags how you can use the "user defined" box
It means what is says, that you the user can add your own meta tags that aren't already generated by the program.
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" />
There are a ton load more but only you can decide what is relevant to your needs...
User avatar
Rob
 
 
Posts: 191
Joined: Sun Jan 29, 2012 2:54 pm
Location: MN
Contact:

Re: Page Properties - Meta Tags

Post by Rob »

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
User avatar
BaconFries
 
 
Posts: 5369
Joined: Thu Aug 16, 2007 7:32 pm

Re: Page Properties - Meta Tags

Post by BaconFries »

Maybe this will help
how does the expiry tag affect cache?
By setting it to 0 you are telling the browser to check for fresh content each visit.
Can this be used instead to ensure fresh content is loaded every time the page is visited?
Yes see previous answer.
And how does this affect page speed (load times) and seo that are constantly at war with each other?
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.
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.
Post Reply