Hosting

Link to dedi hosting:

https://server.adnetmm.co.uk:2087/

To see memory usage from home page on cpanel >>> system health >>>> show current disk usage

Google Search Console: https://www.google.com/webmasters/tools/home?hl=en&authuser=0

For name servers, set ns1.mihost.co.uk and ns2.mihost.co.uk

When FTP’ing before the DNS has caught up (if moving a domain), FTP host is same as dedicated hosting IP address above but the port is ’21’. Also see my notes at www.paulhardingham.com/dns

How I set up a website from start to finish (video)

My Thrive Key: 8A255-7AE55-DE8D6-90E77-1FE61

Old ShortCode Backup. Stored here: www.paulhardingham.com/shortcode_backup/shortcodes.php

disable automatic updates in WordPress by adding this line of code in wp-config.php file: define(‘WP_AUTO_UPDATE_CORE’, false ); – make sure ”s are correct. Copy and paste doesn’t work. See the other entries just above in the wp-config.php file to confirm I’ve got the right inverted commas.

The shortcode is located in “wp-includes” folder

Updating PHP version

https://prnt.sc/LlfK2bGeEeyb

Lead Capture form details: Aweber, add

<input type=”hidden” name=”Custom ref” value=”[ref]” />

<input type=”hidden” name=”Custom source” value=”[source]” />

UPDATED:

Add the fields in the form in aweber form design first. Then copy and paste into WordPress form, changing input type from “text” to “hidden” and adding the cookie [ref] etc as shown in red e.g.

<input type=”hidden” id=”awf_field-80531784″ class=”text” name=”custom ref” value=”[ref]”  onfocus=” if (this.value == ”) { this.value = ”; }” onblur=”if (this.value == ”) { this.value=”;} ” tabindex=”502″ />

<input type=”hidden” id=”awf_field-80531785″ class=”text” name=”custom source” value=”[source]”  onfocus=” if (this.value == ”) { this.value = ”; }” onblur=”if (this.value == ”) { this.value=”;} ” tabindex=”503″ />

No need to change or add “input type=” as used to do.

Here’s a video explaining – click here.

For GVO lead capture forms, Add the following

<input type=”hidden” name=”Custom1″ value=”[ref]” />

<input type=”hidden” name=”Custom2″ value=”[source]” />

Note: This used to be “id” rather than “value” but this now works with lightbox optin forms on Thrive too as “value”. See ligthbox on CopyAnExpert.com/lp1/

For HTTPS

In case you would like to force the redirection from http to https in any website so any time a user wants to access your website doesn’t matter if he types the URL with or without https, then you only need to add the following lines at the beginning of the .htaccess file in the public_html of your website:

RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Note: to edit .htaccess in Cpanel click on “settings” and “view hidden files” then add these lines above, ABOVE the WordPress information.

Also worth adding plugin “really simple SSL” 

InstaBuilder plugin key: l200-e83126c84d-ulmtd

Elegant Code:

#content-area .container {padding-top:10px !important; }
#logo-area {
padding-bottom: 10px !important;
}

p#slogan {
display:none;
}

#top-header {
display: none;
}

#hr { display: none;}
h1.title { display: none;}
#footer-top-shadow {
display: none !important;
}

div#entries p {
font-size: 15px;
}

.et-learn-more h3.heading-more
{
background: #808080 ;
background: -moz-linear-gradient(top, #808080 0%, #ACACAC 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#808080 ), color-stop(100%,#ACACAC ));
background: -webkit-linear-gradient(top, #808080 0%,#ACACAC 100%);
background: -o-linear-gradient(top, #808080 0%,#ACACAC 100%);
background: -ms-linear-gradient(top, #808080 0%,#ACACAC 100%);
background: linear-gradient(to bottom, #808080 0%,#ACACAC 100%);
text-shadow: none;
color: white;
}

div#content-area {
background-size: cover;
}

#top-stitch, #bottom-stitch { display:none;}

.widget {padding: 30px 25px 30px 30px;}

#breadcrumbs { display: none; }

.page-id-6 #second-menu { display: none!important; }

.page-id-6 ul.bottom-nav { display: none; }

To Add A Colour to the background: – NOTE must add this ABOVE any other code e.g. “full screen background” otherwise it won’t get seen.

#content-area {
background-color: #000000;
}