Good art is a taste, good design is an opinion.


Come as guest, stay as family.
Board Index

Come as guest, stay as family.


You are not connected. Please login or register

Foto

[Solved] Best answer problem



View previous topic View next topic Go down Message [Page 1 of 1]

1
Offline

  Blitzkrieg

Blitzkrieg
Punbb Rookie
Punbb Rookie
  • Description:
Now my problem is the box with the best answer is not is the right place.

Screenshot:

[Solved] Best answer problem Untitl11

  • Information:
Forum:http://phedu.forums.fmVersion:PUNBB
Type:Request a codeTags:problem

Powered by PunBB
Currently 0 users have thanked Blitzkrieg for this post:

2
Offline

  nanako

nanako
Punbb Guru
Punbb Guru
Hi, probably Test acc will do?

Powered by PunBB
Currently 0 users have thanked nanako for this post:

3
Offline

  Virus

Virus
★Moderator★
★Moderator★
Hello,

Can you provide a link where guests can see your problem? Or if you can't please send via pm and not in public, a test account information either to me or @nanako so we can help you.

Powered by PunBB
Currently 0 users have thanked Virus for this post:

4
Offline

  Blitzkrieg

Blitzkrieg
Punbb Rookie
Punbb Rookie
Thanks for the support but I was able to solved the adjustment of the box...

My problem now is that I am receiving "undefined" of viewing the full post....

Powered by PunBB
Currently 0 users have thanked Blitzkrieg for this post:

5
Offline

  Virus

Virus
★Moderator★
★Moderator★
Blitzkrieg wrote:[link="/t762-best-answer-problem#4989"]Thanks for the support but I was able to solved the adjustment of the box...

My problem now is that I am receiving "undefined" of viewing the full post....

If you hover that button you can see that the link has a problem. Check your templates and your Javascript for this and check the [ic]<a href="...">[/ic]. If you correct that one then you will be ok.

For further help i need to see the tutorial to help you.

Powered by PunBB
Currently 0 users have thanked Virus for this post:

6
Offline

  Blitzkrieg

Blitzkrieg
Punbb Rookie
Punbb Rookie
Virus wrote:[link="/t762-best-answer-problem#4993"]
Blitzkrieg wrote:[link="/t762-best-answer-problem#4989"]Thanks for the support but I was able to solved the adjustment of the box...

My problem now is that I am receiving "undefined" of viewing the full post....

If you hover that button you can see that the link has a problem. Check your templates and your Javascript for this and check the [ic]<a href="...">[/ic]. If you correct that one then you will be ok.

For further help i need to see the tutorial to help you.

When I hover the "View full post" it shows my forum url with a /undefined on it.

This is the JS I used:

Code:
$(function(){$('.posthead[style="background-color:#e9f7e1;"]').append('<div id="best-res" class="answerBadgeInPost">✓  Best Answer</div>').attr('style','background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,255,255,0.3)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-o-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:linear-gradient(to bottom,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);-webkit-box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;-moz-box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;background:#dfedd1;text-shadow:rgba(255,255,255,0.8)0px 1px 0px;border:1px solid#accf8b;');
var topicauthor = $('.posthead #best-res').parents('.posthead').find('.creator').html();
        var topicavatar = $('.post #best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a img').attr('src');
        var urlavt= $('.post best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a').attr('href');
        var topicpost = $('.posthead #best-res').parents('.posthead').find('a.post-number').attr('href');
        var topicdata = $('.post #best-res').parents('.post').find('span.data-post').html();
  var bestTopic = $('.post #best-res').parents('.post').find('.entry-content').html();

if($('#best-res').length){
        $('.main.paged').before('<div class="post_feature_box">
    <span class="ipsUserPhoto"><img src="'+topicavatar+'" /></span>
    <span class="ipsBadgee">Best Answer &nbsp;</span>Posted by:&nbsp; ' + topicauthor+'
 &nbsp;-&nbsp; ' +topicdata+'<div style="border: 1px solid #ddd; border-bottom: 1px solid #ececec; margin: 3px;"></div><div style="display: inline-block;">'+bestTopic+'</div>  <a href='+topicpost+'><span class="ipsBadgee" style="background: #B3B3B3;font-weight: normal !important;">View full post  <img class="icon" src="http://i.imgur.com/omzqZnf.png"></span></a>
    </div>');}
        });

Powered by PunBB
Currently 0 users have thanked Blitzkrieg for this post:

7
Offline

  Virus

Virus
★Moderator★
★Moderator★
The Javascript had [ic]a.post-number[/ic] as for [ic]post_id[/ic]. I changed that and lets hope i am right! Replace the Javascript with this code:
Code:
$(function(){$('.posthead[style="background-color:#e9f7e1;"]').append('<div id="best-res" class="answerBadgeInPost">✓  Best Answer</div>').attr('style','background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,255,255,0.3)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-o-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:linear-gradient(to bottom,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);-webkit-box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;-moz-box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;background:#dfedd1;text-shadow:rgba(255,255,255,0.8)0px 1px 0px;border:1px solid#accf8b;');
var topicauthor = $('.posthead #best-res').parents('.posthead').find('.creator').html();
        var topicavatar = $('.post #best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a img').attr('src');
        var urlavt= $('.post best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a').attr('href');
        var topicpost = $('.posthead #best-res').parents('.posthead').find('a.post-id').attr('href');
        var topicdata = $('.post #best-res').parents('.post').find('span.data-post').html();
  var bestTopic = $('.post #best-res').parents('.post').find('.entry-content').html();
if($('#best-res').length){
        $('.main.paged').before('<div class="post_feature_box">
    <span class="ipsUserPhoto"><img src="'+topicavatar+'" /></span>
    <span class="ipsBadgee">Best Answer &nbsp;</span>Posted by:&nbsp; ' + topicauthor+'
&nbsp;-&nbsp; ' +topicdata+'<div style="border: 1px solid #ddd; border-bottom: 1px solid #ececec; margin: 3px;"></div><div style="display: inline-block;">'+bestTopic+'</div>  <a href='+topicpost+'><span class="ipsBadgee" style="background: #B3B3B3;font-weight: normal !important;">View full post  <img class="icon" src="http://i.imgur.com/omzqZnf.png" /></span></a>
    </div>');}
        });

Powered by PunBB
Currently 0 users have thanked Virus for this post:

8
Offline

  Blitzkrieg

Blitzkrieg
Punbb Rookie
Punbb Rookie
Virus wrote:The Javascript had [ic]a.post-number[/ic] as for [ic]post_id[/ic]. I changed that and lets hope i am right! Replace the Javascript with this code:

No changes was made.. View full post still "undefined"

Powered by PunBB
Currently 0 users have thanked Blitzkrieg for this post:

9
Offline

  Virus

Virus
★Moderator★
★Moderator★
Ok. I will inform the Staff about this and someone will be here asap.

Powered by PunBB
Currently 0 users have thanked Virus for this post:

10
Offline

  Van-Helsing

Van-Helsing
★Moderator★
★Moderator★
Hello,
Can you post here your viewtopic_body template? Probably you must modify your javascript to work with your viewtopic_body template.

Powered by PunBB
Currently 0 users have thanked Van-Helsing for this post:

11
Offline

  Blitzkrieg

Blitzkrieg
Punbb Rookie
Punbb Rookie
Dark-Avenger wrote:[link="/t762-best-answer-problem#5007"]Hello,
Can you post here your viewtopic_body template? Probably you must modify your javascript to work with your viewtopic_body template.

Hello Sir,

Here is the code of my viewtopic_body

Code:
<script type="text/javascript">//<![CDATA[
var multiquote_img_off = '{JS_MULTIQUOTE_IMG_OFF}', multiquote_img_on = '{JS_MULTIQUOTE_IMG_ON}', _atr = '{JS_DIR}addthis/', _ati = '{PATH_IMG_FA}addthis/'{ADDTHIS_LANG}, addthis_localize = { share_caption: "{L_SHARE_CAPTION}", email: "{L_EMAIL}", email_caption: "{L_EMAIL_CAPTION}", favorites: "{L_SHARE_BOOKMARKS}", print: "{L_PRINT}", more: "{L_MORE}" };
$(function(){
   _atc.cwait = 0;
   $('.addthis_button').mouseup(function(){
      if ($('#at15s').css('display') == 'block') {
         addthis_close();
      }
   });
});

var hiddenMsgLabel = { visible:'{JS_HIDE_HIDDEN_MESSAGE}', hidden:'{JS_SHOW_HIDDEN_MESSAGE}' };
showHiddenMessage = function(id)
{
    try
    {
        var regId = parseInt(id, 10);
        if( isNaN(regId) ) { regId = 0; }
       
        if( regId > 0)
        {
            $('.post--' + id).toggle(0, function()
         {
            if( $(this).is(":visible") )
            {
               $('#hidden-title--' + id).html(hiddenMsgLabel.visible);
            }
            else
            {
               $('#hidden-title--' + id).html(hiddenMsgLabel.hidden);
            }
         });
        }
    }
    catch(e) { }
   
   return false;
};

//]]>
</script>

<!-- BEGIN switch_user_logged_in -->
<div id="pun-visit" class="clearfix">
   <ul>
      <!-- BEGIN switch_plus_menu -->
      <li>
         <script type="text/javascript">//<![CDATA[
            var url_favourite = '{switch_user_logged_in.U_FAVOURITE_JS_PLUS_MENU}';
            var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
            var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
            var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
            var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
            var url_tellfriend = '{U_TELLFRIEND_JS_PLUS_MENU}';
            insert_plus_menu_new('f{FORUM_ID}&amp;t={TOPIC_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
         //]]>
         </script>
      </li>
      <!-- END switch_plus_menu -->
      <li><a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=forumotion">{L_SHARE}</a></li>
      <li><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></li>
      <li><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></li>
      <!-- BEGIN watchtopic -->
      <li>{S_WATCH_TOPIC}</li>
      <!-- END watchtopic -->
   </ul>
   <p>{LOGGED_AS}. {LAST_VISIT_DATE}</p>
</div>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_user_logged_out -->
<div id="pun-visit">
   <p>{L_NOT_CONNECTED} {L_LOGIN_REGISTER}</p>
</div>
<!-- END switch_user_logged_out -->

<div class="pun-crumbs noprint">
   <p class="crumbs">
      <a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}&nbsp;»&nbsp;
      <strong><a href="{TOPIC_URL}">{TOPIC_TITLE}</a></strong>
      <!-- BEGIN switch_twitter_btn -->
      <span id="twitter_btn" style="margin-left: 6px; ">
         <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a>
         <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
      </span>
      <!-- END switch_twitter_btn -->
      <!-- BEGIN switch_fb_likebtn -->
      <span id="fb_likebtn" style="margin-left: 6px; ">
         <iframe src="http://www.facebook.com/plugins/like.php?href={FORUM_URL}{TOPIC_URL}&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:auto; height:21px;" allowTransparency="true"></iframe>
      </span>
      <!-- END switch_fb_likebtn -->
   </p>
</div>

<div class="main paged">
   <div class="paged-head clearfix">
      <!-- BEGIN topicpagination -->
      <p class="paging">{PAGINATION}</p>
      <!-- END topicpagination -->
      <p class="posting">
         <!-- BEGIN switch_user_authpost -->
         <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
         <!-- END switch_user_authpost -->

         <!-- BEGIN switch_user_authreply -->
         <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
         <!-- END switch_user_authreply -->
      </p>
   </div>
   {POLL_DISPLAY}
   <div class="main-head clearfix">
      <p class="h2">
         <a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a>&nbsp;<a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a>&nbsp;<a href="#bottom">{L_GOTO_DOWN}</a>&nbsp;&nbsp;
         {L_MESSAGE} [{PAGE_NUMBER}]
      </p>
   </div>

   <div class="main-content topic">
          <div class="subtopic">
      <!-- BEGIN postrow -->
         <!-- BEGIN hidden -->
            <p class="p-hidden">{postrow.hidden.MESSAGE}</p>
         <!-- END hidden -->
         
         <!-- BEGIN displayed -->
         <!-- BEGIN first_post_br -->
      </div>
      <hr id="first-post-br" />
      <div class="main-content topic">
               <!-- END first_post_br -->
    <div class="post post--{postrow.displayed.U_POST_ID}"{postrow.displayed.THANK_BGCOLOR} style="{postrow.displayed.DISPLAYABLE_STATE}">           
         <div id="p{postrow.displayed.U_POST_ID}" class="posthead"{postrow.displayed.THANK_BGCOLOR}>
<span style="float:right; font-size: 12px;"><a href="{postrow.displayed.POST_URL}">#{postrow.displayed.COUNT_POSTS}</a></span>
<h4 class="username"><span class="creator">{postrow.displayed.POSTER_NAME}</span> <span style="margin-left: 5px; margin-top: -3px;">{postrow.displayed.ONLINE_IMG}</span></h4>
</div>
            <div class="postmain" {postrow.displayed.THANK_BGCOLOR}>
                                  <h2>                  
                                              <p style="color: #a4a4a4; font-size: 12px;">Posted <span class="data-post">{postrow.displayed.POST_DATE_NEW}</span></p>
                  </h2>
               <div class="postbody"{postrow.displayed.THANK_BGCOLOR}>
                  <div class="user">
                     <div class="user-ident">
                        
                        <div class="user-basic-info">
                           {postrow.displayed.POSTER_AVATAR}<br />
                           
                        </div>
                                                        <div class="user-rank">{postrow.displayed.POSTER_RANK_NEW} <span class="user-imagerank">{postrow.displayed.RANK_IMAGE}</span></div></div>
                     <div class="user-info">
                                                          <!-- BEGIN profile_field -->
                        <div class="custom_field"> <div class="post_field">{postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}</div></div>
                        <!-- END profile_field -->
                        {postrow.displayed.POSTER_RPG}
                     </div>
                  </div>

                  <div class="post-entry">
                                                 
                                   
                     <div class="entry-content">
                        <!-- BEGIN switch_vote_active -->
                        <div class="vote gensmall">
                           <!-- BEGIN switch_vote -->
                           <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_PLUS}">+</a></div>
                           <!-- END switch_vote -->

                           <!-- BEGIN switch_bar -->
                           <div class="vote-bar" title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}">
                              <!-- BEGIN switch_vote_plus -->
                              <div class="vote-bar-plus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_plus.HEIGHT_PLUS}px;"></div>
                              <!-- END switch_vote_plus -->

                              <!-- BEGIN switch_vote_minus -->
                              <div class="vote-bar-minus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_minus.HEIGHT_MINUS}px;"></div>
                              <!-- END switch_vote_minus -->
                           </div>
                                                                  <div class="points" title="Meus Pontos" style="background: #acacac url(http://i.imgur.com/TyXZPf2.png) no-repeat top left;float: right;border: 1px solid #7b96bb;line-height: 17px;padding: 0 6px 0 24px;font-size: 11px;display: inline-block;-moz-border-radius: 2px;-webkit-border-radius: 2px;cursor: pointer;border-radius: 2px;color: #fff !important;"></div>
                           <!-- END switch_bar -->

                           <!-- BEGIN switch_no_bar -->
                           <div title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}" class="vote-no-bar">----</div>
                           <!-- END switch_no_bar -->

                           <!-- BEGIN switch_vote -->
                           <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_MINUS}">-</a></div>
                           <!-- END switch_vote -->
                        </div>
                        <!-- END switch_vote_active -->
                        <div>
                           <div>{postrow.displayed.MESSAGE}</div>
                           <!-- BEGIN switch_attachments -->
                           <dl class="attachbox">
                              <dt>{postrow.displayed.switch_attachments.L_ATTACHMENTS}</dt>
                              <dd>
                                 <!-- BEGIN switch_post_attachments -->
                                 <dl class="file">
                                    <dt>
                                       <img src="{postrow.displayed.switch_attachments.switch_post_attachments.U_IMG}" alt="" />

                                       <!-- BEGIN switch_dl_att -->
                                       <a class="postlink" href="{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.U_ATTACHMENT}">{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT}</a> {postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT_DEL}
                                       <!-- END switch_dl_att -->

                                       <!-- BEGIN switch_no_dl_att -->
                                       {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT} {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT_DEL}
                                       <!-- END switch_no_dl_att -->
                                    </dt>

                                    <!-- BEGIN switch_no_comment -->
                                    <dd>
                                       <em>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_comment.ATTACHMENT_COMMENT}</em>
                                    </dd>
                                    <!-- END switch_no_comment -->

                                    <!-- BEGIN switch_no_dl_att -->
                                    <dd>
                                       <em><strong>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.TEXT_NO_DL}</strong></em>
                                    </dd>
                                    <!-- END switch_no_dl_att -->

                                    <dd>({postrow.displayed.switch_attachments.switch_post_attachments.FILE_SIZE}) {postrow.displayed.switch_attachments.switch_post_attachments.NB_DL}</dd>
                                 </dl>
                                 <!-- END switch_post_attachments -->
                              </dd>
                           </dl>
                           <!-- END switch_attachments -->
                           <div class="clear"></div>
                        </div>
                        <p>
                                                                  <p class="edit">{postrow.displayed.EDITED_MESSAGE}</p>
                        </p>
                     </div>
                  </div>
               </div>

               <!-- BEGIN switch_signature -->
               <div class="sig-content">
                  {postrow.displayed.SIGNATURE_NEW}
               </div>
               <!-- END switch_signature -->

               <div class="postfoot">
                  <div class="user-contact profile_{postrow.displayed.PROFILE_POSITION}">
                     {postrow.displayed.PROFILE_IMG} {postrow.displayed.PM_IMG} {postrow.displayed.EMAIL_IMG}<!-- BEGIN contact_field --> {postrow.displayed.contact_field.CONTENT}<!-- END contact_field -->
                  </div>
                  <div class="post-options profile_{postrow.displayed.PROFILE_POSITION}">
                     {postrow.displayed.THANK_IMG} {postrow.displayed.MULTIQUOTE_IMG} {postrow.displayed.QUOTE_IMG} {postrow.displayed.EDIT_IMG} {postrow.displayed.DELETE_IMG} {postrow.displayed.IP_IMG} {postrow.displayed.REPORT_IMG}
                  </div>
                  <div style="clear:both;"></div>
               </div>
            </div>
         </div>
         <!-- END displayed -->
      <!-- END postrow -->
   </div></div>
 
   <div class="main-foot clearfix">
      <p class="h2">
         <a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a>&nbsp;<a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a>&nbsp;<a href="#top">{L_BACK_TO_TOP}</a>&nbsp;&nbsp;
         {L_MESSAGE} [{PAGE_NUMBER}]
      </p>
      <p class="options">
         <input type="hidden" name="t" value="{TOPIC_ID}" />

         <!-- <input type="hidden" name="sid" value="{S_SID}" /> -->
         <input type="hidden" name="{SECURE_ID_NAME}" value="{SECURE_ID_VALUE}" />

         <!-- BEGIN viewtopic_bottom -->
         {S_TOPIC_ADMIN}
         <!-- END viewtopic_bottom -->
      </p>
   </div>

   <a name="bottomtitle"></a>

   <div class="paged-foot clearfix">
      <!-- BEGIN topicpagination -->
      <p class="paging">{PAGINATION}</p>
      <!-- END topicpagination -->
      <p class="posting">
         <!-- BEGIN switch_user_authpost -->
         <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
         <!-- END switch_user_authpost -->

         <!-- BEGIN switch_user_authreply -->
         <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
         <!-- END switch_user_authreply -->
      </p>
   </div>

</div>

<div class="pun-crumbs">
   <p class="crumbs">
      <a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}&nbsp;»&nbsp;
      <strong><a href="{TOPIC_URL}">{TOPIC_TITLE}</a></strong>
   </p>
</div>

<!-- BEGIN promot_trafic -->
<div class="main" id="ptrafic_close" style="display:none">
   <div class="main-head clearfix">
      <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
      <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_MORE_IMG}" alt="+" align="" border="0" /></a></p>
   </div>
</div>
<div class="main" id="ptrafic_open" style="display:''">
   <div class="main-head clearfix">
      <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
      <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_LESS_IMG}" alt="-" align="" border="0" /></a></p>
   </div>
   <div class="main-content clearfix">
      <!-- BEGIN link -->
      »&nbsp;<a href="{promot_trafic.link.U_HREF}" target="_blank" title="{promot_trafic.link.TITLE}">{promot_trafic.link.TITLE}</a><br />
      <!-- END link -->
   </div>
</div>
<!-- END promot_trafic -->

<!-- BEGIN switch_forum_rules -->
<div class="main" id="forum_rules">
   <div class="main-head clearfix">
      <p class="h2">{L_FORUM_RULES}</p>
   </div>
   <table class="main-content frm">
      <tr>
         <!-- BEGIN switch_forum_rule_image -->
         <td class="logo">
            <img src="{RULE_IMG_URL}" alt="" />
         </td>
         <!-- END switch_forum_rule_image -->
         <td class="rules entry-content">
            {RULE_MSG}
         </td>
      </tr>
   </table>
</div>
<!-- END switch_forum_rules -->

<!-- BEGIN switch_user_logged_in -->
<a name="quickreply"></a>
{QUICK_REPLY_FORM}
<!-- END switch_user_logged_in -->

<div id="pun-info" class="main">
   <div class="main-content">
      <div id="stats">
         <p>{L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}</p>
      </div>
   </div>
</div>

<!-- BEGIN switch_image_resize -->
<script type="text/javascript">
//<![CDATA[
$(resize_images({ 'selector' : '.post-entry .entry-content', 'max_width' : {switch_image_resize.IMG_RESIZE_WIDTH}, 'max_height' : {switch_image_resize.IMG_RESIZE_HEIGHT} }));
//]]>
</script>
<!-- END switch_image_resize -->

<script src="{JS_DIR}addthis/addthis_widget.js" type="text/javascript"></script>


Screenshot:

[Solved] Best answer problem 210


Problems

1. (1 in screenshot) The View full post is giving an "undefined" URL

2. (2 in screenshot) How do I get rid of the plus and minus reputation on the best answer box.

Powered by PunBB
Currently 0 users have thanked Blitzkrieg for this post:

12
Offline

  nanako

nanako
Punbb Guru
Punbb Guru
For your #1 problem, try this.
change [ic]var topicpost = $('.posthead #best-res').parents('.posthead').find('a.post-number').attr('href');[/ic] into [ic]var topicpost = $('.posthead #best-res').parents('.posthead').find('h4 span a').attr('href');[/ic].
Don't know what to do with 2 though.

Powered by PunBB
Currently 0 users have thanked nanako for this post:

13
Offline

  Blitzkrieg

Blitzkrieg
Punbb Rookie
Punbb Rookie
nanako wrote:[link="/t762-best-answer-problem#5014"]For your #1 problem, try this.
change [ic]var topicpost = $('.posthead #best-res').parents('.posthead').find('a.post-number').attr('href');[/ic] into [ic]var topicpost = $('.posthead #best-res').parents('.posthead').find('h4 span a').attr('href');[/ic].
Don't know what to do with 2 though.

The code that you gave me, when I click "view full post" it redirect to the profile of the person whose post has been chosen as best answer and not with the post itself.

Powered by PunBB
Currently 0 users have thanked Blitzkrieg for this post:

14
Offline

  Van-Helsing

Van-Helsing
★Moderator★
★Moderator★
Hello,
Try this,

Javascript: In the Topics
Code:


    $(function(){
                $('.post h3[style="background-color:#e8f7e1;"]').append('<div id="best-res" class="answerBadgeInPost">✓  Best Answer</div>').attr('style','background-image: -moz-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.3)), color-stop(100%,rgba(255,255,255,0)));
            background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);background-image: -o-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);background-image: -ms-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);background-image: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);-webkit-box-shadow: inset rgba(255,255,255,0.35) 0px 1px 0px;-moz-box-shadow: inset rgba(255,255,255,0.35) 0px 1px 0px;box-shadow: inset rgba(255,255,255,0.35) 0px 1px 0px;background: #dfedd1;text-shadow: rgba(255,255,255,0.8) 0px 1px 0px;border: 1px solid #accf8b;');
                var topicauthor = $('.post #best-res').parents('.post').find('.author').html();
                var topicavatar = $('.post #best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a img').attr('src');
                var urlavt= $('.post #best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a').attr('href');
                var topicpost = $('.post #best-res').parents('.post').find('h3 a').attr('href');
                var topicdata = $('.post #best-res').parents('.post').find('.published').html();
                var bestTopic = $('.post #best-res').parents('.post').find('.entry-content div').last().prev().html();
            if($('#best-res').length){
                $('.main.paged').before('<div class="post_feature_box">
            <span class="ipsUserPhoto"><img src="'+topicavatar+'" /></span>
            <span class="ipsBadge">Best Answer</span> '+topicauthor+', '+topicdata+'<div style="border: 1px solid #ddd; border-bottom: 1px solid #ececec; margin: 3px;"></div><div style="display: inline-block;">'+bestTopic+'</div><a href="'+topicpost+'">
                    <span class="ipsBadge" style="background: #B3B3B3;font-weight: normal !important;">See the best answer <img class="icon" src="http://i.imgur.com/omzqZnf.png"></span></a>
            </div>');}
                });

CSS:
Code:


    .post_feature_box {
          margin-top: 5px;
          max-width:100%;
          background-color: rgb(234, 248, 226);
          border: 1px dotted rgb(51, 51, 51);
          padding: 6px;
          min-height: 60px;
        }

        #best-res {
          color: #436500;
          background: #dfedd1;
          text-shadow: rgba(255,255,255,0.8) 0px 1px 0px;
          border: 1px solid #accf8b;
          border-top: 0;
          padding: 0 12px;
          height: 30px;
          line-height: 30px;
          position: relative;
          float: right;
          margin: -1px -2px 8px 8px;
          -webkit-border-bottom-left-radius: 3px;
          -webkit-border-bottom-right-radius: 3px;
          -moz-border-radius: 0px 0px 3px 3px;
          border-radius: 0px 0px 3px 3px;
        }

        .ipsUserPhoto {
          float: left;
          padding: 1px;
          border: 1px solid #d5d5d5;
          background: #fff;
          -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
          -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
          box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
          margin-right: 8px;
        }

        .ipsUserPhoto:hover {
          border-color: #7d7d7d;
        }

        .ipsUserPhoto img {
          width: 50px;
          height: 50px;
        }

        .ipsBadge {
          background: #7ba60d;
          display: inline-block;
          height: 16px;
          line-height: 16px;
          padding: 0 5px;
          font-size: 9px;
          font-weight: bold;
          text-transform: uppercase;
          color: #fff;
          -moz-border-radius: 4px;
          -webkit-border-radius: 4px;
          border-radius: 4px;
          vertical-align: middle;
          margin-right: 8px;
        }

Furthermore you will need to install the LGLike Code system to work the best answer. As I saw you haven't install the LGLike.

Powered by PunBB
Currently 0 users have thanked Van-Helsing for this post:

15
Offline

  Virus

Virus
★Moderator★
★Moderator★
Please do not remove the codes if you see that they don't work because after that we cannot help because we get the same results. Try keeping the wrong codes in because if we leave and come back in one hour we have to check the wrong code to see what goes wrong and fix it.

Thank you!

Powered by PunBB
Currently 0 users have thanked Virus for this post:

16
Offline

  Blitzkrieg

Blitzkrieg
Punbb Rookie
Punbb Rookie
Dark-Avenger wrote:[link="/t762-best-answer-problem#5017"]Hello,
Try this,

Javascript: In the Topics
Code:


    $(function(){
                $('.post h3[style="background-color:#e8f7e1;"]').append('<div id="best-res" class="answerBadgeInPost">✓  Best Answer</div>').attr('style','background-image: -moz-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.3)), color-stop(100%,rgba(255,255,255,0)));
            background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);background-image: -o-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);background-image: -ms-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);background-image: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);-webkit-box-shadow: inset rgba(255,255,255,0.35) 0px 1px 0px;-moz-box-shadow: inset rgba(255,255,255,0.35) 0px 1px 0px;box-shadow: inset rgba(255,255,255,0.35) 0px 1px 0px;background: #dfedd1;text-shadow: rgba(255,255,255,0.8) 0px 1px 0px;border: 1px solid #accf8b;');
                var topicauthor = $('.post #best-res').parents('.post').find('.author').html();
                var topicavatar = $('.post #best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a img').attr('src');
                var urlavt= $('.post #best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a').attr('href');
                var topicpost = $('.post #best-res').parents('.post').find('h3 a').attr('href');
                var topicdata = $('.post #best-res').parents('.post').find('.published').html();
                var bestTopic = $('.post #best-res').parents('.post').find('.entry-content div').last().prev().html();
            if($('#best-res').length){
                $('.main.paged').before('<div class="post_feature_box">
            <span class="ipsUserPhoto"><img src="'+topicavatar+'" /></span>
            <span class="ipsBadge">Best Answer</span> '+topicauthor+', '+topicdata+'<div style="border: 1px solid #ddd; border-bottom: 1px solid #ececec; margin: 3px;"></div><div style="display: inline-block;">'+bestTopic+'</div><a href="'+topicpost+'">
                    <span class="ipsBadge" style="background: #B3B3B3;font-weight: normal !important;">See the best answer <img class="icon" src="http://i.imgur.com/omzqZnf.png"></span></a>
            </div>');}
                });

CSS:
Code:


    .post_feature_box {
          margin-top: 5px;
          max-width:100%;
          background-color: rgb(234, 248, 226);
          border: 1px dotted rgb(51, 51, 51);
          padding: 6px;
          min-height: 60px;
        }

        #best-res {
          color: #436500;
          background: #dfedd1;
          text-shadow: rgba(255,255,255,0.8) 0px 1px 0px;
          border: 1px solid #accf8b;
          border-top: 0;
          padding: 0 12px;
          height: 30px;
          line-height: 30px;
          position: relative;
          float: right;
          margin: -1px -2px 8px 8px;
          -webkit-border-bottom-left-radius: 3px;
          -webkit-border-bottom-right-radius: 3px;
          -moz-border-radius: 0px 0px 3px 3px;
          border-radius: 0px 0px 3px 3px;
        }

        .ipsUserPhoto {
          float: left;
          padding: 1px;
          border: 1px solid #d5d5d5;
          background: #fff;
          -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
          -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
          box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
          margin-right: 8px;
        }

        .ipsUserPhoto:hover {
          border-color: #7d7d7d;
        }

        .ipsUserPhoto img {
          width: 50px;
          height: 50px;
        }

        .ipsBadge {
          background: #7ba60d;
          display: inline-block;
          height: 16px;
          line-height: 16px;
          padding: 0 5px;
          font-size: 9px;
          font-weight: bold;
          text-transform: uppercase;
          color: #fff;
          -moz-border-radius: 4px;
          -webkit-border-radius: 4px;
          border-radius: 4px;
          vertical-align: middle;
          margin-right: 8px;
        }

Furthermore you will need to install the LGLike Code system to work the best answer. As I saw you haven't install the LGLike.

Still not working Sir, The more the Best Answer box didn't show up..

I will post all the code I use, CSS, JS and my Viewtopic_body

1. Javascript

Code:
$(function(){$('.posthead[style="background-color:#e9f7e1;"]').append('<div id="best-res" class="answerBadgeInPost">✓  Best Answer</div>').attr('style','background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,255,255,0.3)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-o-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);background-image:linear-gradient(to bottom,rgba(255,255,255,0.3)0%,rgba(255,255,255,0)100%);-webkit-box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;-moz-box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;box-shadow:inset rgba(255,255,255,0.35)0px 1px 0px;background:#dfedd1;text-shadow:rgba(255,255,255,0.8)0px 1px 0px;border:1px solid#accf8b;');
        var topicauthor = $('.posthead #best-res').parents('.posthead').find('.creator').html();
                var topicavatar = $('.post #best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a img').attr('src');
                var urlavt= $('.post best-res').parents('.post').find('.postmain .postbody .user .user-ident .user-basic-info a').attr('href');

var topicpost = $('.posthead #best-res').parents('.posthead').find('post_id').attr('href');

           
                var topicdata = $('.post #best-res').parents('.post').find('span.data-post').html();
          var bestTopic = $('.post #best-res').parents('.post').find('.entry-content').html();
        if($('#best-res').length){
                $('.main.paged').before('<div class="post_feature_box">
            <span class="ipsUserPhoto"><img src="'+topicavatar+'" /></span>
            <span class="ipsBadge">Best Answer &nbsp;</span>Posted by:&nbsp; ' + topicauthor+'
        &nbsp;-&nbsp; ' +topicdata+'<div style="border: 1px solid #ddd; border-bottom: 1px solid #ececec; margin: 3px;"></div><div style="display: inline-block;">'+bestTopic+'</div>  <a href='+topicpost+'><span class="ipsBadge" style="background: #B3B3B3;font-weight: normal !important;">View full post  <img class="icon" src="http://i.imgur.com/omzqZnf.png" /></span></a>
            </div>');}
                });

2. CSS

Code:
                .post_feature_box {
      margin-top: 5px;
      max-width:100%;
      background-color: rgb(234, 248, 226);
      border: 1px dotted rgb(51, 51, 51);
      padding: 6px;
      min-height: 60px;
    }
    #best-res {
    color: #436500;
    background: #dfedd1;
    text-shadow: rgba(255,255,255,0.8) 0px 1px 0px;
    border: 1px solid #accf8b;
    border-top: 0;
    padding: 0 12px;
    height: 30px;
    line-height: 30px;
    position: relative;
    float: right;
    margin: -1px -2px 8px 8px;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius: 0px 0px 3px 3px;
    border-radius: 0px 0px 3px 3px;
    }
    .ipsUserPhoto {
    float: left;
    padding: 1px;
    border: 1px solid #d5d5d5;
    background: #fff;
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
    margin-right: 8px;
    }
    .ipsUserPhoto:hover {
    border-color: #7d7d7d;
    }
    .ipsUserPhoto img {
    width: 50px;
    height: 50px;
    }
    .ipsBadge {
    background: #7ba60d;
    display: inline-block;
    height: 16px;
    line-height: 16px;
    padding: 0 5px;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 8px;
    }

3. viewtopic_body

Code:
<script type="text/javascript">//<![CDATA[
var multiquote_img_off = '{JS_MULTIQUOTE_IMG_OFF}', multiquote_img_on = '{JS_MULTIQUOTE_IMG_ON}', _atr = '{JS_DIR}addthis/', _ati = '{PATH_IMG_FA}addthis/'{ADDTHIS_LANG}, addthis_localize = { share_caption: "{L_SHARE_CAPTION}", email: "{L_EMAIL}", email_caption: "{L_EMAIL_CAPTION}", favorites: "{L_SHARE_BOOKMARKS}", print: "{L_PRINT}", more: "{L_MORE}" };
$(function(){
   _atc.cwait = 0;
   $('.addthis_button').mouseup(function(){
      if ($('#at15s').css('display') == 'block') {
         addthis_close();
      }
   });
});

var hiddenMsgLabel = { visible:'{JS_HIDE_HIDDEN_MESSAGE}', hidden:'{JS_SHOW_HIDDEN_MESSAGE}' };
showHiddenMessage = function(id)
{
    try
    {
        var regId = parseInt(id, 10);
        if( isNaN(regId) ) { regId = 0; }
       
        if( regId > 0)
        {
            $('.post--' + id).toggle(0, function()
         {
            if( $(this).is(":visible") )
            {
               $('#hidden-title--' + id).html(hiddenMsgLabel.visible);
            }
            else
            {
               $('#hidden-title--' + id).html(hiddenMsgLabel.hidden);
            }
         });
        }
    }
    catch(e) { }
   
   return false;
};

//]]>
</script>

<!-- BEGIN switch_user_logged_in -->
<div id="pun-visit" class="clearfix">
   <ul>
      <!-- BEGIN switch_plus_menu -->
      <li>
         <script type="text/javascript">//<![CDATA[
            var url_favourite = '{switch_user_logged_in.U_FAVOURITE_JS_PLUS_MENU}';
            var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
            var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
            var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
            var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
            var url_tellfriend = '{U_TELLFRIEND_JS_PLUS_MENU}';
            insert_plus_menu_new('f{FORUM_ID}&amp;t={TOPIC_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
         //]]>
         </script>
      </li>
      <!-- END switch_plus_menu -->
      <li><a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=forumotion">{L_SHARE}</a></li>
      <li><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></li>
      <li><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></li>
      <!-- BEGIN watchtopic -->
      <li>{S_WATCH_TOPIC}</li>
      <!-- END watchtopic -->
   </ul>
   <p>{LOGGED_AS}. {LAST_VISIT_DATE}</p>
</div>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_user_logged_out -->
<div id="pun-visit">
   <p>{L_NOT_CONNECTED} {L_LOGIN_REGISTER}</p>
</div>
<!-- END switch_user_logged_out -->
<!--
<div class="pun-crumbs noprint">
   <p class="crumbs">
      <a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}&nbsp;»&nbsp;
      <strong><a href="{TOPIC_URL}">{TOPIC_TITLE}</a></strong>
// BEGIN switch_twitter_btn
      <span id="twitter_btn" style="margin-left: 6px; ">
         <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a>
         <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
      </span>
// END switch_twitter_btn
// BEGIN switch_fb_likebtn
      <span id="fb_likebtn" style="margin-left: 6px; ">
         <iframe src="http://www.facebook.com/plugins/like.php?href={FORUM_URL}{TOPIC_URL}&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:auto; height:21px;" allowTransparency="true"></iframe>
      </span>
// END switch_fb_likebtn
   </p>
</div>-->

<!--Title on top of Post-->
            <div class="titlebox">
            <dd> <dava><div class="avatarredet"><a class="teste2" href="#">
            <img class="teste" alt="" src="http://r26.imgfast.net/users/2617/31/90/74/avatars/1-40.png" /></a></div></dava>
            <div itemscope="" itemtype="http://schema.org/Article" class="ipsBox_withphoto">
            <h1 itemprop="name" class="ipsType_pagetitle">{TOPIC_TITLE}</h1>
            <div class="desc lighter blend_links">
            <dts>Started by </dts><span itemprop="creator">{postrow.displayed.POSTER_NAME}</span>, <span itemprop="data_post"></span></div></div>
            <!-- BEGIN switch_user_logged_in -->
            <!-- BEGIN watchtopic -->
            <div class="seguir">
            <li>{S_WATCH_TOPIC}</li>
            </div>
            <!-- END watchtopic -->
            <!-- END switch_user_logged_in -->
            </dd></div>
<!--Title end-->



<div class="main paged">
   <div class="paged-head clearfix">
      <!-- BEGIN topicpagination -->
      <p class="paging">{PAGINATION}</p>
      <!-- END topicpagination -->
      <p class="posting">
         <!-- BEGIN switch_user_authpost -->
         <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
         <!-- END switch_user_authpost -->

         <!-- BEGIN switch_user_authreply -->
         <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
         <!-- END switch_user_authreply -->
      </p>
   </div>
   {POLL_DISPLAY}
   <div class="main-head clearfix">
      <p class="h2">
         <a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a>&nbsp;<a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a>&nbsp;<a href="#bottom">{L_GOTO_DOWN}</a>&nbsp;&nbsp;
         {L_MESSAGE} [{PAGE_NUMBER}]
      </p>
   </div>

   <div class="main-content topic">
          <div class="subtopic">
      <!-- BEGIN postrow -->
         <!-- BEGIN hidden -->
            <p class="p-hidden">{postrow.hidden.MESSAGE}</p>
         <!-- END hidden -->
         
         <!-- BEGIN displayed -->
         <!-- BEGIN first_post_br -->
      </div>
      <hr id="first-post-br" />
      <div class="main-content topic">
               <!-- END first_post_br -->
    <div class="post post--{postrow.displayed.U_POST_ID}"{postrow.displayed.THANK_BGCOLOR} style="{postrow.displayed.DISPLAYABLE_STATE}">           
         <div id="p{postrow.displayed.U_POST_ID}" class="posthead"{postrow.displayed.THANK_BGCOLOR}>
<span style="float:right; font-size: 12px;"><a href="{postrow.displayed.POST_URL}">#{postrow.displayed.COUNT_POSTS}</a></span>
<h4 class="username"><span class="creator">{postrow.displayed.POSTER_NAME}</span> <span style="margin-left: 5px; margin-top: -3px;">{postrow.displayed.ONLINE_IMG}</span></h4>
</div>
            <div class="postmain" {postrow.displayed.THANK_BGCOLOR}>
                                  <h2>                  
                                          <!--    <p style="color: #a4a4a4; font-size: 12px;">Posted <span class="data-post">{postrow.displayed.POST_DATE_NEW}</span></p>-->
                  </h2>
               <div class="postbody"{postrow.displayed.THANK_BGCOLOR}>
                  <div class="user">
                     <div class="user-ident">
                        
                        <div class="user-basic-info">
                           {postrow.displayed.POSTER_AVATAR}<br />
                           
                        </div>
                                                        <div class="user-rank">{postrow.displayed.POSTER_RANK_NEW} <span class="user-imagerank">{postrow.displayed.RANK_IMAGE}</span></div></div>
                     <div class="user-info">
                                                          <!-- BEGIN profile_field -->
                        <div class="custom_field"> <div class="post_field">{postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}</div></div>
                        <!-- END profile_field -->
                        {postrow.displayed.POSTER_RPG}
                     </div>
                  </div>

                  <div class="post-entry">
                                             
                                                  <p style="color: #a4a4a4; font-size: 12px;">Posted <span class="data-post">{postrow.displayed.POST_DATE_NEW}</span></p><br>
                                   
                     <div class="entry-content">
                        <!-- BEGIN switch_vote_active -->
                        <div class="vote gensmall">
                           <!-- BEGIN switch_vote -->
                           <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_PLUS}">+</a></div>
                           <!-- END switch_vote -->

                           <!-- BEGIN switch_bar -->
                           <div class="vote-bar" title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}">
                              <!-- BEGIN switch_vote_plus -->
                              <div class="vote-bar-plus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_plus.HEIGHT_PLUS}px;"></div>
                              <!-- END switch_vote_plus -->

                              <!-- BEGIN switch_vote_minus -->
                              <div class="vote-bar-minus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_minus.HEIGHT_MINUS}px;"></div>
                              <!-- END switch_vote_minus -->
                           </div>
                                                                  <div class="points" title="Meus Pontos" style="background: #acacac url(http://i.imgur.com/TyXZPf2.png) no-repeat top left;float: right;border: 1px solid #7b96bb;line-height: 17px;padding: 0 6px 0 24px;font-size: 11px;display: inline-block;-moz-border-radius: 2px;-webkit-border-radius: 2px;cursor: pointer;border-radius: 2px;color: #fff !important;"></div>
                           <!-- END switch_bar -->

                           <!-- BEGIN switch_no_bar -->
                           <div title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}" class="vote-no-bar">----</div>
                           <!-- END switch_no_bar -->

                           <!-- BEGIN switch_vote -->
                           <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_MINUS}">-</a></div>
                           <!-- END switch_vote -->
                        </div>
                        <!-- END switch_vote_active -->
                        <div>
                           <div>{postrow.displayed.MESSAGE}</div>
                           <!-- BEGIN switch_attachments -->
                           <dl class="attachbox">
                              <dt>{postrow.displayed.switch_attachments.L_ATTACHMENTS}</dt>
                              <dd>
                                 <!-- BEGIN switch_post_attachments -->
                                 <dl class="file">
                                    <dt>
                                       <img src="{postrow.displayed.switch_attachments.switch_post_attachments.U_IMG}" alt="" />

                                       <!-- BEGIN switch_dl_att -->
                                       <a class="postlink" href="{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.U_ATTACHMENT}">{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT}</a> {postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT_DEL}
                                       <!-- END switch_dl_att -->

                                       <!-- BEGIN switch_no_dl_att -->
                                       {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT} {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT_DEL}
                                       <!-- END switch_no_dl_att -->
                                    </dt>

                                    <!-- BEGIN switch_no_comment -->
                                    <dd>
                                       <em>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_comment.ATTACHMENT_COMMENT}</em>
                                    </dd>
                                    <!-- END switch_no_comment -->

                                    <!-- BEGIN switch_no_dl_att -->
                                    <dd>
                                       <em><strong>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.TEXT_NO_DL}</strong></em>
                                    </dd>
                                    <!-- END switch_no_dl_att -->

                                    <dd>({postrow.displayed.switch_attachments.switch_post_attachments.FILE_SIZE}) {postrow.displayed.switch_attachments.switch_post_attachments.NB_DL}</dd>
                                 </dl>
                                 <!-- END switch_post_attachments -->
                              </dd>
                           </dl>
                           <!-- END switch_attachments -->
                           <div class="clear"></div>
                        </div>
                        <p>
                                                                  <p class="edit">{postrow.displayed.EDITED_MESSAGE}</p>
                        </p>
                     </div>
                  </div>
               </div>

               <!-- BEGIN switch_signature -->
               <div class="sig-content">
                  {postrow.displayed.SIGNATURE_NEW}
               </div>
               <!-- END switch_signature -->

               <div class="postfoot">
                  <div class="user-contact profile_{postrow.displayed.PROFILE_POSITION}">
                     {postrow.displayed.PROFILE_IMG} {postrow.displayed.PM_IMG} {postrow.displayed.EMAIL_IMG}<!-- BEGIN contact_field --> {postrow.displayed.contact_field.CONTENT}<!-- END contact_field -->
                  </div>
                  <div class="post-options profile_{postrow.displayed.PROFILE_POSITION}">
                     {postrow.displayed.THANK_IMG} {postrow.displayed.MULTIQUOTE_IMG} {postrow.displayed.QUOTE_IMG} {postrow.displayed.EDIT_IMG} {postrow.displayed.DELETE_IMG} {postrow.displayed.IP_IMG} {postrow.displayed.REPORT_IMG}
                  </div>
                  <div style="clear:both;"></div>
               </div>
            </div>
         </div>
         <!-- END displayed -->
      <!-- END postrow -->
   </div></div>
 
   <div class="main-foot clearfix">
      <p class="h2">
         <a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a>&nbsp;<a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a>&nbsp;<a href="#top">{L_BACK_TO_TOP}</a>&nbsp;&nbsp;
         {L_MESSAGE} [{PAGE_NUMBER}]
      </p>
      <p class="options">
         <input type="hidden" name="t" value="{TOPIC_ID}" />

         <!-- <input type="hidden" name="sid" value="{S_SID}" /> -->
         <input type="hidden" name="{SECURE_ID_NAME}" value="{SECURE_ID_VALUE}" />

         <!-- BEGIN viewtopic_bottom -->
         {S_TOPIC_ADMIN}
         <!-- END viewtopic_bottom -->
      </p>
   </div>

   <a name="bottomtitle"></a>

   <div class="paged-foot clearfix">
      <!-- BEGIN topicpagination -->
      <p class="paging">{PAGINATION}</p>
      <!-- END topicpagination -->
      <p class="posting">
         <!-- BEGIN switch_user_authpost -->
         <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
         <!-- END switch_user_authpost -->

         <!-- BEGIN switch_user_authreply -->
         <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
         <!-- END switch_user_authreply -->
      </p>
   </div>

</div>
<!--
<div class="pun-crumbs">
   <p class="crumbs">
      <a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}&nbsp;»&nbsp;
      <strong><a href="{TOPIC_URL}">{TOPIC_TITLE}</a></strong>
   </p>
</div>
-->
<!--Share Topic URL-->
          <div class="main">
            <div class="avt_recent">
            <div class="main-head clearfix">
          <style type="text/css">
            .avt-r {
            float: left;
            }
            .avt-r img {
            width: 30px;
            height: 30px;
            margin: 3px;
            padding: 1px;
            border: 1px solid #D5D5D5;
            background: white;
            -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
            box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
            }
            .avt-r img:hover {
            border-color: #a1a1a1;
            -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
            -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
            box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
            }</style>
    <!--        <script type="text/javascript">
            jQuery(document).on('ready', function() {
            jQuery('.avt_recent').prepend('<div class="avt-r"><div>');
            jQuery('.avt_recent .avt-r').each(function () {
            var profileUserURL = jQuery(this).parent().children('.recent_space').children('a:last').attr('href');
            jQuery(this).html('<a href="' + profileUserURL + '" class="avt-r-enlace"><img src="http://i78.servimg.com/u/f78/18/17/62/92/defaul10.png" alt="No Avatar" /></a>');
            jQuery(this).children('a').load(profileUserURL + ' .module:eq(0) img:eq(0)')
            });
            });</script>-->
            <p class="h2">Share this topic!</p>
            </div>
            <div class="main-content frm comp">
            <table border="0">
            <tr>
            <td><strong>Direct</strong></td>
            <td><input type="text" style="width:850px;" value="{FORUM_URL}{TOPIC_URL}" /></td>
            </tr>
            <tr>
            <td><strong>BBcode</strong></td>
            <td><input type="text" style="width:850px;" value="[url={FORUM_URL}{TOPIC_URL}] {TOPIC_TITLE} [/url]" /></td>
            </tr>
            <tr>
            <td><strong>HTML</strong></td>
            <td><input type="text" style="width:850px;" value="<a href='{FORUM_URL}{TOPIC_URL}'> {TOPIC_TITLE} </a>" /></td>
            </tr>
            </table>
            </div>
            </div>
            </div>
<!--Topic end-->


<!-- BEGIN promot_trafic -->
<div class="main" id="ptrafic_close" style="display:none">
   <div class="main-head clearfix">
      <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
      <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_MORE_IMG}" alt="+" align="" border="0" /></a></p>
   </div>
</div>
<div class="main" id="ptrafic_open" style="display:''">
   <div class="main-head clearfix">
      <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
      <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_LESS_IMG}" alt="-" align="" border="0" /></a></p>
   </div>
   <div class="main-content clearfix">
      <!-- BEGIN link -->
      »&nbsp;<a href="{promot_trafic.link.U_HREF}" target="_blank" title="{promot_trafic.link.TITLE}">{promot_trafic.link.TITLE}</a><br />
      <!-- END link -->
   </div>
</div>
<!-- END promot_trafic -->

<!-- BEGIN switch_forum_rules -->
<div class="main" id="forum_rules">
   <div class="main-head clearfix">
      <p class="h2">{L_FORUM_RULES}</p>
   </div>
   <table class="main-content frm">
      <tr>
         <!-- BEGIN switch_forum_rule_image -->
         <td class="logo">
            <img src="{RULE_IMG_URL}" alt="" />
         </td>
         <!-- END switch_forum_rule_image -->
         <td class="rules entry-content">
            {RULE_MSG}
         </td>
      </tr>
   </table>
</div>
<!-- END switch_forum_rules -->

<!-- BEGIN switch_user_logged_in -->
<a name="quickreply"></a>
{QUICK_REPLY_FORM}
<!-- END switch_user_logged_in -->

<div id="pun-info" class="main">
   <div class="main-content">
      <div id="stats">
         <p>{L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}</p>
      </div>
   </div>
</div>

<!-- BEGIN switch_image_resize -->
<script type="text/javascript">
//<![CDATA[
$(resize_images({ 'selector' : '.post-entry .entry-content', 'max_width' : {switch_image_resize.IMG_RESIZE_WIDTH}, 'max_height' : {switch_image_resize.IMG_RESIZE_HEIGHT} }));
//]]>
</script>
<!-- END switch_image_resize -->

<script src="{JS_DIR}addthis/addthis_widget.js" type="text/javascript"></script>

Powered by PunBB
Currently 0 users have thanked Blitzkrieg for this post:

17
Offline

  Van-Helsing

Van-Helsing
★Moderator★
★Moderator★
Hello,
The best answer button works with Thanks button http://prntscr.com/575n9z when you press the thanks button the best answer will be show under the topic title. Just make a button and name it Best Answer. Then go to the http://prntscr.com/575onr then http://prntscr.com/575q2f . Dont forget to change the Thank and Thanked buttons http://prntscr.com/575sie to best answer. Then the author of the post must press Best Answer Button on the best reply (Old thanks Button) the Best answer box displayed looks like that http://prntscr.com/575rkk and the thanked reply like this http://prntscr.com/575s5l .

Powered by PunBB
Currently 0 users have thanked Van-Helsing for this post:

18
Offline

  Blitzkrieg

Blitzkrieg
Punbb Rookie
Punbb Rookie
Dark-Avenger wrote:[link="/t762p15-best-answer-problem#5087"]Hello,
The best answer button works with Thanks button http://prntscr.com/575n9z when you press the thanks button the best answer will be show under the topic title. Just make a button and name it Best Answer. Then go to the http://prntscr.com/575onr then http://prntscr.com/575q2f . Dont forget to change the Thank and Thanked buttons http://prntscr.com/575sie to best answer. Then the author of the post must press Best Answer Button on the best reply (Old thanks Button) the Best answer box displayed looks like that http://prntscr.com/575rkk and the thanked reply like this http://prntscr.com/575s5l .

Yeah no problem with the thanks button mate.. I enable everything and everything works perfectly except for the url of the best answer when I want to view the full post. Instead it will redirect me to view the full post the url is undefined. It doesn't feed the url correctly.

Powered by PunBB
Currently 0 users have thanked Blitzkrieg for this post:

19
Offline

  Van-Helsing

Van-Helsing
★Moderator★
★Moderator★
I found a missed part in your template and probably for this reason it redirects you. Make a backup of your viewtopic_body template in text file and try this code:

viewtopic_body template:
Code:

        <script type="text/javascript">//<![CDATA[
        var multiquote_img_off = '{JS_MULTIQUOTE_IMG_OFF}', multiquote_img_on = '{JS_MULTIQUOTE_IMG_ON}', _atr = '{JS_DIR}addthis/', _ati = '{PATH_IMG_FA}addthis/'{ADDTHIS_LANG}, addthis_localize = { share_caption: "{L_SHARE_CAPTION}", email: "{L_EMAIL}", email_caption: "{L_EMAIL_CAPTION}", favorites: "{L_SHARE_BOOKMARKS}", print: "{L_PRINT}", more: "{L_MORE}" };
        $(function(){
          _atc.cwait = 0;
          $('.addthis_button').mouseup(function(){
              if ($('#at15s').css('display') == 'block') {
                addthis_close();
              }
          });
        });
        var hiddenMsgLabel = { visible:'{JS_HIDE_HIDDEN_MESSAGE}', hidden:'{JS_SHOW_HIDDEN_MESSAGE}' };
        showHiddenMessage = function(id)
        {
            try
            {
                var regId = parseInt(id, 10);
                if( isNaN(regId) ) { regId = 0; }
               
                if( regId > 0)
                {
                    $('.post--' + id).toggle(0, function()
                {
                    if( $(this).is(":visible") )
                    {
                      $('#hidden-title--' + id).html(hiddenMsgLabel.visible);
                    }
                    else
                    {
                      $('#hidden-title--' + id).html(hiddenMsgLabel.hidden);
                    }
                });
                }
            }
            catch(e) { }
           
          return false;
        };
        //]]>
        </script>
        <!-- BEGIN switch_user_logged_in -->
        <div id="pun-visit" class="clearfix">
          <ul>
              <!-- BEGIN switch_plus_menu -->
              <li>
                <script type="text/javascript">//<![CDATA[
                    var url_favourite = '{switch_user_logged_in.U_FAVOURITE_JS_PLUS_MENU}';
                    var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
                    var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
                    var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
                    var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
                    var url_tellfriend = '{U_TELLFRIEND_JS_PLUS_MENU}';
                    insert_plus_menu_new('f{FORUM_ID}&amp;t={TOPIC_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
                //]]>
                </script>
              </li>
              <!-- END switch_plus_menu -->
              <li><a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=forumotion">{L_SHARE}</a></li>
              <li><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></li>
              <li><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></li>
              <!-- BEGIN watchtopic -->
              <li>{S_WATCH_TOPIC}</li>
              <!-- END watchtopic -->
          </ul>
          <p>{LOGGED_AS}. {LAST_VISIT_DATE}</p>
        </div>
        <!-- END switch_user_logged_in -->
        <!-- BEGIN switch_user_logged_out -->
        <div id="pun-visit">
          <p>{L_NOT_CONNECTED} {L_LOGIN_REGISTER}</p>
        </div>
        <!-- END switch_user_logged_out -->
        <!--
        <div class="pun-crumbs noprint">
          <p class="crumbs">
              <a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}&nbsp;»&nbsp;
              <strong><a href="{TOPIC_URL}">{TOPIC_TITLE}</a></strong>
        // BEGIN switch_twitter_btn
              <span id="twitter_btn" style="margin-left: 6px; ">
                <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a>
                <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
              </span>
        // END switch_twitter_btn
        // BEGIN switch_fb_likebtn
              <span id="fb_likebtn" style="margin-left: 6px; ">
                <iframe src="http://www.facebook.com/plugins/like.php?href={FORUM_URL}{TOPIC_URL}&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:auto; height:21px;" allowTransparency="true"></iframe>
              </span>
        // END switch_fb_likebtn
          </p>
        </div>-->
        <!--Title on top of Post-->
                    <div class="titlebox">
                    <dd> <dava><div class="avatarredet"><a class="teste2" href="#">
                    <img class="teste" alt="" src="http://r26.imgfast.net/users/2617/31/90/74/avatars/1-40.png" /></a></div></dava>
                    <div itemscope="" itemtype="http://schema.org/Article" class="ipsBox_withphoto">
                    <h1 itemprop="name" class="ipsType_pagetitle">{TOPIC_TITLE}</h1>
                    <div class="desc lighter blend_links">
                    <dts>Started by </dts><span itemprop="creator">{postrow.displayed.POSTER_NAME}</span>, <span itemprop="data_post"></span></div></div>
                    <!-- BEGIN switch_user_logged_in -->
                    <!-- BEGIN watchtopic -->
                    <div class="seguir">
                    <li>{S_WATCH_TOPIC}</li>
                    </div>
                    <!-- END watchtopic -->
                    <!-- END switch_user_logged_in -->
                    </dd></div>
        <!--Title end-->
        <div class="main paged">
          <div class="paged-head clearfix">
              <!-- BEGIN topicpagination -->
              <p class="paging">{PAGINATION}</p>
              <!-- END topicpagination -->
              <p class="posting">
                <!-- BEGIN switch_user_authpost -->
                <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
                <!-- END switch_user_authpost -->
                <!-- BEGIN switch_user_authreply -->
                <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
                <!-- END switch_user_authreply -->
              </p>
          </div>
          {POLL_DISPLAY}
          <div class="main-head clearfix">
              <p class="h2">
                <a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a>&nbsp;<a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a>&nbsp;<a href="#bottom">{L_GOTO_DOWN}</a>&nbsp;&nbsp;
                {L_MESSAGE} [{PAGE_NUMBER}]
              </p>
          </div>
          <div class="main-content topic">
                  <div class="subtopic">
              <!-- BEGIN postrow -->
                <!-- BEGIN hidden -->
                    <p class="p-hidden">{postrow.hidden.MESSAGE}</p>
                <!-- END hidden -->
               
                <!-- BEGIN displayed -->
                <!-- BEGIN first_post_br -->
              </div>
              <hr id="first-post-br" />
              <div class="main-content topic">
                        <!-- END first_post_br -->
            <div class="post post--{postrow.displayed.U_POST_ID}"{postrow.displayed.THANK_BGCOLOR} style="{postrow.displayed.DISPLAYABLE_STATE}">           
 <a name="{postrow.displayed.U_POST_ID}"></a>
                                                                  <h3 {postrow.displayed.THANK_BGCOLOR}>

                        <span class="post_id right ipsType_small desc blend_links">
                                    <a itemprop="replyToUrl" data-entry-pid="424042" href="{postrow.displayed.POST_URL}" rel="bookmark" title="{postrow.displayed.POST_SUBJECT}: post #{postrow.displayed.COUNT_POSTS}">
                                #{postrow.displayed.COUNT_POSTS}
                                      <img src="http://i78.servimg.com/u/f78/17/31/71/58/icon_s10.png" class="small" title="{postrow.displayed.POST_SUBJECT}: post #{postrow.displayed.COUNT_POSTS}" />
                                </a>
                            </span>
                        <div class="post_username">
                                              <div class="post_online">{postrow.displayed.ONLINE_IMG}</div>&nbsp;
                          <span itemprop="creator name" class="author vcard">
                                                      <span hovercard-ref="member" hovercard-id="35095" class="url fn name  ___hover___member _hoversetup" title="" id="anonymous_element_2">
                                                        <span itemprop="name">{postrow.displayed.POSTER_NAME}</span>
                                                      </span>
                                                    </span>
                        </div>
                    </h3>
                    <div class="postmain" {postrow.displayed.THANK_BGCOLOR}>
                                          <h2>                 
                                                  <!--    <p style="color: #a4a4a4; font-size: 12px;">Posted <span class="data-post">{postrow.displayed.POST_DATE_NEW}</span></p>-->
                          </h2>
                      <div class="postbody"{postrow.displayed.THANK_BGCOLOR}>
                          <div class="user">
                            <div class="user-ident">
                               
                                <div class="user-basic-info">
                                  {postrow.displayed.POSTER_AVATAR}<br />
                                 
                                </div>
                                                                <div class="user-rank">{postrow.displayed.POSTER_RANK_NEW} <span class="user-imagerank">{postrow.displayed.RANK_IMAGE}</span></div></div>
                            <div class="user-info">
                                                                  <!-- BEGIN profile_field -->
                                <div class="custom_field"> <div class="post_field">{postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}</div></div>
                                <!-- END profile_field -->
                                {postrow.displayed.POSTER_RPG}
                            </div>
                          </div>
                          <div class="post-entry">
                                                     
                                                          <p style="color: #a4a4a4; font-size: 12px;">Posted <span class="data-post">{postrow.displayed.POST_DATE_NEW}</span></p><br>
                                           
                            <div class="entry-content">
                                <!-- BEGIN switch_vote_active -->
                                <div class="vote gensmall">
                                  <!-- BEGIN switch_vote -->
                                  <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_PLUS}">+</a></div>
                                  <!-- END switch_vote -->
                                  <!-- BEGIN switch_bar -->
                                  <div class="vote-bar" title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}">
                                      <!-- BEGIN switch_vote_plus -->
                                      <div class="vote-bar-plus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_plus.HEIGHT_PLUS}px;"></div>
                                      <!-- END switch_vote_plus -->
                                      <!-- BEGIN switch_vote_minus -->
                                      <div class="vote-bar-minus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_minus.HEIGHT_MINUS}px;"></div>
                                      <!-- END switch_vote_minus -->
                                  </div>
                                                                          <div class="points" title="Meus Pontos" style="background: #acacac url(http://i.imgur.com/TyXZPf2.png) no-repeat top left;float: right;border: 1px solid #7b96bb;line-height: 17px;padding: 0 6px 0 24px;font-size: 11px;display: inline-block;-moz-border-radius: 2px;-webkit-border-radius: 2px;cursor: pointer;border-radius: 2px;color: #fff !important;"></div>
                                  <!-- END switch_bar -->
                                  <!-- BEGIN switch_no_bar -->
                                  <div title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}" class="vote-no-bar">----</div>
                                  <!-- END switch_no_bar -->
                                  <!-- BEGIN switch_vote -->
                                  <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_MINUS}">-</a></div>
                                  <!-- END switch_vote -->
                                </div>
                                <!-- END switch_vote_active -->
                                <div>
                                  <div>{postrow.displayed.MESSAGE}</div>
                                  <!-- BEGIN switch_attachments -->
                                  <dl class="attachbox">
                                      <dt>{postrow.displayed.switch_attachments.L_ATTACHMENTS}</dt>
                                      <dd>
                                        <!-- BEGIN switch_post_attachments -->
                                        <dl class="file">
                                            <dt>
                                              <img src="{postrow.displayed.switch_attachments.switch_post_attachments.U_IMG}" alt="" />
                                              <!-- BEGIN switch_dl_att -->
                                              <a class="postlink" href="{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.U_ATTACHMENT}">{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT}</a> {postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT_DEL}
                                              <!-- END switch_dl_att -->
                                              <!-- BEGIN switch_no_dl_att -->
                                              {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT} {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT_DEL}
                                              <!-- END switch_no_dl_att -->
                                            </dt>
                                            <!-- BEGIN switch_no_comment -->
                                            <dd>
                                              <em>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_comment.ATTACHMENT_COMMENT}</em>
                                            </dd>
                                            <!-- END switch_no_comment -->
                                            <!-- BEGIN switch_no_dl_att -->
                                            <dd>
                                              <em><strong>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.TEXT_NO_DL}</strong></em>
                                            </dd>
                                            <!-- END switch_no_dl_att -->
                                            <dd>({postrow.displayed.switch_attachments.switch_post_attachments.FILE_SIZE}) {postrow.displayed.switch_attachments.switch_post_attachments.NB_DL}</dd>
                                        </dl>
                                        <!-- END switch_post_attachments -->
                                      </dd>
                                  </dl>
                                  <!-- END switch_attachments -->
                                  <div class="clear"></div>
                                </div>
                                <p>
                                                                          <p class="edit">{postrow.displayed.EDITED_MESSAGE}</p>
                                </p>
                            </div>
                          </div>
                      </div>
                      <!-- BEGIN switch_signature -->
                      <div class="sig-content">
                          {postrow.displayed.SIGNATURE_NEW}
                      </div>
                      <!-- END switch_signature -->
                      <div class="postfoot">
                          <div class="user-contact profile_{postrow.displayed.PROFILE_POSITION}">
                            {postrow.displayed.PROFILE_IMG} {postrow.displayed.PM_IMG} {postrow.displayed.EMAIL_IMG}<!-- BEGIN contact_field --> {postrow.displayed.contact_field.CONTENT}<!-- END contact_field -->
                          </div>
                          <div class="post-options profile_{postrow.displayed.PROFILE_POSITION}">
                            {postrow.displayed.THANK_IMG} {postrow.displayed.MULTIQUOTE_IMG} {postrow.displayed.QUOTE_IMG} {postrow.displayed.EDIT_IMG} {postrow.displayed.DELETE_IMG} {postrow.displayed.IP_IMG} {postrow.displayed.REPORT_IMG}
                          </div>
                          <div style="clear:both;"></div>
                      </div>
                    </div>
                </div>
                <!-- END displayed -->
              <!-- END postrow -->
          </div></div>
         
          <div class="main-foot clearfix">
              <p class="h2">
                <a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a>&nbsp;<a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a>&nbsp;<a href="#top">{L_BACK_TO_TOP}</a>&nbsp;&nbsp;
                {L_MESSAGE} [{PAGE_NUMBER}]
              </p>
              <p class="options">
                <input type="hidden" name="t" value="{TOPIC_ID}" />
                <!-- <input type="hidden" name="sid" value="{S_SID}" /> -->
                <input type="hidden" name="{SECURE_ID_NAME}" value="{SECURE_ID_VALUE}" />
                <!-- BEGIN viewtopic_bottom -->
                {S_TOPIC_ADMIN}
                <!-- END viewtopic_bottom -->
              </p>
          </div>
          <a name="bottomtitle"></a>
          <div class="paged-foot clearfix">
              <!-- BEGIN topicpagination -->
              <p class="paging">{PAGINATION}</p>
              <!-- END topicpagination -->
              <p class="posting">
                <!-- BEGIN switch_user_authpost -->
                <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
                <!-- END switch_user_authpost -->
                <!-- BEGIN switch_user_authreply -->
                <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
                <!-- END switch_user_authreply -->
              </p>
          </div>
        </div>
        <!--
        <div class="pun-crumbs">
          <p class="crumbs">
              <a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}&nbsp;»&nbsp;
              <strong><a href="{TOPIC_URL}">{TOPIC_TITLE}</a></strong>
          </p>
        </div>
        -->
        <!--Share Topic URL-->
                  <div class="main">
                    <div class="avt_recent">
                    <div class="main-head clearfix">
                  <style type="text/css">
                    .avt-r {
                    float: left;
                    }
                    .avt-r img {
                    width: 30px;
                    height: 30px;
                    margin: 3px;
                    padding: 1px;
                    border: 1px solid #D5D5D5;
                    background: white;
                    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
                    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
                    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
                    }
                    .avt-r img:hover {
                    border-color: #a1a1a1;
                    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
                    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
                    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
                    }</style>
            <!--        <script type="text/javascript">
                    jQuery(document).on('ready', function() {
                    jQuery('.avt_recent').prepend('<div class="avt-r"><div>');
                    jQuery('.avt_recent .avt-r').each(function () {
                    var profileUserURL = jQuery(this).parent().children('.recent_space').children('a:last').attr('href');
                    jQuery(this).html('<a href="' + profileUserURL + '" class="avt-r-enlace"><img src="http://i78.servimg.com/u/f78/18/17/62/92/defaul10.png" alt="No Avatar" /></a>');
                    jQuery(this).children('a').load(profileUserURL + ' .module:eq(0) img:eq(0)')
                    });
                    });</script>-->
                    <p class="h2">Share this topic!</p>
                    </div>
                    <div class="main-content frm comp">
                    <table border="0">
                    <tr>
                    <td><strong>Direct</strong></td>
                    <td><input type="text" style="width:850px;" value="{FORUM_URL}{TOPIC_URL}" /></td>
                    </tr>
                    <tr>
                    <td><strong>BBcode</strong></td>
                    <td><input type="text" style="width:850px;" value="[url={FORUM_URL}{TOPIC_URL}] {TOPIC_TITLE} [/url]" /></td>
                    </tr>
                    <tr>
                    <td><strong>HTML</strong></td>
                    <td><input type="text" style="width:850px;" value="<a href='{FORUM_URL}{TOPIC_URL}'> {TOPIC_TITLE} </a>" /></td>
                    </tr>
                    </table>
                    </div>
                    </div>
                    </div>
        <!--Topic end-->
        <!-- BEGIN promot_trafic -->
        <div class="main" id="ptrafic_close" style="display:none">
          <div class="main-head clearfix">
              <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
              <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_MORE_IMG}" alt="+" align="" border="0" /></a></p>
          </div>
        </div>
        <div class="main" id="ptrafic_open" style="display:''">
          <div class="main-head clearfix">
              <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
              <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_LESS_IMG}" alt="-" align="" border="0" /></a></p>
          </div>
          <div class="main-content clearfix">
              <!-- BEGIN link -->
              »&nbsp;<a href="{promot_trafic.link.U_HREF}" target="_blank" title="{promot_trafic.link.TITLE}">{promot_trafic.link.TITLE}</a><br />
              <!-- END link -->
          </div>
        </div>
        <!-- END promot_trafic -->
        <!-- BEGIN switch_forum_rules -->
        <div class="main" id="forum_rules">
          <div class="main-head clearfix">
              <p class="h2">{L_FORUM_RULES}</p>
          </div>
          <table class="main-content frm">
              <tr>
                <!-- BEGIN switch_forum_rule_image -->
                <td class="logo">
                    <img src="{RULE_IMG_URL}" alt="" />
                </td>
                <!-- END switch_forum_rule_image -->
                <td class="rules entry-content">
                    {RULE_MSG}
                </td>
              </tr>
          </table>
        </div>
        <!-- END switch_forum_rules -->
        <!-- BEGIN switch_user_logged_in -->
        <a name="quickreply"></a>
        {QUICK_REPLY_FORM}
        <!-- END switch_user_logged_in -->
        <div id="pun-info" class="main">
          <div class="main-content">
              <div id="stats">
                <p>{L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}</p>
              </div>
          </div>
        </div>
        <!-- BEGIN switch_image_resize -->
        <script type="text/javascript">
        //<![CDATA[
        $(resize_images({ 'selector' : '.post-entry .entry-content', 'max_width' : {switch_image_resize.IMG_RESIZE_WIDTH}, 'max_height' : {switch_image_resize.IMG_RESIZE_HEIGHT} }));
        //]]>
        </script>
        <!-- END switch_image_resize -->
        <script src="{JS_DIR}addthis/addthis_widget.js" type="text/javascript"></script>

Powered by PunBB
Currently 0 users have thanked Van-Helsing for this post:

20
Offline

  Virus

Virus
★Moderator★
★Moderator★
[sucesso="Marked as Solved"]The question(s) in this topic have been answered and the owner has been able to solve the problem. Because of this, the topic has been marked as Solved.

If you have further questions, please open a new topic.[/sucesso]

Powered by PunBB
Currently 0 users have thanked Virus for this post:

21
Offline

  Sponsored content



Powered by PunBB
Currently 0 users have thanked Sponsored content for this post:

View previous topic View next topic Back to top Message [Page 1 of 1]


Topic URL's

URL
BBcode
HTML

Permissions in this forum:
You cannot reply to topics in this forum