Forums

How to remove these odd links? (9 posts)

  1. Chris215
    Member
    Posted 1 year ago #

    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..

  2. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    Try looking in footer.php.

  3. Chris215
    Member
    Posted 1 year ago #

    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>
  4. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    Try functions.php. The theme might be firing off some functions attached to wp_footer.

  5. Chris215
    Member
    Posted 1 year ago #

    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?

  6. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    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?

  7. Chris215
    Member
    Posted 1 year ago #

    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?

  8. iridiax
    Member
    Posted 1 year ago #

    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/

  9. reexed
    Member
    Posted 1 year ago #

    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

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.