Help: WP Footer

Oriam

Junior Member
Joined
Aug 18, 2009
Messages
150
Reaction score
72
I tried fixing my footer by searching google and tried many ways to fix it but
still a problem. Hopping you guys can help me.

As you can see in my footer, when you hoover it, it shows double my
links...same problem for both my "Contact us" & "Terms of Use"

http://www.lastminutenewstopics.com
 
you need to edit in footer.php

show the code and ill edit for you
 
try this

Code:
<a href="/contact-us-2">Contact Us</a> | <a href="/terms_of_use">Terms of Use</a>
 
I think there is a random slash in there, look:

Code:
<a href=\"http://www.lastminutenewstopics.com/

Get rid of the slash before the URL and give that a go - may be better if you show your footer fle to us though :)
 
wherever you added the URL change it to just "/terms_of_use" and try that
 
hey guys can someone tell me how to put the posts on a page? I have set pages I would like to show the posts on with a theme but they are just appearing when you go to dashboard-posts-categories and click view on that category and do not appear on the menu pages I would like them to show, can anyone look into this?

thanks friends
 
hey guys can someone tell me how to put the posts on a page? I have set pages I would like to show the posts on with a theme but they are just appearing when you go to dashboard-posts-categories and click view on that category and do not appear on the menu pages I would like them to show, can anyone look into this?

thanks friends


i'm sure someone would be happy to help you but you should create your own thread - your kind of thread jacking here.:batman:
 
 
Last edited:
Copy and paste wp-content/themes/LastMinute/footer.php here and I will fix it for you.
 
Here is the footer.php
Btw, i'm using the latest wp version


Code:
<div class="art-Footer">
    <div class="art-Footer-inner">
                <a href="<?php bloginfo('rss2_url'); ?>" class="art-rss-tag-icon" title="RSS"></a>
                <div class="art-Footer-text">
<p>
<?php 
 global $default_footer_content;
 $footer_content = get_option('art_footer_content');
 if ($footer_content === false) $footer_content = $default_footer_content;
 echo $footer_content;
?>
</p>
</div>
    </div>
    <div class="art-Footer-background">
    </div>
</div>

    </div>
</div>


<!-- <?php printf(__('%d queries. %s seconds.', 'kubrick'), get_num_queries(), timer_stop(0, 3)); ?> -->
<div><?php wp_footer(); ?></div>
<!-- Start of Woopra Code -->
<script type="text/javascript">
var woo_settings = {idle_timeout:'300000', domain:'lastminutenewstopics.com'};
(function(){
var wsc = document.createElement('script');
wsc.src = document.location.protocol+'//static.woopra.com/js/woopra.js';
wsc.type = 'text/javascript';
wsc.async = true;
var ssc = document.getElementsByTagName('script')[0];
ssc.parentNode.insertBefore(wsc, ssc);
})();
</script>
<!-- End of Woopra Code -->
</body>
</html>
 
now find this file footer_content
 
Last edited:
If you don't mind a bodge job, just delete: "echo $footer_content;" and type in the HTML that you are after.....something like:

echo "<a href='contact.html'>Contact Us</a>";

Like I said, it is a real bodge job but it will work if you don't find the problem!
 
OK, I finaly fix my problem. After adding or removing codes like: ' " or \
I got this to work:
Code:
<a href=www.lastminutenewstopics.com/contact-us-2>Contact Us</a> | <a href=www.lastminutenewstopics.com/terms_of_use>Terms of Use</a>
Thanks guys for your help :)
 
Back
Top