• Hi guys,

    Just got my WP site set up and running, but struggling to remove some footer text without it stopping the footer from loading!

    Can you advise? I want to remove the link and text: ” | Web Design by Site Now”

    Thanks!

    <p><?php echo nl2br(stripslashes(get_option('address'))); ?><?php if (get_option('phone') == true) { ?>Tel: <?php echo get_option('phone'); } ?><?php if (get_option('fax') == true) { ?>Fax: <?php echo get_option('fax'); } ?></p>
    		<p class="copyright"><?php if (get_option('footer_text') == true) { echo str_replace('[YEAR]',date('Y'),stripslashes(get_option('footer_text'))).' | '; } ?><a href="http://www.site-now.co.uk">Web design</a> by Site Now</p></p>
    		</div>
    	</div>
    <?php } ?>
    
    <?php do_action('wp_footer'); ?>
    
    <script type="text/javascript">
    jQuery(function() {
    
    <?php $style = $_COOKIE['style'];
    	if($style == "hc" || $style == "lc") {	} else { ?>
    	//Cufon.replace('h1, #header .right p, #main.home .right h2, #sidebar h4, #content .comments h3');
    	<?php } ?>
    
    	$('.gallery a').lightBox({
    		fixedNavigation:true,
    		imageLoading: '<?php bloginfo('template_directory'); ?>/images/lightbox-ico-loading.gif',
    		imageBtnClose: '<?php bloginfo('template_directory'); ?>/images/lightbox-btn-close.gif',
    		imageBtnPrev: '<?php bloginfo('template_directory'); ?>/images/lightbox-btn-prev.gif',
    		imageBtnNext: '<?php bloginfo('template_directory'); ?>/images/lightbox-btn-next.gif',
    		imageBlank: '<?php bloginfo('template_directory'); ?>/images/lightbox-blank.gif'
    	});
    
    <?php if(is_home() || is_front_page()) { ?>
    	jQuery('#slides').slides({
    		preload: true,
    		preloadImage: '<?php bloginfo('template_directory'); ?>/images/loading.gif',
    		play: 5000,
    		pause: 2500,
    		hoverPause: true
    	});
    <?php } ?>
    
    });
    </script>
    
    </body>
    </html>
Viewing 9 replies - 1 through 9 (of 9 total)
  • silky8000,

    Hopefully I’m not treading on any toes here.

    This looks like a fairly easy thing to do, just delete the following code snippet:

    <a href="http://www.site-now.co.uk">Web design</a> by Site Now

    Give that a try and let me know if it works or not.

    Thread Starter silky8000

    (@silky8000)

    silky8000,

    Have you tried just removing the name “Site Now” and see what happens?

    Thread Starter silky8000

    (@silky8000)

    silky8000,

    change this:
    <p class="copyright"><?php if (get_option('footer_text') == true) { echo str_replace('[YEAR]',date('Y'),stripslashes(get_option('footer_text'))).' | '; } ?></p>/p>

    to this:
    <p class="copyright"><?php if (get_option('footer_text') == true) { echo str_replace('[YEAR]',date('Y'),stripslashes(get_option('footer_text'))).''; } ?></p>/p>

    I just removed that “|”

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Sorry, where did you get that theme? You’ve attempted to delete the author information.

    http://www.atlas-knives.com/wp-content/themes/site-now-premium-plus/style.css

    Thread Starter silky8000

    (@silky8000)

    Thanks. I bought the theme?

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    I bought the theme?

    Yes. Thanks, I got that. 😉

    Where did you buy the theme? When you purchased that theme support came with it.

    Commercial products aren’t supported in these forums and the author really is the best place to seek support.

    Thread Starter silky8000

    (@silky8000)

    Sorry, please delete the thread.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Removing Footer Text’ is closed to new replies.