Apr 26, 2023 9:08 am
Is there an "easy" way to move (or duplicate) forums stats from the very bottom of the page to the top ? I am pretty sure that, if I explore the code and CSS, I could find a way to do this, but some pointers to save me time would be greatly appreciated.
Thanks!
Bernard
2 Replies
Apr 26, 2023 4:37 pm
Put this function in your active WordPress theme functions.php file:
add_action( 'wp_head', function () { ?> <script> jQuery(document).ready(function(){ jQuery("#wpforo #wpforo-wrap #wpforo-footer").prependTo("#wpforo #wpforo-wrap .wpforo-main"); }); </script> <?php } );
or > How to Easily Add Custom Code in WordPress (Without Breaking Your Site)