• I have an odd problem, on my own computer I do not see these links but on public computers these links shows. Can someone confirmed if they see it and I’ve looked through all the files of the theme by searching the names but can’t find them to remove them.

    http://chrisphungphoto.com/

    They show up as:
    “Free WordPress Themes” (Contact)
    “WordPress Themes” (Portfolio)
    “Weboy” (Home)
    “Premium WordPress Themes” (About)

    I do not see these on my own computer, but elsewhere I do..

Viewing 8 replies - 1 through 8 (of 8 total)
  • Try looking in footer.php.

    Thread Starter chris215

    (@chris215)

    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 &copy; 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.

    Thread Starter chris215

    (@chris215)

    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?

    Thread Starter chris215

    (@chris215)

    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

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘How to remove these odd links?’ is closed to new replies.