Dear DW Team,
- 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
- 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.
- Can I Hide feature 3 on mobile?
Thanks
1 Answers
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;
}
}
Please login or Register to submit your answer