I want to know how to clone custom home page in wordpress. Why I want to do this? I want to do home page with 2 languages, but I cant transate this custom page and I want to home page as regular wordpress page, then I can translate this.
I already tried this by using Page Builder, but prebuilt (clone:pages) is empty, and I dont know how I get there this custom home page.
Thanks for helping.
You have to create page template for home page.
and then admin side create a new page named home and select home page template in template section.
now your page is act as other normal pages.
Related
The wordpress home page is empty, which claims to be the front page, and when I view the front page, which has a ton of content, and click edit page, it takes me to the word press page editor for home page, which is empty. Where can I locate the files for this homepage! In particular need to change the footer around on the theme fresh!
First check whether any template assigned for your home page (you can do via Page Attributes section on sidebar) and if yes, check for the particular template in your theme directory.
If Template section says Default Template, then look at the 'front-page.php' in your theme folder.
If you want to edit the footer, it would be probably 'footer.php'.
I chose Wordpress for my last project but I have a question. I'll use Pages so the client is able to change the content himself. For the moment there are no Post or blog in it. Is it possible to run Wordpess without a blog? It'll be a blog in a future but not now. Thanks.
Absolutely you can have a WordPress site without a blog. You just need to do a couple of things in the admin.
First you need to create 2 pages: a static 'home' page, and a 'blog index' page. The home page is what will be displayed when a visitor comes to the site. The blog index page is just a blank page, with a title you can remember.
Next, in Settings > Reading, select Front page displays a 'static page', then set 'Front page:' to the home page you made, and 'Posts page:' to the blog index page you made.
Yes, for sure you can do this.
Just do the following:
In your admin backend click on Settings -> Reading and set "A Static Page"
Go to Appearance and build a custom menu and add there your pages to a active menu.
Disable all widgets which link to posts.
In fact you need only the first step, but with the second you allow users to navigate on your site. To make the UX better, just add a plugin like Map Categories to Pages to add a category widget or something in this way, to let people browse your site more nicely.
Currently I am working on Wordpress one page website,I have anchor links on my page which shows content on click event .I want that the content can be modified from the wp-admin for those anchor links. In short it is static right now and the code is written in index.php file.I want to make it dynamic? Can it be done through Wordpress? if yes please suggest me how can i achieve this?
this is an link to my website http://www.laughingcart.com/
I am converting it to wordpress theme.
yes it is possible in wordpress to create dynamic page as home page.
know delete all your code that you have inserted in index.php and remain it as default.then access dashboard panel of the word press site then navigate to the Pages and create new page what ever you want modify your text place links and publish this page. then navigate to the setting->reading and select the front page from drop down and save it you can now see the you pages as home page
Thanks
We have a site with a members-only section and WordPress in a subdirectory. Some of the members-only pages, forms, etc. are outside of WP. We created a Member Login form on our homepage using Dreamweaver 5.5. Is there a way to have WordPress accept that main login so that a member doesn't need to login again when going to a WP member-only page? Thanks for any help you can be in pointing me in the right direction. I know just enough PHP to be dangerous. Let me know if you would like to see the DW login code.
Yes, you are talking about creating your own custom template for a Wordpress page.
You can use the page you generated from Dreamweaver by renaming its extension to .php, unless it already is. Move it to the /wp-content/themes/yourtheme folder, where yourtheme is your currently active theme. On the top of the template, add these lines:
<?php
//
// Template Name: Login Form
//
?>
Go to Wordpress Dashboard > Pages > Add New. Add a page called 'Login' or whatever you need, select 'Login Form' as the Template under Page attributes, and you Publish.
Reference: http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
I would like to show a custom page when activate my theme with an Enter link instead of posts in the content area and also need to show same header, sidebar and footer as other pages. When click on the Enter our blog works same as other thems.Please help me.
I would create the page that you want to use as the index page in your wordpress admin panel. Then go to Readings Settings, and select Static Page, then select the new page you just created in the drop down menu to set it as the front page. Click Save Changes and the new index page will now be the first thing that visitors see when they go to your site. Does that solve your problem?