X-cart v4.4.0 shows Customer Feedback at header

How to show Customer Feedback at header of detailed product page? 1. Go to skin/common_files/modules/Customer_Reviews/, creat a filed called vote_reviews_header.tpl, and open it. 2. Add the following code in vote_reviews_header.tpl:

Remove Any Unnecessary Files of WordPress

How can we remove the /wp-includes/js/comment-reply.js?ver=20090102 script tag? 2 steps: first edit wp-includes/functions.php, add the follow code at the end of functions.php: function clean_header(){ wp_deregister_script( ‘comment-reply’ ); } second, edit wp-includes/default-filters.php, add the next line at proper place: add_action(‘init’,’clean_header’);