• NeonKraze

    (@neonkraze)


    So I am a webadvisor at bluehost and I’m currently having an issue with my personaly website to where I cannot get rid of the site title! I have the inovado theme and what I am trying to do is remove the site title on coolvapemods.com if you go to it you will see Cool Vape | Mods at the left for the title. I want to remove it and leave the browser title tag as is. I’ve gone into the coding and I believe that I need to remove a certain code in the index.php problem is I can’t figure out which of it I need to remove heres what I have for the index.php

    <!-- Title Bar -->
    <?php if ( $data['select_blogtitlebar'] == 'Background-Image Style 1' ) { ?>
    
    	<div id="alt-title" class="post-thumbnail" style="background-image: url( <?php echo $data['media_blogtitlebar']; ?> );">
    		<div class="grid"></div>
    		<div class="container">
    			<h1><?php echo $data['text_blogtitle']; ?><?php if($data['text_titledivider'] != "") { echo $data['text_titledivider']; } ?></h1>
    			<?php if($data['text_blogsubtitle']){ echo '<h2>'.$data[''].'</h2>'; } ?>
    		</div>
    	</div>
    	<?php if($data['check_blogbreadcrumbs'] == 0){ ?>
    		<div id="alt-breadcrumbs">
    			<div class="container">
    				<?php minti_breadcrumbs(); ?>
    			</div>
    		</div>
    	<?php } ?>
    	<?php if($data['check_stripedborder']) { ?><div class="hr-border"></div><?php } ?>
    
    <?php } elseif ( $data['select_blogtitlebar'] == 'Background-Image Style 2' ) { ?>
    
    	<div id="alt-title-2" class="post-thumbnail" style="background-image: url( <?php echo $data['media_blogtitlebar']; ?> );">
    		<div class="container">
    			<div class="ten columns">
    				<h1><?php echo $data['text_blogtitle']; ?><?php if($data['text_titledivider'] != "") { echo $data['text_titledivider']; } ?></h1>
    			</div>
    			<?php if($data['check_blogbreadcrumbs'] == 0){ ?>
    				<div id="breadcrumbs" class="six columns">
    					<?php  minti_breadcrumbs(); ?>
    				</div>
    			<?php } ?>
    		</div>
    	</div>
    
    <?php } elseif ($data['select_blogtitlebar'] == 'No Titlebar') { ?>
    
    		<?php if($data['check_blogbreadcrumbs'] == 0){ ?>
    		<div id="no-title">
    			<div class="container">
    
    					<div id="breadcrumbs" class="sixteen columns <?php if(get_post_meta( get_option('page_for_posts'), 'minti_subtitle', true )){ echo 'breadrcumbpadding'; } /* to align middle */ ?>">
    						<?php  minti_breadcrumbs(); ?>
    					</div>
    
    			</div>
    		</div>
    			<?php if($data['check_stripedborder']) { ?><div class="hr-border"></div><?php } ?>
    		<?php } else { ?>
    			<div id="no-title-divider"></div>
    			<?php if($data['check_stripedborder']) { ?><div class="hr-border"></div><?php } ?>
    		<?php } ?>
    
    <?php } else { ?>
    
    	<div id="title">
    		<div class="container">
    			<div class="ten columns">
    				<h1><?php echo $data['text_blogtitle']; ?><?php if($data['text_titledivider'] != "") { echo $data['text_titledivider']; } ?></h1>
    				<?php if($data['text_blogsubtitle']){ echo '<h2>'.$data['text_blogsubtitle'].'</h2>'; } ?>
    			</div>
    				<?php if($data['check_blogbreadcrumbs'] == 0){ ?>
    				<div id="breadcrumbs" class="six columns <?php if($data['text_blogsubtitle']){ echo 'breadrcumbpadding'; } /* to align middle */ ?>">
    					<?php minti_breadcrumbs(); ?>
    				</div>
    				<?php } ?>
    		</div>
    	</div>
  • The topic ‘Issue with site title not the browser title!’ is closed to new replies.