Do you have a call to wp_footer() in your themes’s footer.php?
The footer php has this code in it:
<!-- BEGIN footer -->
<div id="footer">
<p class="copyright"><?php echo fs_settings('footer_copy'); ?></p>
<a href="<?php if (strlen(fs_settings('subscribe'))>0) echo fs_settings('subscribe'); else bloginfo('rss2_url'); ?>" class="subscribe"><?php fs_lang("Subscribe"); ?></a>
<p class="links"><?php echo fs_settings('footer_links'); ?></p>
</div>
<!-- END footer -->
Do I need to add something there? (Please be specific, I’m not a programmer and don’t know what a “call to wp_footer()” is exactly, or where to place it in the code)…THANKS!
If you do not see the wp_footer() line anywhere in your theme’s footer.php, add it just before the </body> tag.
What is the “wp_footer()” line? Can you please be specific, as I noted, I am not a programmer…thanks!!
Thank you, that fixed it!! I looked it up online. For those who also don’t know what it means, here it is:
I put this code before the /body line <?php wp_footer(); ?>
THANKS SO MUCH Ray!!
Glad you figured out!
Sorry about not being specific