• [please use the ‘code’ button instead of ‘blockquote’ – http://codex.wordpress.org/Forum_Welcome#Posting_Code ]

    <?php get_header(); ?>
    
    <div id="home-container">
    
    	<!--slideshow-->
    
    	<div id="slider" class="nivoSlider">
    
    <?php for ($i = 1; $i <= 2; $i++) { ?>
    
    			 <img src="<?php if(of_get_option('slider_image'.$i) != NULL){ echo of_get_option('slider_image'.$i);} else echo get_template_directory_uri() . '/images/slide'.$i.'.png' ?>" alt="<?php echo of_get_option('slider_head'.$i); ?>"  title="<span class='info-title'><?php if(of_get_option('slider_head'.$i) != NULL){ echo of_get_option('slider_head'.$i);} else echo "Professional Business WordPress theme" ?></span><p><?php if(of_get_option('slider_text'.$i) != NULL){ echo of_get_option('slider_text'.$i);} else echo "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae." ?></p><span class='read-more-slide'> <a>'><?php _e( 'Read More', 'Hero' ); ?></a></span>" />
    
    			<?php } ?>
    
    		</div> <!--slideshow end-->
    
      </div><!--home container end-->
    
    <div class="clear"></div>
    
    <!--welcome-->
    	<div class="welcome_container">
    <hr />
    		<div class="two_third welcome-box">
    
    	<h1><?php if(of_get_option('welcome_text') != NULL){ echo of_get_option('welcome_text');} else echo "Write your welcome headline here. Have fun with the Hero theme." ?></h1></div>
    
    	<div class="one_third last"><?php if(of_get_option('welcome_button') != NULL){ ?>
    	<a>"><?php echo of_get_option('welcome_button'); ?></a>
    	<?php } else { ?> <a>"> <?php echo "Download Now!" ?></a> <?php } ?></div>
    <hr />
    </div><!--welcome end-->
    <div class="clear"></div>	
    
    		<!--boxes-->
    		<div id="box_container">
    
    		<?php for ($i = 1; $i <= 3; $i++) { ?>
    
    				<div class="boxes one_third <?php if ($i == 3) {echo "last";} ?>">
    						<div class="box-head">
    
    	<a>"><img src="<?php if(of_get_option('box_image' . $i) != NULL){ echo of_get_option('box_image' . $i);} else echo get_template_directory_uri() . '/images/box' .$i. '.png' ?>" alt="<?php echo of_get_option('box_head' . $i); ?>" /></a>
    
    					</div> <!--box-head close-->
    
    				<div class="title-box">						
    
    				<div class="title-head"><?php if(of_get_option('box_head' . $i) != NULL){ echo of_get_option('box_head' . $i);} else echo "Box heading" ?></div></div>
    
    					<div class="box-content">
    
    				<?php if(of_get_option('box_text' . $i) != NULL){ echo of_get_option('box_text' . $i);} else echo "Nullam posuere felis a lacus tempor eget dignissim arcu adipiscing. Donec est est, rutrum vitae bibendum vel, suscipit non metus." ?>
    
    					</div> <!--box-content close-->
    
    		<span class="read-more"><a>"><?php _e('Read More' , 'Hero'); ?></a></span>
    
    				</div><!--boxes  end-->
    
    		<?php } ?>
    
    		</div><!--box-container end-->
    
    			<div class="clear"></div>
    
    </div>
    <!--wrapper end-->
    
    <?php get_footer(); ?>

    How do I change the box title / content for the 3 boxes on my homepage? The above code is taken from front-page.php of the theme “Hero version 1.5.5” by Manishg. I would like to edit the title and content individually for each box. It looks like there’s a get_option function, but I don’t know where it is retrieving the title/content.

    Thank you for your help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • You can probably make the changes in the custom options page for the theme. Look for it in your admin panel.

    Also was there and user documentation with the theme? You may want to check there.

    Thread Starter jianster

    (@jianster)

    Tried that. Nothing there to modify the box title/content. Please advice.

    Thanks.

    As I indicated above.

    Go to “Appearance” => “Theme Options” and you can make the changes there.

    Thread Starter jianster

    (@jianster)

    I tried that. There’s no option that specifically allows you to edit the box….

    Thread Starter jianster

    (@jianster)

    WAIT! I GOT IT.

    I’m DUMB.

    Thanks!!!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Box Title/Heading’ is closed to new replies.