JAVA SCIPT ปิดข้อความที่ไม่สามารถสร้าง Class ได้

setTimeout(()=>{
document.body.innerHTML = document.body.innerHTML
.replace( “G-QTYR8FL48P<-สิ่งที่เราต้องการปิด”, “”);
},100)

SSL Code [.htaccess]

  • -edit wp-config.php file after this text >>>
    * @link https://codex.wordpress.org/Editing_wp-config.php
    *
    * @package WordPress
    */
    // ** MySQL settings – You can get this info from your web host ** //
    <<<define(‘FORCE_SSL_LOGIN’, true);
    define(‘FORCE_SSL_ADMIN’, true);
    $_SERVER[‘HTTPS’] = ‘on’;

wp-config

//Begin Really Simple SSL session cookie settings
@ini_set(‘session.cookie_httponly’, true);
@ini_set(‘session.cookie_secure’, true);
@ini_set(‘session.use_only_cookies’, true);
//END Really Simple SSL

//Begin Really Simple SSL Server variable fix
$_SERVER[“HTTPS”] = “on”;
//END Really Simple SSL

//Begin Really Simple SSL Load balancing fix
if ((isset($_ENV[“HTTPS”]) && (“on” == $_ENV[“HTTPS”]))
|| (isset($_SERVER[“HTTP_X_FORWARDED_SSL”]) && (strpos($_SERVER[“HTTP_X_FORWARDED_SSL”], “1”) !== false))
|| (isset($_SERVER[“HTTP_X_FORWARDED_SSL”]) && (strpos($_SERVER[“HTTP_X_FORWARDED_SSL”], “on”) !== false))
|| (isset($_SERVER[“HTTP_CF_VISITOR”]) && (strpos($_SERVER[“HTTP_CF_VISITOR”], “https”) !== false))
|| (isset($_SERVER[“HTTP_CLOUDFRONT_FORWARDED_PROTO”]) && (strpos($_SERVER[“HTTP_CLOUDFRONT_FORWARDED_PROTO”], “https”) !== false))
|| (isset($_SERVER[“HTTP_X_FORWARDED_PROTO”]) && (strpos($_SERVER[“HTTP_X_FORWARDED_PROTO”], “https”) !== false))
) {
$_SERVER[“HTTPS”] = “on”;
}

//END Really Simple SSL

define(‘FORCE_SSL_ADMIN’, true);