Copyright

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
windsurfer
 
 
Posts: 181
Joined: Mon May 13, 2019 9:15 pm

Copyright

Post by windsurfer »

I am putting the copyright at the bottom of a page and in the setup it looks like this
http://prntscr.com/o3fk1s

But when it ends up on the page it looks like this. The date changes to 2018 and i can't seem to change that.
http://prntscr.com/o3fkx2
I used to have a photographic memory but i ran out of film !!!
User avatar
Pablo
 
Posts: 21508
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Copyright

Post by Pablo »

This is normal behavior. The workspace just displays a place holder. The date will be correct on the published page.
windsurfer
 
 
Posts: 181
Joined: Mon May 13, 2019 9:15 pm

Re: Copyright

Post by windsurfer »

So i put the copyright in the footer and moved the footer to the back and the notice to the front and it always disappears on the published site. It is in the page source. The z index is 21 and when i change it to 23 it shows up.

Code: Select all

<div id="wb_JavaScript1">
<div id="copyrightnotice"></div>
<script>
   var now = new Date();
   var startYear = "2005";
   var text =  "Copyright &copy; ";
   if (startYear != '')
   {
      text = text + startYear + "-";
   }
   text = text + now.getFullYear() + ", The Tree Hugger. All rights reserved.";
   var copyrightnotice = document.getElementById('copyrightnotice');
   copyrightnotice.innerHTML = text;
</script>


</div>
</div>
<div id="PageFooter1">
</div>
 
I used to have a photographic memory but i ran out of film !!!
User avatar
Pablo
 
Posts: 21508
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Copyright

Post by Pablo »

Maybe there is another script on the page that causes a conflict?
What is the URL of the page and where exactly do I need to look?
windsurfer
 
 
Posts: 181
Joined: Mon May 13, 2019 9:15 pm

Re: Copyright

Post by windsurfer »

https://test.wilstv.com/

I don't have all the pages responsive yet but on the home page at the very bottom is the footer and the copyright is hidden.
I used to have a photographic memory but i ran out of film !!!
User avatar
Pablo
 
Posts: 21508
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Copyright

Post by Pablo »

The copyright script is behind the page footer, to make it part of the page footer drag it inside of the container.
windsurfer
 
 
Posts: 181
Joined: Mon May 13, 2019 9:15 pm

Re: Copyright

Post by windsurfer »

Hi
I thought i did that but i made the container a hair bigger and it shows up now.
I used to have a photographic memory but i ran out of film !!!
Post Reply