WEB DESIGN COURSE SUPPORT PAGE

FAQ, ADDITIONAL MATERIALS AND MORE

WordPress Login Page:

/wp-login.php 

OVHcloud Webmail:

mail.ovh.net 

Setup email with Windows Mail:

OVH Guide 

GLOBAL COLORS

Primary

#00BFBF

Secondary

#0060BF

Text

#252525

Accent

#00BF60

White

#FFFFFF

Background

#D8D8D8

Links

#003D79

How to add the WhatsApp link to your website:

Copy the following line and replace 358449843941 with your number including the country code.

Paste the line in the link field in your Elementor editor for the WhatsApp button.

				
					https://api.whatsapp.com/send?phone=358449843941
				
			

I’m using my number here as an example. Use only numbers, no + signs or spaces.

Pricing Table

Service Dog Cat
Health check-up £50 £50
Vaccination £30 £30
Dental care £150 £100
Sterilization £300 £150
Microchipping £65 £65
Pet Passport £50 £50
				
					<style>
table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #98e7f1;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #98e7f1;
}
</style>
<table>
  <tr>
    <th>Service</th>
    <th>Dog</th>
    <th>Cat</th>
  </tr>
  <tr>
    <td>Health check-up</td>
    <td>£50</td>
    <td>£50</td>
  </tr>
  <tr>
    <td>Vaccination</td>
    <td>£30</td>
    <td>£30</td>
  </tr>
  <tr>
    <td>Dental care</td>
    <td>£150</td>
    <td>£100</td>
  </tr>
  <tr>
    <td>Sterilization</td>
    <td>£300</td>
    <td>£150</td>
  </tr>
  <tr>
    <td>Microchipping</td>
    <td>£65</td>
    <td>£65</td>
  </tr>
  <tr>
    <td>Pet Passport</td>
    <td>£50</td>
    <td>£50</td>
  </tr>
</table>

				
			

Fortify WP - .htaccess file

Copy the following code and paste it in the .htaccess file you have opened with Notepad. Save changes and replace the existing file in Filezilla.

				
					<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>

# Block access to wp-config.php file
<Files wp-config.php>
    Order deny,allow
    Deny from all
</Files>

# Block access to sensitive files
<FilesMatch "(^\.|wp-config\.php|\.xml|\.htaccess|\.htpasswd)">
    Order allow,deny
    Deny from all
</FilesMatch>

# Protect .htaccess file itself
<Files .htaccess>
    Order allow,deny
    Deny from all
</Files>

# Disable directory browsing
Options All -Indexes

# Prevent PHP execution in specific directories
<FilesMatch "^(wp-content/uploads|wp-includes)/.*\.php$">
    Deny from all
</FilesMatch>

# Block XML-RPC requests
<Files xmlrpc.php>
    Order deny,allow
    Deny from all
</Files>

# Block suspicious user agents or referrers
SetEnvIfNoCase User-Agent "BotName" bad_bot
SetEnvIfNoCase Referer "example\.com" bad_referer
Order Allow,Deny
Allow from all
Deny from env=bad_bot
Deny from env=bad_referer

# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
</IfModule>
# END WordPress
				
			

Join the Discord server for more help