Footer Missing in website [closed]

Kindly give reference about your task/code, what activity you were doing or what file your were editing in your theme. In general you should go to your front page template and check get_footer(); function. If it’s not there then call that function.

How to Keep footer link remain intact?

If you are releasing a GPL’d theme (which WP requires, but not looking to start the whole GPL debate here) then you can’t prevent someone from removing your footer link. You can ask they they don’t do it. But anyone who’s looking to do so will get around whatever method you employ. a side note: … Read more

How to edit the WordPress footer

There is probably some CSS you can add via Additional CSS (in Theme CUstomization) that you could use. Use the Inspector tool of your browser (F12) to see the CSS ‘class’ element used in the footer. If the class is called ‘the_footer’, then add this to your Additional CSS: .the_footer {color:white; background-color:black;} Adjust it for … Read more

How can I completely edit the footer?

It all depends on the theme. Most themes will have a footer.php file somewhere, which usually contains code related to the wp_footer function. It may also be in the theme’s function.php file. It’s all dependent on the theme. You can change (add to) what happens with the wp_footer function, see here for a start https://codex.wordpress.org/Plugin_API/Action_Reference/wp_footer … Read more

How do I change the footer (Norma) [closed]

Usually theme provides an option under Appearance/Customize (or around it) to adjust L&F. Because this is a commercial theme I can´t install or test it. You should better ask to their support people.

Move jquery ui to footer

Ok i found alone the solution, the problem was that it is ‘jquery-ui-core’ and not ‘jquery’. Thank you a lot for the effort P.S: In order not to open second similar thread, how do i find the theme js libraries and put them to footer, for example i have http://example.com/wp-content/themes/theme-name/js/dropdown.js and i want to move … Read more

Footer with next/previous posts

Maybe I don’t understand the question, sorry in that case. But can’t you just retrieve the last 6 posts excluding the current? Something like: global $post; $footer_posts = wp_get_recent_posts( array(‘post_status’ => ‘publish’, ‘posts_per_page’ => ‘6’, ‘exclude’ => $post->ID), 1 ); if ( ! empty($footer_posts) ) { foreach ( $footer_posts as $post ) { setup_postdata($post); echo … Read more

Meta Slider Lite plugin shortcode in post not working

You need to run the content through do_shortcode() – at the moment you’re just echo’ing the raw post content, so nothing gets parsed. echo do_shortcode( $content->post_content ); However, you might be better off implementing a proper “loop” and using the_content() template tag – doing so will ensure everything runs “as normal” (firing all the typical … Read more

My footer has disappeared but only on my home page

So what ended up happenign was I was working with an older hand made theme and the main wordpress hadn’t been updated in a while. After updating the <php the_excerpt_reloaded(35, ‘<p><b><i><u><em><strong><blockquote><a><ol><ul><li>’, ‘content’, TRUE, 0); ?> they had in the index.php file was obsolutelt as Pieter Goosen stated. I then had to find out how I … Read more