Try looking in footer.php.
first place i’ve looked but doesn’t show anything like that,
<div id="footer" class="clearfix">
<div class="footerleft">
<p><b><?php bloginfo('name'); ?></b></p>
<p>Copyright © 2010 All rights reserved.</p>
</div>
<!--necessary-->
<?php wp_footer(); ?>
</div>
</body>
</html>
Try functions.php. The theme might be firing off some functions attached to wp_footer.
Looked through functions.php nothing regarding footer. where is wp_footer.php located?
also why can’t i see these links but elsewhere i can?
wp_footer() is a core function – not a file. Often used by plugins to initiate specific actions.
Is any of the code in functions.php obfuscated (ie not in plain text)? Another possible source is your theme’s header.php file.
why can’t i see these links
Are you logged in all of the time?
Yes I am always logged in, I just logged off to see if it shows and it doesn’t.
///Tracking/Analytics Code
function print_tracking() {
global $wp_theme_options;
echo stripslashes($wp_theme_options['tracking']);
}
if ($wp_theme_options['tracking_pos'] == "header")
add_action('wp_head', 'print_tracking');
else //default
add_action('wp_footer', 'print_tracking');
function ecommerce_header_style() {
?>
<style type="text/css">
#header {
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
background: url(<?php header_image(); ?>) bottom left no-repeat;
}
</style>
<?php }
function ecommerce_admin_header_style() {
?>
<style type="text/css">
#headimg {
display: block;
margin: 0px; padding: 0px;
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
background: url(<?php header_image(); ?>) top left no-repeat;
}
#headimg h1, #headimg #desc {
display: none;
}
</style>
<?php }
add_custom_image_header('ecommerce_header_style', 'ecommerce_admin_header_style'); //Add the custom header
?>
I cut it down, but do you see anything that might be it?
This is a premium theme, so you should be able to get support from the purchase site:
http://shutterthemes.com/contact/
http://shutterthemes.com/flashframe/
look for script like this do_action in your theme found mine in the comments form page
<?php do_action(‘comment_form’, $post->ID); ?>
all the best