Cập nhật đếm lượt xem của chap và tổng lượt xem truyện.
Áp dụng các giao diện:
- Giao diện website truyện bằng wordpress GocNhaNang – update 2024
- Full code truyện giống truyenqq có chức năng trả phí, rank
- Giao diện website truyên tranh/ truyện chữ giống nettruyen bằng wordpress
Fix:
Cách 1: Tải lại file backup mới nhất trong thư mục tải đã mua (file 4/10/2024) và restore lại website
Cách 2: Lên thư mục tải file functions.php và tải nó lên /public_html/wp-content/themes/theme-child/ thay thế cho functions.php cũ
Cách 3: Mở file functions.php trong /public_html/wp-content/themes/theme-child/ tìm đến đoạn code
add_action( 'wp_head', function() { if ( is_singular('chap') ) { $current_chap = get_queried_object(); $parent_id = (int) $current_chap->post_parent; if ( $parent_id ) { ?> <script> (function(){ if ( 'undefined' !== typeof WordPressPopularPosts && 'undefined' !== typeof wpp_params ) { WordPressPopularPosts.post( wpp_params.apiUrl + '/v2/views/<?php echo $parent_id; ?>', "_wpnonce=" + wpp_params.token + "&sampling=" + wpp_params.sampling + "&sampling_rate=" + wpp_params.samplingRate, function( response ) { wpp_params.debug&&window.console&&window.console.log&&window.console.log(JSON.parse(response)); } ); } })(); </script> <?php } } }, 99);
Và thay nó bằng:
add_action( 'wp_head', function() { if ( is_singular('chap') ) { $current_chap = get_queried_object(); $parent_id = (int) $current_chap->post_parent; if ( $parent_id ) { ?> <script> (function(){ if ( 'undefined' !== typeof WordPressPopularPosts && 'undefined' !== typeof wpp_params ) { WordPressPopularPosts.post( wpp_params.apiUrl + '/v2/views/<?php echo $parent_id; ?>', "_wpnonce=" + wpp_params.token + "&sampling=" + wpp_params.sampling + "&sampling_rate=" + wpp_params.samplingRate, function( response ) { wpp_params.debug&&window.console&&window.console.log&&window.console.log(JSON.parse(response)); } ); } })(); </script> <?php } } }, 99);