There are three methods to do this:
This method is suitable for new websites as they do not have an audience to lose. This method is also simple and cost-effective.
You need to add the following code snippet to the functions.php file of your website’s current theme.
// Activating WordPress Maintenance Mode function wp_maintenance_mode() { if (!current_user_can('edit_themes') || !is_user_logged_in()) { wp_die('We are down for Maintenance
We will be back shortly!'); } } add_action('get_header', 'wp_maintenance_mode');
The above code snippet works for users who are not logged in to your website.
If you want to toggle enabling the maintenance mode, you can comment the add action() filter as shown below, and remove the comment line “//” to enable maintenance mode again.
//add_action('get_header', 'wp_maintenance_mode');
The .htaccess file resides on your website’s home (root) folder. But before you make changes to this file, you should make a backup of the file to a different name, say “.htaccess_source”. You can then copy and paste the below code to the file.
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} !^/maintenance\.html$ RewriteRule ^(.*)$ https://example.com/maintenance.html [R=307,L]
Darrel Wilson
GateWood Digital, LLC
GateWood Digital, LLC
Video Tuts by WPCrafter.com
Video Tuts by WPCrafter.com
Video Tuts by ProductReviews
An article by wpbeginner.com
Video by Darrel Wilson
ReDi Restaurant Reservation plugin allows you to manage reservations for your restaurant business. This plugin can help to receive reservations from clients online. Your clients will be able to see available space at specified time, and if it’s available, client is able to make a table reservation.
Video Tuts by Website Learners
Video Tuts by Ferdy Korpershoek
Video Tuts by WPBeginner using Mappress plugin and google map api
An article by developers.google.com/maps/
Create interactive maps with regions and coloured markers. You can display the world map, continent maps and single country maps.
developer.wordpress.org/resource/dashicons
Sample Site
codecanyon.net/item/premium-stock-market-widgets/18686543
Forex Trade Rates Realtime Plugin-Widget By plugin-wp.com
Video Tuts by Aleksandar Urošević - Jan 19, 2018
Video Tuts by ImpulseBuyer - May 5, 2020
Video Tuts by Elegant Themes - Dec 6, 2019