Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 02-08-2010, 11:10 PM   #1
Active Warrior
 
Join Date: Oct 2008
Posts: 56
Thanks: 8
Thanked 1 Time in 1 Post
Default Wordpress Splash Page

Hello,

I am in the process of developing a membership site but in the mean time I would like to set up a coming soon page that will have some info about the site as well as an opt-in form. I can't figure out how to do this in wordpress and I need some help.

I want to be able to continue to work and edit my site but have users reaching the main URL to go to the splash page.

My last question is for those that use wordpress as a member site, do you have your url go to the splash/sales page then link to the actual content after them member has joined? I obviosuly need some help with this.

Thanks in advance.

loubo44 is offline   Reply With Quote
Old 02-08-2010, 11:29 PM   #2
Watching you...
War Room Member
 
Istvan Horvath's Avatar
 
Join Date: Dec 2008
Location: Waterdown, Ontario, Canada
Posts: 5,982
Blog Entries: 2
Thanks: 1,575
Thanked 2,719 Times in 1,656 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Istvan Horvath
Default Re: Wordpress Splash Page

If your WP is installed in the root directory (i.e. showing up at example.com) then it would take more than one-two simple steps to do it - if you understand how the template system works.

I will write it down step by step... in the meantime here is the simple solution:
- while developing move the WP in a subdirectory
- set up a simple html optin page (+thankyoupage+confirmationpage) in the root
- when the development is over, move up the WP install
(For the moving I have a foolproof 4 step process!)

===================

And now the method using a "splash" template.
1. Take your splash/optin page HTML file (when it is OK, tested and working) and save it as .php, e.g. splash.php
2. At the very top of the file, before anything else put this:
PHP Code:
<?php
/*
Template Name: Big Splash
*/
?>
3. Place it in your active theme folder
4. Go in admin > Page > New and select this new template for your Page
4a. Do NOT put any content in it, just save the new Page with a title, e.g. Optin
5. Create another empty Page but this time with the theme's Deafult Page template, name it Blogposts
6. Go Settings > Reading and select for "frontpage" a static page
7. For the front select from the dropdown the Page saved with the title Optin; for "posts page", obviously, the Blogposts

At example.com you will have your optin page displayed... and going to example.com/blogposts you will see your blog and can work on its design, setup etc.

Note. If you use some special plugins, like for a membership site and in need to have full flexibility to work with posts and Pages... the simple move solution might be better

In the first half of the year we are supposed to work for the taxman. I think that's a mistake.
Help me to get rid of the taxman ASAP - thanks! (You, too, should make less mistakes!)


Istvan Horvath is offline   Reply With Quote
Old 02-09-2010, 01:43 AM   #3
Active Warrior
 
Join Date: Oct 2008
Posts: 56
Thanks: 8
Thanked 1 Time in 1 Post
Default Re: Wordpress Splash Page

Thanks for the help so far!

Can I take my WP folder and simply create a new directory for example: www.mydomain.com/blog and copy and paste the WP contents into it? Will I still be able to access the blog to post content while the development is ongoing?

loubo44 is offline   Reply With Quote
Old 02-09-2010, 01:57 AM   #4
Active Warrior
 
Join Date: Nov 2006
Location: Maryland, USA
Posts: 51
Thanks: 1
Thanked 3 Times in 3 Posts
Default Re: Wordpress Splash Page

You can't just copy and paste the Wordpress folders/files into another directory, and I'd argue that you don't need to move your blog into a subdirectory at all.

You could arguably set up a static page with an aweber (or other email capture) form and still work on the rest of your site template and content without affecting the functionality of the homepage.

I would also look into LaunchPad, which is a Wordpress theme for sites not ready for prime time.
torrent is offline   Reply With Quote
Old 02-09-2010, 02:01 AM   #5
Advanced Warrior
War Room Member
 
garyfromdurham's Avatar
 
Join Date: Jan 2010
Location: Co. Durham
Posts: 503
Thanks: 246
Thanked 142 Times in 66 Posts
Default Re: Wordpress Splash Page

Sorry loubo44

I don't have an answer to your question but I hope you won't mind me piggybacking your thread by asking another question for experts like Istvan and torrent:

Is it possible to create a one page word press splash page that allows for comments?

Thank you....and thanks to loubo44 for asking the question.

Gary
garyfromdurham is offline   Reply With Quote
Old 02-09-2010, 02:20 AM   #6
Active Warrior
 
Join Date: Oct 2008
Posts: 56
Thanks: 8
Thanked 1 Time in 1 Post
Default Re: Wordpress Splash Page

No, prob. and i'm interested in that answer too!

loubo44 is offline   Reply With Quote
Old 02-09-2010, 12:33 PM   #7
Watching you...
War Room Member
 
Istvan Horvath's Avatar
 
Join Date: Dec 2008
Location: Waterdown, Ontario, Canada
Posts: 5,982
Blog Entries: 2
Thanks: 1,575
Thanked 2,719 Times in 1,656 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Istvan Horvath
Default Re: Wordpress Splash Page

Quote:
Originally Posted by torrent View Post
You can't just copy and paste the Wordpress folders/files into another directory, and I'd argue that you don't need to move your blog into a subdirectory at all.
You could arguably set up a static page with an aweber (or other email capture) form and still work on the rest of your site template and content without affecting the functionality of the homepage.[/QUOTE]
I agree the functionality of the static (plain HTML) homepage would not be affected. However, the functionality of the WP installation behind it will certainly be affected!

The problem is that in order to get the static HTML page displayed at the root (example.com) you will have to name it index.html.

Now we have two problems!

1. You have two index files in that directory:
index.php (from WP, the so-called short and sweet index)
index.html - you just made it

OK, you may say: when visitors come to example come, they will see the index.html (squeeze page)... and when I work in the background on my WP site, I add index.php to the URL and I see the WP site in development.

You might (depending on server settings) - but NOTHING else from your WP site.

2. The reason: WP calls in the background the INDEX of the site/directory, without specifyinig whether it's .html or .php... and as a result an URL like
example.com/?p=10 <== "ugly permalink"
would go directly to your html index squeeze page.

Try it, if you don't believe me

In the first half of the year we are supposed to work for the taxman. I think that's a mistake.
Help me to get rid of the taxman ASAP - thanks! (You, too, should make less mistakes!)


Istvan Horvath is offline   Reply With Quote
Old 02-09-2010, 12:44 PM   #8
Watching you...
War Room Member
 
Istvan Horvath's Avatar
 
Join Date: Dec 2008
Location: Waterdown, Ontario, Canada
Posts: 5,982
Blog Entries: 2
Thanks: 1,575
Thanked 2,719 Times in 1,656 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Istvan Horvath
Default Re: Wordpress Splash Page

Quote:
Originally Posted by loubo44 View Post
Can I take my WP folder and simply create a new directory for example: www.mydomain.com/blog and copy and paste the WP contents into it? Will I still be able to access the blog to post content while the development is ongoing?
No, you won't be able to access it if you do it like that.

(BTW, the recommended URL for examples is example.com - it is not sold, it is reserved by ICANN exactly for that: to use it for examples. All the other domains are sold, including "mydomain"!)

Easy steps to move your WP blog to another directory:
In this case we will do a move from the root (example.com) to a subdir (example.com/blog)

1. login to admin > Settings > General
2. Change the two URL values to the new location -> example.com/blog (no slash)
3. Save and you will get a nice big ERROR message - disregard it!!!
4. Do not try to look at your blog now!
5. In case you didn't get #4: Do not try to look at your blog now!
6. Copy/move all your WP files and folders to the /blog directory using your favourite FTP client
7. Login to your new location: example.com/blog/wp-admin... and enjoy

If this will be a permanent move AND you already have images, media etc. in the uploads folder - install the Search and Replace plugin and run it to change the path to those files.
Explanation: the database stores the path to those images in this form:
example.com/wp-content/uploads/2010/02/image.jpg and they will not display after the move.
With the plugin you can do a query changing every occurrence of "example.com" to "example.com/blog".

That's it.

In the first half of the year we are supposed to work for the taxman. I think that's a mistake.
Help me to get rid of the taxman ASAP - thanks! (You, too, should make less mistakes!)


Istvan Horvath is offline   Reply With Quote
Old 02-09-2010, 12:49 PM   #9
Watching you...
War Room Member
 
Istvan Horvath's Avatar
 
Join Date: Dec 2008
Location: Waterdown, Ontario, Canada
Posts: 5,982
Blog Entries: 2
Thanks: 1,575
Thanked 2,719 Times in 1,656 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Istvan Horvath
Default Re: Wordpress Splash Page

Quote:
Originally Posted by garyfromdurham View Post
Is it possible to create a one page word press splash page that allows for comments?
The short answer is - YES.

On any page/Page that is using the WP engine you can add the call for the comments template.

In the example I gave above we made that "splash" thing part of our theme - so inserting something like
PHP Code:
<?php comments_template(); // Get wp-comments.php template ?>
should display the comment form and the comments (if there is any).

In the first half of the year we are supposed to work for the taxman. I think that's a mistake.
Help me to get rid of the taxman ASAP - thanks! (You, too, should make less mistakes!)


Istvan Horvath is offline   Reply With Quote
Old 02-09-2010, 12:58 PM   #10
Greg Schueler
War Room Member
 
VegasGreg's Avatar
 
Join Date: Jul 2002
Location: Las Vegas
Posts: 2,101
Thanks: 193
Thanked 398 Times in 292 Posts
Social Networking View Member's Twitter Profile 
Contact Info
Send a message via Yahoo to VegasGreg
Default Re: Wordpress Splash Page

The way I normally do this is just install WP on the root domain name and either install a theme that has built in squeeze page templates or add one of the squeeze page plugins available. Then Make a 'page' inside WP and make that page a squeeze page and make that the static front page in the Settings=>Reading settings.

Then you can create everything else "behind the scenes".

When complete, if you want a different hone/front page, just change the choices in the WP admin panel.

That way there is no need to move things around.

Greg Schueler - Wordpress Fanatic... Offline Marketing Rockstar...

VegasGreg is offline   Reply With Quote
Old 02-09-2010, 01:21 PM   #11
Watching you...
War Room Member
 
Istvan Horvath's Avatar
 
Join Date: Dec 2008
Location: Waterdown, Ontario, Canada
Posts: 5,982
Blog Entries: 2
Thanks: 1,575
Thanked 2,719 Times in 1,656 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Istvan Horvath
Default Re: Wordpress Splash Page

Quote:
Originally Posted by VegasGreg View Post
The way I normally do this is just install WP on the root domain name and either install a theme that has built in squeeze page templates or add one of the squeeze page plugins available.
Yep, that's the easy way

The above steps were for people not having such a theme or plugin...

In the first half of the year we are supposed to work for the taxman. I think that's a mistake.
Help me to get rid of the taxman ASAP - thanks! (You, too, should make less mistakes!)


Istvan Horvath is offline   Reply With Quote
Old 02-09-2010, 02:31 PM   #12
Advanced Warrior
War Room Member
 
garyfromdurham's Avatar
 
Join Date: Jan 2010
Location: Co. Durham
Posts: 503
Thanks: 246
Thanked 142 Times in 66 Posts
Default Re: Wordpress Splash Page

That's great.

Thank you very much Istvan and Greg for giving me a solution

Gary
garyfromdurham is offline   Reply With Quote
Old 02-09-2010, 02:35 PM   #13
Active Warrior
 
Join Date: Jan 2010
Location: NC
Posts: 57
Thanks: 0
Thanked 4 Times in 4 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Wordpress Splash Page

Quote:
Originally Posted by VegasGreg View Post
The way I normally do this is just install WP on the root domain name and either install a theme that has built in squeeze page templates or add one of the squeeze page plugins available. Then Make a 'page' inside WP and make that page a squeeze page and make that the static front page in the Settings=>Reading settings.

Then you can create everything else "behind the scenes".

When complete, if you want a different hone/front page, just change the choices in the WP admin panel.

That way there is no need to move things around.
Do you have a WP plugin that you recommend?

homebizoutlook is offline   Reply With Quote
Old 02-09-2010, 02:43 PM   #14
Greg Schueler
War Room Member
 
VegasGreg's Avatar
 
Join Date: Jul 2002
Location: Las Vegas
Posts: 2,101
Thanks: 193
Thanked 398 Times in 292 Posts
Social Networking View Member's Twitter Profile 
Contact Info
Send a message via Yahoo to VegasGreg
Default Re: Wordpress Splash Page

Quote:
Originally Posted by homebizoutlook View Post
Do you have a WP plugin that you recommend?
I have been using the FlexSqueeze theme lately (not free though), but have also used a plugin/theme from a fellow Warrior (Check the WSO section). He offers a free sample template at Wordpress Landing Page Templates: Create Affiliate Pages, Sales Letters and Squeeze Pages in Any WP Theme! | WP Landing Pages, which works very well.

Greg Schueler - Wordpress Fanatic... Offline Marketing Rockstar...

VegasGreg is offline   Reply With Quote
Old 02-09-2010, 02:53 PM   #15
Active Warrior
 
Join Date: Oct 2008
Posts: 56
Thanks: 8
Thanked 1 Time in 1 Post
Default Re: Wordpress Splash Page

Thanks for everyone's help!

I love WF!

loubo44 is offline   Reply With Quote
Old 02-09-2010, 07:06 PM   #16
Active Warrior
 
Join Date: Oct 2008
Posts: 56
Thanks: 8
Thanked 1 Time in 1 Post
Default Re: Wordpress Splash Page

Quote:
Originally Posted by VegasGreg View Post
I have been using the FlexSqueeze theme lately (not free though), but have also used a plugin/theme from a fellow Warrior (Check the WSO section). He offers a free sample template at Wordpress Landing Page Templates: Create Affiliate Pages, Sales Letters and Squeeze Pages in Any WP Theme! | WP Landing Pages, which works very well.
I like that! im probably gonna purchase it as it looks like exactly what I need!

loubo44 is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
page, splash, wordpress

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 07:26 AM.