

<script type="text/javascript">
  // Function for set the cookie for days
  function tekGdprSetCookie(cname, cvalue, exdays) { //create js cookie
    var d = new Date();
    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
    var expires = "expires=" + d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
  }
  function sendTheDatatandc()
  {
	var formId = document.getElementById('TandC_Data');
	if(document.querySelector('#t-and-c--checkbox:checked')!==null) {
    	var set = 2;
    	var postData = $('#TandC_Data').serialize()+'&gdpraccepttandc=submit';
    	var xhttp = new XMLHttpRequest();
    	xhttp.onreadystatechange = function() {
    	  if (this.readyState == 4 && this.status == 200) {
    	    set = this.responseText;
    	  }
    	};
    	xhttp.open("POST", "https://prophecyforum.com/bible-prophecy/mods/wpgdpr_g8zuDP/update.php", true);
    	xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    	xhttp.send(postData);
		tekGdprSetCookie('WP-GDPR-Compliance-tandc','1.0',3650);

		window.location='https://prophecyforum.com/bible-prophecy';	}
	else {
		alert("Please check the checkbox");
	}
  }
  // Hit the file update.php to work it without refresh with XMLHttp
  function gdrpSetCookie(name, cookieName) { //ajax and js cookie function call
    var set = 2;
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
      if (this.readyState == 4 && this.status == 200) {
        set = this.responseText;
      }
    };

    xhttp.open("POST", "https://prophecyforum.com/bible-prophecy/mods/wpgdpr_g8zuDP/update.php", true);
    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhttp.send(name);
  }

  // Function to check the cookie exist or not
  function getGdprCookieCookie(name) {
    var value = "; " + document.cookie;
    var parts = value.split("; " + name + "=");
    if (parts.length == 2) {
      return parts.pop().split(";").shift();
    } else {
      return null;
    }
  }
 // get cookie value
  function getCookie(cname) {
  let name = cname + "=";
  let decodedCookie = decodeURIComponent(document.cookie);
  let ca = decodedCookie.split(';');
  for(let i = 0; i <ca.length; i++) {
    let c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

</script>

	<script type="text/javascript">
  // Function for set the cookie for days
  function tekGdprSetCookie(cname, cvalue, exdays) { //create js cookie
    var d = new Date();
    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
    var expires = "expires=" + d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
  }
  function sendTheDatapp()
  {
	var formId = document.getElementById('privacyPolicyData');
	if(document.querySelector('#provicy-policy--checkbox:checked')!==null) {
		var set = 2;
		var postData = $('#privacyPolicyData').serialize()+'&gdpracceptpp=submit';
		var xhttp = new XMLHttpRequest();
		xhttp.onreadystatechange = function() {
			if (this.readyState == 4 && this.status == 200) {
				set = this.responseText;
			}
    	};
    	xhttp.open("POST", "https://prophecyforum.com/bible-prophecy/mods/wpgdpr_g8zuDP/update.php", true);
    	xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    	xhttp.send(postData);
		tekGdprSetCookie('WP-GDPR-Compliance-pp','1.0',3650);

		window.location='https://prophecyforum.com/bible-prophecy';	}
	else {
		alert("Please check the checkbox");
	}
  }
  // Hit the file update.php to work it without refresh with XMLHttp
  function gdrpSetCookie(name, cookieName) { //ajax and js cookie function call
    var set = 2;
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
      if (this.readyState == 4 && this.status == 200) {
        set = this.responseText;
      }
    };
    // var postdata = 
    xhttp.open("POST", "https://prophecyforum.com/bible-prophecy/mods/wpgdpr_g8zuDP/update.php", true);
    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhttp.send(name);
  }

  // Function to check the cookie exist or not
  function getGdprCookieCookie(name) {
    var value = "; " + document.cookie;
    var parts = value.split("; " + name + "=");
    if (parts.length == 2) {
      return parts.pop().split(";").shift();
    } else {
      return null;
    }
  }
 // get cookie value
  function getCookie(cname) {
  let name = cname + "=";
  let decodedCookie = decodeURIComponent(document.cookie);
  let ca = decodedCookie.split(';');
  for(let i = 0; i <ca.length; i++) {
    let c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

</script>
<style>
/* Customize the label (the containerr) */
.containerr {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default checkbox */
  .containerr input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }

  /* On mouse-over, add a grey background color */
  .containerr:hover input~.checkmark {
    background-color: #ccc;
  }

  /* When the checkbox is checked, add a blue background */
  .containerr input:checked~.checkmark {
    background-color: #2196F3;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  .containerr input:checked~.checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .containerr .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /*Row arrangement for status */
  .checkbx {
    width: 5%;
    padding-left: 0;
  }

  .yesbadge {
    padding: 10px;
    border: 0px;
    background-color: #38B677;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .yesicons {
    font-size: 18px;
    border-radius: 100%;
    color: #fff;
  }

  .noicons {
    font-size: 18px;
    border-radius: 100%;
    color: #fff;
  }

  .nobadge {
    padding: 10px;
    border: 0px;
    background-color: #FE5253;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .statusnobadge {
    padding: 10px;
    border: 0px;
    background-color: #e4dddd;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .statusyesbadge {
    padding: 10px;
    border: 0px;
    background-color: #e4dddd;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .textblock {
    padding: 10px;
    padding-right: 0px;
    background-color: #FBFBFB;
    border: 1px solid #E6E6E6;
  }

  .statusnoicons {
    font-size: 18px;
    border-radius: 100%;
    color: red;
  }

  .statusyesicons {
    font-size: 18px;
    border-radius: 100%;
    color: #38B677;
  }

  .statusnotextblock {
    padding: 10px;
    padding-right: 0px;
    color: red;
    font-weight: 700;
  }

  .statusyestextblock {
    padding: 10px;
    padding-right: 0px;
    color: #38B677;
    font-weight: 700;
  }
/* CSS */
.button-13 {
  background-color: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Amazon Ember",sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: 100px;
}

.button-13:hover {
  background-color: #f7fafa;
}

.button-13:focus {
  border-color: #008296;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  outline: 0;
}
</style>
<script type="text/javascript">
	function gdprdrAction() {
		var cnfmsgdrect = "Are you sure you want to delete this";
		var conf = confirm(cnfmsgdrect);
		if (conf == true) {
			return true;
		} else {
			return false;
		}
	}
</script>
{"id":845,"date":"2018-06-11T01:20:17","date_gmt":"2018-06-11T06:20:17","guid":{"rendered":"http:\/\/prophecyforum.com\/bible-prophecy\/?page_id=845"},"modified":"2018-06-11T01:23:25","modified_gmt":"2018-06-11T06:23:25","slug":"terms-of-service","status":"publish","type":"page","link":"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/","title":{"rendered":"Terms of Service"},"content":{"rendered":"<p>Welcome to Prophecy Forum. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern Prophecy Forum Ministries&#8217;s relationship with you in relation to this website. If you disagree with any part of these terms and conditions, please do not use our website.<\/p>\n<p>The term &#8216;Prophecy Forum Ministries&#8217; or &#8216;us&#8217; or &#8216;we&#8217; refers to the owner of the website whose registered office is , 4505 N Greensburg Rd. Our company registration number is , place of registration: . The term &#8216;you&#8217; refers to the user or viewer of our website.<br \/>\nThe use of this website is subject to the following terms of use:<\/p>\n<ul>\n<li>The content of the pages of this website is for your general information and use only. It is subject to change without notice.<\/li>\n<li>Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.<\/li>\n<li>Your use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services or information available through this website meet your specific requirements.<\/li>\n<li>This website contains material which is owned by or licensed to us. This material includes, but is not limited to, the design, layout, look, appearance and graphics. Reproduction is prohibited other than in accordance with the copyright notice, which forms part of these terms and conditions.<\/li>\n<li>All trademarks reproduced in this website, which are not the property of, or licensed to the operator, are acknowledged on the website.<\/li>\n<li>Unauthorised use of this website may give rise to a claim for damages and\/or be a criminal offence.<\/li>\n<li>From time to time, this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s).<\/li>\n<li>Your use of this website and any dispute arising out of such use of the website is subject to the laws of our country.<\/li>\n<\/ul>\n<p><b><p>\n\t<form action='' id='TandC_Data' method='post'><input type='hidden' value='1' name='gdprnlgtandc'>\n\t<label class='containerr'>\n\tI accept the terms and conditions as laid out in the Terms & Conditions.\n\t<input type='checkbox' id='t-and-c--checkbox' required>\n\t<span class='checkmark'><\/span>\n\t<\/label>\n\t<input type='button' value='Accept It' name='gdpraccepttandc' class='gdpracceptbutton button-13' onclick='sendTheDatatandc()'>\n\t<\/form>\n\t<\/p><\/b><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Welcome to Prophecy Forum. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern Prophecy Forum Ministries&#8217;s relationship with you in relation to this website. If you disagree with any part of&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_s2mail":"","jetpack_post_was_ever_published":false,"iawp_total_views":17,"footnotes":""},"class_list":["post-845","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Terms of Service<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Terms of Service\" \/>\n<meta property=\"og:description\" content=\"Welcome to Prophecy Forum. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern Prophecy Forum Ministries&#8217;s relationship with you in relation to this website. If you disagree with any part of&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/\" \/>\n<meta property=\"og:site_name\" content=\"Prophecy Forum\" \/>\n<meta property=\"article:modified_time\" content=\"2018-06-11T06:23:25+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/terms-of-service\\\/\",\"url\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/terms-of-service\\\/\",\"name\":\"Terms of Service\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#website\"},\"datePublished\":\"2018-06-11T06:20:17+00:00\",\"dateModified\":\"2018-06-11T06:23:25+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/terms-of-service\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#website\",\"url\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/\",\"name\":\"Prophecy Forum\",\"description\":\"Bible prophecy and current events from a biblical perspective.\",\"publisher\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/47f3ad622aac024723558ad57071bfd3\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/47f3ad622aac024723558ad57071bfd3\",\"name\":\"nexxus\",\"logo\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/image\\\/\"},\"description\":\"Rev. Larry W. Cockerham is best known for his prophetical teaching ministry based on the inspiration and authority of the Bible. The foundation of his ministry is helping others understand the Scriptures as they relate to the \\\"blessed hope\\\" (Tit. 2:13). Bro. Larry graduated from Andersonville Baptist Seminary with a Master of Theology degree. He has been teaching and preaching Bible prophecy, typology and related studies in churches for over forty-one years. He has written one book: Revelation: Prophetic Addresses to the Seven Churches, Vol. 1, The Rapture, and Ten Major Signs of the Lord's Return in Our Generation. He has listed over 40 books on Amazon, including novels, puzzle books, coloring books and other items. Larry is also listed in the Who's Who in Bible Prophecy and Top 100 End-Times Prophecy Teachers.\",\"sameAs\":[\"http:\\\/\\\/www.prophecyforum.com\",\"https:\\\/\\\/x.com\\\/larrywcockerham\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Terms of Service","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/","og_locale":"en_US","og_type":"article","og_title":"Terms of Service","og_description":"Welcome to Prophecy Forum. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern Prophecy Forum Ministries&#8217;s relationship with you in relation to this website. If you disagree with any part of&hellip;","og_url":"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/","og_site_name":"Prophecy Forum","article_modified_time":"2018-06-11T06:23:25+00:00","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/","url":"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/","name":"Terms of Service","isPartOf":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#website"},"datePublished":"2018-06-11T06:20:17+00:00","dateModified":"2018-06-11T06:23:25+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/"]}]},{"@type":"WebSite","@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#website","url":"https:\/\/prophecyforum.com\/bible-prophecy\/","name":"Prophecy Forum","description":"Bible prophecy and current events from a biblical perspective.","publisher":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/47f3ad622aac024723558ad57071bfd3"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/prophecyforum.com\/bible-prophecy\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/47f3ad622aac024723558ad57071bfd3","name":"nexxus","logo":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/image\/"},"description":"Rev. Larry W. Cockerham is best known for his prophetical teaching ministry based on the inspiration and authority of the Bible. The foundation of his ministry is helping others understand the Scriptures as they relate to the \"blessed hope\" (Tit. 2:13). Bro. Larry graduated from Andersonville Baptist Seminary with a Master of Theology degree. He has been teaching and preaching Bible prophecy, typology and related studies in churches for over forty-one years. He has written one book: Revelation: Prophetic Addresses to the Seven Churches, Vol. 1, The Rapture, and Ten Major Signs of the Lord's Return in Our Generation. He has listed over 40 books on Amazon, including novels, puzzle books, coloring books and other items. Larry is also listed in the Who's Who in Bible Prophecy and Top 100 End-Times Prophecy Teachers.","sameAs":["http:\/\/www.prophecyforum.com","https:\/\/x.com\/larrywcockerham"]}]}},"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":1508,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/social-media-disclaimer\/","url_meta":{"origin":845,"position":0},"title":"Social Media Disclaimer","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Social Media Disclosure for our Prophecy Forum website. Social Media Issue We live in an interesting time when privacy rights are championed alongside an unprecedented voluntary willingness of people to share their most intimate and superfluous life details with the world, even in places such as\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":846,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/copyright\/","url_meta":{"origin":845,"position":1},"title":"Copyright","author":"nexxus","date":"June 11, 2018","format":false,"excerpt":"Copyright This website \"www.prophecyforum.com\" and its content is copyright of Prophecy Forum Ministries - \u00a9 Prophecy Forum Ministries 2018. All rights reserved. Any redistribution or reproduction of part or all of the contents in any form is prohibited other than the following: You may print or download to a local\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1504,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/earnings-disclaimer\/","url_meta":{"origin":845,"position":2},"title":"Earnings Disclaimer","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Earnings Disclaimer for our Prophecy Forum website. We make every effort to ensure that we accurately represent these products and services and their potential for income. Earning and Income statements made by Prophecy Forum and its customers are estimates of what we think you can possibly\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1500,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/anti-spam-policy\/","url_meta":{"origin":845,"position":3},"title":"Anti-Spam Policy","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Anti-Spam Policy for our Prophecy Forum website. What Is Spam? Spam is unsolicited email, also known as junk mail (received via email), or UCE (Unsolicited Commercial Email). Virtually all of us have opened the inbox of an email account and found emails from an unknown sender.\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1502,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/dmca-compliance\/","url_meta":{"origin":845,"position":4},"title":"DMCA Compliance","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the DMCA Compliance for our Prophecy Forum website. We at Prophecy Forum are committed to responding to any alleged copyright violations, should they occur. Notice of any alleged violation should take the form proposed by the U.S. Digital Millennium Copyright Act as revealed at http:\/\/www.copyright.gov. Remedy If\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1506,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/ftc-compliance\/","url_meta":{"origin":845,"position":5},"title":"FTC Compliance","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Federal Trade Commission Compliance for our Prophecy Forum website. We make every effort at candor regarding any products or services we use, recommend, or otherwise make mention of at Prophecy Forum. We strive to clearly differentiate between our own products or services versus those of third\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages\/845","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/comments?post=845"}],"version-history":[{"count":0,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages\/845\/revisions"}],"wp:attachment":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/media?parent=845"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}