My maintenance page without being visible to admin

0

I have now started working on a wordpress site, but my client would like to put a page on fully customized maintenance. I've been seeing a few plugins but none of them gives me full freedom to do this, to develop HTML/CSS at 100%. I know I can do a redirect but the problem is that I have to go developing the site at the same time. What I'm looking for is a solution for other people to see the maintenance page (fully made by me, HTML / CSS, on the root link ) but I, if you are logged in as site admin, can develop and view the actual site

    
asked by anonymous 12.12.2015 / 18:48

2 answers

1

Hi, Miguel,

I think that what you want to do, in this way, is not possible in WP (I may be wrong).

What you can do, which would give a similar result, is:

1) Create a common page there in "Pages > > add new", remove the header from it and everything else (those options at the bottom of the page editor), and insert all text into it, HTML there, and make reference to CSS in "Custom CSS" (that location depends on the theme). Now you go to "Settings >> Write / Read" (I do not remember which one, but it's the 3rd option) and will select this new page as Home (static page). Soon, when someone accesses link it will fall on that page there, you did not leave link, menu, nor anything. If you want to access the ADM panel simply add / wp-admin normally.

2) If (1) does not answer your question, I may have misunderstood and you want to fully customize page 404. Go to "Appearance > > Editor" and search in a side menu on the right side of the page (a list of files) on page 404. There in the middle space, text editor, will appear the content of page 404. It will have a php code with "get_html" or "get_text" ... something like that. Take that out and have it checked out in the HTML. It refers to CSS in custom CSS.

In both cases, the CSS can be done directly in the style file (style.css or layout.css, depending on the language) in "Appearance > > editor".

In a third way of doing this ...

3) You can still do so. Let's say that the client has the example.com domain, you write the WP there and such, and create a directory inside the www (public_html) in the domain root, called "construcao" or anything that reminds you of it. Then install WP in that directory there. Then the WP only accessed in "example.com/construction/". At the very root, outside the directory, you create an index.html and an index.css just for that maintenance page.

I hope I have helped

Embrace

    
12.12.2015 / 21:57
0

Go to the Wordpress plugins directory and look for Maintenance Page, it is the first plugin that will appear in the results, created by themegrill.

Here is the list of plugin features:

Responsive design looks great on your devices. Logo Upload Background image / color option Subscriber Feature to collect emails Download subscriber list as csv Social icons Font Color option Add title, text message option Option to exclude page Custom CSS Maintenance Page Pro: Counter Contact Form MailChimp integration Ip Whitelist Background Slider Background Video Progress Bar Google font option Analytic Code Option Role Based access Font size option About Page

It's the fastest solution I found for you. Otherwise, you'll have to create a php page with HTML / CSS and play the wordpress Hooks inside it, and let me remind you, that's a change in the template.

    
12.12.2015 / 22:21