• Resolved nick223

    (@nick223)


    How can i get content to stay on the home page where the white section is on my site?
    https://www.gotyour6communications.org/

    i really just want a welcome message i created and posted in the home page portion of wordpress but it doesn’t seem to appear. I tried last post and i tried static page. I really dont want post to flood the front page. Just want a nice welcome message to stay on the page.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter nick223

    (@nick223)

    any help?

    Theme Author Template Express

    (@danstriker)

    Hello

    looking at your link it looks you have managed to add a welcome message now?

    Thread Starter nick223

    (@nick223)

    yes but i would like to utilize the gray area for more content below the welcome message.
    Any help with that?

    Theme Author Template Express

    (@danstriker)

    you can either put this content straight into the custom_home.php template file inside the “col span_2_of_3” div.

    or add the following which which will pull in content you add to this page via the wp admin:

    <?php while ( have_posts() ) : the_post(); ?>
    
    					<?php get_template_part( 'content', 'page' ); ?>
    
    					<?php comments_template( '', true ); ?>
    
    				<?php endwhile; // end of the loop. ?>

    you may also have to edit your styles slightly.

    Thread Starter nick223

    (@nick223)

    Any help again on how to get the post on the home page to show the entire post? I had it figured out then i updated the theme. i thought i had a child theme but guess not.

    Theme Author Template Express

    (@danstriker)

    in the custom_home.php you will have to replace the:

    <?php echo sporty_content(50); ?>

    with something like

    <?php the_content( $more_link_text, $stripteaser ); ?>

    https://codex.www.ads-software.com/Function_Reference/the_content

    Thread Starter nick223

    (@nick223)

    Thank you for the help

    What about in post the heading are mouse over is there anyway to change that so the title stay solid?

    Theme Author Template Express

    (@danstriker)

    sorry I am not sure what you mean?

    Thread Starter nick223

    (@nick223)

    See if you go to my site and to the news post you cant see the post titles or dates until you put your mouse cusor over the area and the title appears

    Thread Starter nick223

    (@nick223)

    Theme Author Template Express

    (@danstriker)

    try the following:

    .entry-title a {
    color: #FFF;
    }
Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Home page content’ is closed to new replies.