php - phpbb3 like and unlike issue -


hi facing issue reputation system works fine when use prosilver theme. not getting , and unlike images in prosilver_se.i understood problem not resolve it. there page viewtopic_body.html calling , unlike feature

<!-- if s_reputation , s_forum_reputation -->                 <ul class="post-reputation<!-- if postrow.rs_post_class --> {postrow.rs_post_class}<!-- endif -->">                     <li class="rate-good-icon"><!-- if postrow.s_give_reputation --><a href="#" onclick="jrs.positive('{postrow.post_id}', event, this); return false;" <!-- if postrow.rs_given_point gt 0 -->class="{postrow.rs_post_class}" title="{l_rs_you_rated} {postrow.rs_given_point}"<!-- else --> title="{l_rs_rate_post}"<!-- endif -->><span>{l_rs_add_points}</span></a><!-- endif --></li>                     <li class="reputation {postrow.rs_box_color}"><div title="{l_rs_post_reputation}"><!-- if postrow.s_view_reputation --><a href="#" onclick="jrs.postdetails('{postrow.post_id}'); return false;"><!-- endif -->{postrow.post_reputation}<!-- if postrow.s_view_reputation --></a><!-- endif --></div></li>                     <!-- if postrow.s_give_reputation && postrow.s_give_negative--><li class="rate-bad-icon"><a href="#" onclick="jrs.negative('{postrow.post_id}', event, this); return false;" <!-- if postrow.rs_given_point lt 0 --> class="{postrow.rs_post_class}" title="{l_rs_you_rated} {postrow.rs_given_point}"<!-- else --> title="{l_rs_rate_post}"<!-- endif --> onclick="return false;"><span>{l_rs_subtract_points}</span></a></li><!-- endif -->                 </ul>                 <br />             <!-- endif --> 

it showing { rs_add_points } { rs_subtract_points }

this must due style issue. phpbb saving style & themes in database also. check out table phpbb_styles_theme. there column theme_data. check out styles mentioned here. check & compare prosilver & prosilver_se css files. better replace of them _se.


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -