Odd footer in template

Discussion in 'WordPress' started by journeyoftheanimals, May 15, 2011.

  1. #1
    Well I am still pretty new to wordpress but am learning new stuff almost every day. I have been working very hard ad doing a lot of modding to a template I found. I really liked most of the features and looks of the template. However like I said I still had lots of modding to do. Of course since it was a free template it has that darn little thing where it says "this footer must stay intact".

    However I was trying to experiment and make sure I "could" edit it if I wanted to. Well I hope you can understand what I mean by that.

    Anyways, i have been staring at what looks like some kind of code but I am completely confused by it. Here is what I am talking about.

    That supposedly says something like "This template designed by Casino". I do not really know what to think by all of this. Can someone shine some sort of light on this for me?
     
    journeyoftheanimals, May 15, 2011 IP
  2. lelkoun

    lelkoun Active Member

    Messages:
    288
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    60
    #2
    You can use this tool to decrypt the code: http://www.tareeinternet.com/scripts/decrypt.php (you can see the decrypted code below)

    By the way, encrypting is useless - everyone who is not stupid can remove the author's / sponsored links anyway. Encrypted code in templates only pisses off users. They usually are not bothered by any link (honest people respect the template license) but by the code that may hide unpleasant surprises.

    ?>
    
    <div class="clear"></div>
    </div>	<!-- /Main -->
    <!-- Footer -->	<div id="footer">
    	<!-- Footerbar -->
    <div id="footerbar">
    	<div id="footerbar-left">
    
    <h3>Recent Articles</h3>
    
    <ul class="footerbar-left-in">
    
    	<?php wp_get_archives('type=postbypost&limit=4'); ?>
    
    </ul>
    	</div>
    	<div id="footerbar-center">
    
    <h3>Recent Comments</h3>
    
    <ul class="footerbar-center-in">
    
    	<?php
    
    
    $sql = "SELECT * FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' ORDER BY comment_date DESC LIMIT 0 , 4";
    
    
    $comments = $wpdb->get_results($sql);
    
    
    foreach ($comments as $comment) {
    
    
    	$data = $comment->comment_author . " @ " . $comment->post_title;
    
    
    	echo "<li><a href=\"" . get_permalink($comment->comment_post_ID) . "\">" . substr($data,0,40) . " ...</a></li>";   
    
    
    }
    
    	?>
    
    </ul>
    	</div>
    	<div id="footerbar-right">
    
    <h3>Theme Credits</h3>
    
    <ul class="footerbar-right-in">
    
    	Designed by: <a href="http://www.goonlinecasino.com" target="_blank">Online Casino</a>
    
    </ul>
    	</div>
    </div>
    <!-- /Footerbar -->
    
    <!-- Copyright -->
    <div id="copyright">
    	(c)Copyrighted <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> Theme, All Rights Reserved.
    </div>
    <!-- /Copyright -->
    </div>	<!-- Footer --></div></div></div><!-- /Page --><?php wp_footer(); ?></body></html><?
    PHP:
     
    Last edited: May 16, 2011
    lelkoun, May 16, 2011 IP
  3. journeyoftheanimals

    journeyoftheanimals Well-Known Member

    Messages:
    339
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    103
    #3
    Well thank you for that information. I figured it was some type of encryption, I had just not really heard of encrypted web coding before. Thank you greatly again for that information.
     
    journeyoftheanimals, May 17, 2011 IP
  4. rohitink

    rohitink Active Member

    Messages:
    370
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #4
    Do not Remove Footer Credits. DeCryption is done to avoid people from Remove Footer Links. I Hope You won't do That.
     
    rohitink, May 18, 2011 IP
  5. journeyoftheanimals

    journeyoftheanimals Well-Known Member

    Messages:
    339
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    103
    #5
    No I am not going to remove credit, just edit it a bit because I think the way they have it looks very bad. I have done so much editing to the template that removing it is tempting, but I do not think I will.
     
    journeyoftheanimals, May 18, 2011 IP