Notifications
Clear all

[Solved] Move Forum stats to the top ?

3 Posts
2 Users
2 Reactions
376 Views
Posts: 57
Topic starter
(@le-bear)
Trusted Member
Joined: 8 years ago

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
Tutrix
Posts: 1436
(@tutrix)
Noble Member
Joined: 4 years ago

@le-bear

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)

 

1 Reply
(@le-bear)
Joined: 8 years ago

Trusted Member
Posts: 57

@tutrix Perfect ! Works like a charm. Thank you.