Azhari Umar
asked 7 years ago

Dear DW Team,

  1. Can I Change the position rating system in DW Gamez to below post title (beside category) ?  and I just want to show like this : http://prnt.sc/dnziru
  2. How to change text of Related Articles to Related Games or other text? I tried to find this text on single.php but don’t find it.
  3. Can I Hide feature 3 on mobile?

Thanks

1 Answers
DominicStaff
answered 7 years ago

1/ If you want to change the Ranting position, you can open the content-single.php find the line 8 and add the following code under line 8.

<div class="rating-star">
<?php
if ( true == get_fw_option_post_meta( get_the_ID(), 'rating_table' ) ) {
dw_gamez_rating_star_display( get_post_meta( get_the_ID(), '_dw_total_rate', true ), '' );
}
?>
</div>

2/ You can open the template-tags.php file and find the line 162.
3/ To remove this section on the mobile, you can add the following code to the style.css file:

@media (max-width: 480px) {
   .feature-3 {
       display: none;
    }
}
Powered by DW Question & Answer Pro