vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Show Thread Enhancements - [AJAX] Post Thank You Hack (https://vborg.vbsupport.ru/showthread.php?t=231666)

Hippy 08-22-2012 02:42 PM

<a href="https://vborg.vbsupport.ru/showpost.php?p=2306955&postcount=2357" target="_blank">https://vborg.vbsupport.ru/showp...postcount=2357</a>

For postbit legacy new hook

wildheart 08-23-2012 05:08 AM

Yes that is the one I used originally Hippy and it squashed my reply: https://vborg.vbsupport.ru/showpost....postcount=2357

I will do it in reverse and just leave it on the left. Thanks

Hippy 08-23-2012 10:57 AM

Quote:

Originally Posted by wildheart (Post 2359231)
Yes that is the one I used originally Hippy and it squashed my reply: https://vborg.vbsupport.ru/showpost....postcount=2357

I will do it in reverse and just leave it on the left. Thanks

In that template this code
Code:

<div class="textcontrols floatcontainer">
<span class="postcontrols">

might be in the template twice. move that hook to the other one. I'll peek at the template when I get home tonight

Hippy 08-23-2012 08:36 PM

I was incorrect about that , there is only one spot

here is more of the code and where it's added

Code:

<div class="postfoot">
                        <!-- <div class="postfoot_container"> -->
                        <div class="textcontrols floatcontainer">
                                <span class="postcontrols">
                                  {vb:raw template_hook.postbit_thanks}
                                        <img style="display:none" id="progress_{vb:raw post.postid}" src="{vb:stylevar imgdir_misc}/progress.gif" alt="{vb:rawphrase loading_editor_please_wait}" />
                                        <vb:if condition="$post['editlink']">
                                                <a class="editpost" href="{vb:raw post.editlink}" name="vB::QuickEdit::{vb:raw post.postid}" title="{vb:rawphrase edit_delete_message}"><img src="{vb:raw vboptions.cleargifurl}" id="editimg_{vb:raw post.postid}" alt="{vb:rawphrase edit_delete_message}" /> {vb:rawphrase edit_post}</a>
                                        <vb:if condition="THIS_SCRIPT != 'usernote' && THIS_SCRIPT != 'announcement'"><span class="seperator">&nbsp;</span></vb:if>

hope this helps

Bob_R 08-25-2012 07:54 PM

1 Attachment(s)
Quote:

Originally Posted by Hippy (Post 2356079)
Import the XML file allow over write.. upload all files. Over writing them.

Quote:

Originally Posted by ForceHSS (Post 2356111)
Both, over writing all files

OK, did it. But, check out the screen shot I provided. If you look closely you'll see the "5" at the end of the Thanked line. The "5" belongs to the line underneath (Blog Entries).

Thanks.

Hippy 08-25-2012 08:42 PM

did this happen after you updated to the so called 7.8.4 ?


try this..
your using postbit_legacy right

replace your post_thanks_postbit_info
with
Code:

<vb:if condition="$post['userid']">
    <dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>
    <vb:if condition="$post['post_thanks_thanked_times'] == 1">
        <dd>{vb:rawphrase post_thanks_time_post}</dd>
    <vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
        <dd>{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
    <vb:else />
        <dd>{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>
    </vb:if>
</vb:if>


Bob_R 08-25-2012 09:07 PM

Quote:

Originally Posted by Hippy (Post 2359981)
did this happen after you updated to the so called 7.8.4 ?


try this..
your using postbit_legacy right

replace your post_thanks_postbit_info
with
Code:

<vb:if condition="$post['userid']">
    <dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>
    <vb:if condition="$post['post_thanks_thanked_times'] == 1">
        <dd>{vb:rawphrase post_thanks_time_post}</dd>
    <vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
        <dd>{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
    <vb:else />
        <dd>{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>
    </vb:if>
</vb:if>


Thank you!

keteflips 08-26-2012 09:25 PM

I dont understand why "Thanks" its not integrated in VB.

BirdOPrey5 08-26-2012 10:30 PM

Quote:

Originally Posted by keteflips (Post 2360282)
I dont understand why "Thanks" its not integrated in VB.

From the screenshots shown on VB5 there looks to be some sort of system built into it.

wildheart 08-27-2012 01:22 PM

Quote:

Originally Posted by Hippy (Post 2359415)
I was incorrect about that , there is only one spot

here is more of the code and where it's added

Code:

<div class="postfoot">
                        <!-- <div class="postfoot_container"> -->
                        <div class="textcontrols floatcontainer">
                                <span class="postcontrols">
                                  {vb:raw template_hook.postbit_thanks}
                                        <img style="display:none" id="progress_{vb:raw post.postid}" src="{vb:stylevar imgdir_misc}/progress.gif" alt="{vb:rawphrase loading_editor_please_wait}" />
                                        <vb:if condition="$post['editlink']">
                                                <a class="editpost" href="{vb:raw post.editlink}" name="vB::QuickEdit::{vb:raw post.postid}" title="{vb:rawphrase edit_delete_message}"><img src="{vb:raw vboptions.cleargifurl}" id="editimg_{vb:raw post.postid}" alt="{vb:rawphrase edit_delete_message}" /> {vb:rawphrase edit_post}</a>
                                        <vb:if condition="THIS_SCRIPT != 'usernote' && THIS_SCRIPT != 'announcement'"><span class="seperator">&nbsp;</span></vb:if>

hope this helps

Thank you, it worked 100%. :up:


All times are GMT. The time now is 08:39 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04718 seconds
  • Memory Usage 1,758KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete