WordPress Form To Email.php and Theme

You need to include the wordpress config file: require $_SERVER[‘DOCUMENT_ROOT’].’/wp-config.php’; OR use a page template if your form handler is in your theme. Take a look at using page template’s in wordpress: http://codex.wordpress.org/Page_Templates

Orion theme (from theme forest) [closed]

Every WordPress theme, including child themes, is required to have a style.css file. The first few lines in style.css tell WordPress the name of the theme, the description, and some other meta information about the theme. You’ll have to ask the theme developer why there are files missing in your theme.

Route to custom file

This is just simple. First create a page and use slug for it as custom. And then rename you php file to page-custom.php and that would be it.

Unable to access new installed theme

This is typically a file ownership problem — in a normal install, WordPress runs as the webserver user (www-data in the default Ubuntu install of apache). When you create files or copy them into your web directory, they’re owned by your normal user account. sudo chown -R www-data your-theme-directory should take care of it.

Style of a theme

Yes, you can do this with Child Themes. A child theme is a WordPress theme that is based on another theme. The child theme points to the parent theme, and inherits styles, functions, and templates from the parent theme. However, in the child theme you can override any style rules and templates that you want … Read more