Yeah,
so probably in those widgets, you, or whoever, put some php code + did a WP_Query without calling wp_reset_query()
(or wp_reset_postdata()
) so basically when fp code goes to check if it’s the home page and it has the show the fps in there it fails ( because of the not reset query => not a Customizr issue ?? ).
This can be the reason why fp fail after the sidebar (__before_footer action is done after the rendering of the sidebars ).
Unrelated stuff:
Anyway in your page I can see you have:
– custom css:
<style id="option-custom-css" type="text/css">1
2
3
4
5
6
7
8
9
10
/* Remove Navbar box */
Remove those numbers (I know it’s something happens when you copy the code on the web, so just a typo)
– your child-theme style.css is:
<? php /*
Theme Name: customizr-child
Description: Description of your Child Theme
Author: Your name here
Template: customizr
*/
@import url("../customizr/style.css");
? >
(I put the spaces in the php tags) but a style.css is pure css so you don’t have to put the php starting and ending tags at all.
Also the @import directive is useless when using Customizr, you can (have to => performances) get rid of it.
Hope all that can help you to solve your issue and improve your site ??