New Topic

Reply To: Homepage customizations

Home › Forum › Customization › Homepage customizations › Reply To: Homepage customizations

#550

StartupWP
Keymaster

#slider{display:none}
.home #slider{display:block}

We can use that same trick for the logo:

#site-title{display:none}
.home #site-title{display:block}

2. Once you have hosting and a domain in place you’ll need to do live testing before going public anyways, at that time we can have a look.

4. Should be pretty simple with a few steps:

– Setup a child theme: https://startupwp.com/topic/child-theming/
– Copy over entry.php to the child theme
– Change line 2:

<?php if ( is_singular() ) {echo '<h1 class="entry-title">';} else {echo '<h2 class="entry-title">';} ?><a href="<?php the_permalink(); ?>" title="<?php printf( __('Read %s', 'startup'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a><?php if ( is_singular() ) {echo '</h1>';} else {echo '</h2>';} ?>

to:

<?php if ( is_singular() ) {echo '<h1 class="entry-title">';} else {echo '<h2 class="entry-title">';} ?><?php the_title(); ?><?php if ( is_singular() ) {echo '</h1>';} else {echo '</h2>';} ?>