I have the following for my home/index page template.
<?php /* Template Name: Home Page */ ?>
<?php get_header(); the_post(); ?>
<?php get_sidebar(); ?>
<h1><?php echo get_post_meta($post->ID, 'title_for_bodytext', true); ?></h1>
<?php the_content(); ?>
<?php get_footer(); ?>
If I go directly to my blog, it does not work. So myDomain.com does not work. If I go to myDomain.com/home, then it works. what do I have to do, to make it work from myDomain.com directly?
Thanks a lot for any help!