yarrak Posted September 19, 2013 Share Posted September 19, 2013 question is clear.i want to change the thanked count in profile. /* -- ajaxThankedCountProfile --*/function ajaxThankedCountProfile($member) {$IPBHTML = "";$IPBHTML .= "<li><span class='row_title'>{$this->lang->words['en30_thanked']}</span><span class='row_data'>{$member['thanked']} {$this->lang->words['en30_times']}</span></li>";return $IPBHTML;} /* -- ajaxThankerLink --*/function ajaxThankerLink($mid, $name, $seoName) {$IPBHTML = ""; $member = array( 'member_id' => $mid, 'members_display_name' => $name, 'members_seo_name' => $seoName );$IPBHTML .= "<span class="author vcard">" . ( method_exists( $this->registry->getClass('output')->getTemplate('global'), 'userHoverCard' ) ? $this->registry->getClass('output')->getTemplate('global')->userHoverCard($member) : '' ) . "</span>";return $IPBHTML;} i couldt find the query ? Link to comment Share on other sites More sharing options...
0 Lock Down Posted September 19, 2013 Share Posted September 19, 2013 ok for #1 use sql toolbox or phpmyadminupdate profile_portal set thanked = thanked+1000 where pp_member_id in (4,6,8,10);Just change the 4,6,7,10 to the member ids you want update separated by a comma as shown. If you get an error it will because you have a prefix like ipb_ or ibf_ or ??? so you will need to add it like thisupdate ibf_profile_portal set thanked = thanked+1000 where pp_member_id in (4,6,8,10);Always backup database or table profile_portal before making changes... Link to comment Share on other sites More sharing options...
0 Lock Down Posted September 19, 2013 Share Posted September 19, 2013 It depends how you want to manipulate it. Do you want to change the total in the userinfo and rofile fields when shown or do you want to change it permanently with a database command? Link to comment Share on other sites More sharing options...
0 yarrak Posted September 19, 2013 Author Share Posted September 19, 2013 i want to add for example +1000 thanks to spesific users and1 question how can i recount all the thanks ? Link to comment Share on other sites More sharing options...
0 yarrak Posted September 20, 2013 Author Share Posted September 20, 2013 you are a lifesaver i love you.im gonna try thank you so much Link to comment Share on other sites More sharing options...
0 000rune000 Posted September 20, 2013 Share Posted September 20, 2013 you are a lifesaver i love you.im gonna try thank you so much Or just go into the ACP > members > edit specific member > profile > find this: make it whatever you want Link to comment Share on other sites More sharing options...
0 Lock Down Posted September 20, 2013 Share Posted September 20, 2013 You are welcome. @000rune000 Reputation points is not thanked count. Link to comment Share on other sites More sharing options...
0 Phun Posted September 25, 2013 Share Posted September 25, 2013 The question(s) in this support topic have been answered and the owner has been able to solve the problem. Because of this, the support topic has been closed and moved.If you have other questions, please open a new topic. Link to comment Share on other sites More sharing options...
Question
yarrak
question is clear.i want to change the thanked count in profile.
Link to comment
Share on other sites
7 answers to this question
Recommended Posts