Static front page as parent of with child pages?

Are you just outputting the pages for the navigation with wp_list_pages() or a similar function? It might be better to use the WordPress Menu feature and create a menu for the navigation, then use wp_nav_menu() to display it. Alternatively, instead of setting a static page in the backend you can edit (or create) the home.php … Read more

how to add a page

The code you have pasted has errors – the get_header() is fine but then you have HTML code in PHP code areas. Also you have included the header twice. Check this code out http://pastebin.com/mH2tn3Qw The header code should be placed in header.php if you are using the get_header() call

Admin new order email customization

You can change the contents of all emails by overriding the templates from your (child) theme. Read the documentation on Template Structure for more information on where all the files are located and how you can override them. For example, say you would like to override the admin order notification, copy: the templates/emails/admin-new-order.php file from … Read more