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)
-   -   Add-On Releases - [AJAX] Helpful Answers - Allow users to rate individual posts (https://vborg.vbsupport.ru/showthread.php?t=233296)

CvP 07-20-2010 05:40 AM

Quote:

Originally Posted by Ted S (Post 2071846)
There is basic moderation via the admin, more extensive admin options are still in development.

Glad to know there are still more features to come :up:

Quote:

Originally Posted by Ted S (Post 2071847)
Are you using the hide negative rated posts option?

yes, he was using it. when turned off, it was fixed.

Quote:

Originally Posted by Ted S (Post 2071849)
It sounds like your css template modifications have altered the default collapse behavoir or the behavoir in the postbit pages.

can you please elaborate? I have a vB's stock skin (only admin available) and this problem occurs in that too.
To me, it seems like while hiding the post, it is placing the "collapse" button instead of "expand" button.
setting display: none; and display: block; thru firebug works fine. so the problem is placing the wrong button in there.

Quote:

Originally Posted by Ted S (Post 2071845)
The hide bit adds a new layer to hide the post. If you have a background you should not use this option.

how about doing it this way:
to hide a post,
Code:

li#post_203404 div.postdetails, li#post_203404 div.postfoot {
 display: none;
}

then in li#post_203404 div.posthead
insert something like this in span.nodecontrols [i just copy pasted the collapse code that i get; it should be the expand code):
HTML Code:

<a class="collapse" id="collapse_ppost_203404" href="#top"><img src="images/buttons/collapse_40b.png" alt="" title="Collapse this Post"></a>
when clicked, i can just set display: block; to those two div.
when clicked again, set display: none;

CvP 07-20-2010 06:03 AM

template name: helpful_answers_hidelowstart

contents:
Code:

               
                        <div class="block collapse">
                                <h2 class="blockhead" style="background-color:#fff;border:none;">

                                <a class="collapse" id="collapse_ppost_{vb:raw post.postid}" href="#top"><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_ppost_{vb:raw post.postid}_img}_40b.png" alt="" title="Collapse this Post" /></a>               
                                <span class="blocktitle" style="color:#000">{vb:rawphrase helpfulanswer_hidden,{vb:raw post.username}}</span>
                               
                                </h2>
                        </div><br />
                       
                        <div id="ppost_{vb:raw post.postid}" style="display: none;">

I'm not that much expert in vB codings, but somehow, this seems wrong to me.


also, Ted, what does this option do? "Enable Single Post Voting"

bfdzio 07-20-2010 01:53 PM

Has the problem with all posts collapsing when you have a negative rating?

I want to have bad posts get collapsed but not when only ONE person votes it negatively. I want bad posts to collapse when they get at least 5 negative votes. Unfortunately, once any post is hidden they are all hidden.

Was mentioned and replied to here:
https://vborg.vbsupport.ru/showthrea...86&post2062886

CvP 07-20-2010 02:42 PM

hey Ted. I have modified it a bit. I believe this UI is much better (and simple) than lots of texts.
i have moved it to post footer; after multi quote button.

http://img819.imageshack.us/img819/993/capturez.png

anyways, I have two problems.

It seems post.goodrank is not initialized to 0 (but post.badrank is 0) when a post is not voted (up or down) even once.
so i can never get a /\ 0 | 0 \/ it is always /\ | 0 \/

http://img96.imageshack.us/img96/9761/captureagm.png


2nd problem: I'm not sure how I can update the counters and images using ajax.
if you can give me some hint, I'm sure i can manage it.
I have modified the _roll template properly. all it needs to do is update codes according to the template.

pete_brady 07-20-2010 09:32 PM

Quote:

Originally Posted by CvP (Post 2072043)
hey Ted. I have modified it a bit. I believe this UI is much better (and simple) than lots of texts.


sure is - can you share how you achieved this?

10 Gauge 07-20-2010 11:22 PM

Quote:

Originally Posted by pete_brady (Post 2072194)
sure is - can you share how you achieved this?

+1

I want this!

Ted S 07-21-2010 04:21 AM

Quote:

Originally Posted by bfdzio (Post 2072029)
Has the problem with all posts collapsing when you have a negative rating?

I want to have bad posts get collapsed but not when only ONE person votes it negatively. I want bad posts to collapse when they get at least 5 negative votes. Unfortunately, once any post is hidden they are all hidden.

Was mentioned and replied to here:
https://vborg.vbsupport.ru/showthrea...86&post2062886

The feature lets you pick the number of votes, just be sure you set this in your admin options.

Ted S 07-21-2010 04:24 AM

Quote:

Originally Posted by CvP (Post 2072043)
It seems post.goodrank is not initialized to 0 (but post.badrank is 0) when a post is not voted (up or down) even once.

So you mean it's blank? Yes. It's not set unless there's a value... simple solution is to edit the plugin to make this variable an INT so if it's empty it goes to 0. This is changed for the next release but you can do it yourself... around like 946

Code:

$post['goodrank'] = int($post['goodrank']);
Quote:

2nd problem: I'm not sure how I can update the counters and images using ajax.
if you can give me some hint, I'm sure i can manage it.
I have modified the _roll template properly. all it needs to do is update codes according to the template.
You need to use the javascript voting code:

Code:

<a href="./helpfulanswers.php?do=rate&postid={vb:raw post.postid}&rank=1" <vb:if condition="$vboptions[disable_ajax] != 2"> onclick="return helpfulanswers_rate({vb:raw post.postid}, 1);" </vb:if> rel="nofollow" onmouseover="document.post_{vb:raw post.postid}_up.src='images/buttons/ha_arrowup.gif';" onmouseout="document.post_{vb:raw post.postid}_up.src='images/buttons/ha_arrowup_gray.gif';"><img name="post_{vb:raw post.postid}_up" src="images/buttons/ha_arrowup_gray.gif" width="11" height="20" border="0" alt="{vb:rawphrase helpfulanswer_yes}" /></a>

Ted S 07-21-2010 04:26 AM

Quote:

Originally Posted by CvP (Post 2071874)
how about doing it this way:
to hide a post,
Code:

li#post_203404 div.postdetails, li#post_203404 div.postfoot {
 display: none;
}

then in li#post_203404 div.posthead
insert something like this in span.nodecontrols [i just copy pasted the collapse code that i get; it should be the expand code):
HTML Code:

<a class="collapse" id="collapse_ppost_203404" href="#top"><img src="images/buttons/collapse_40b.png" alt="" title="Collapse this Post"></a>
when clicked, i can just set display: block; to those two div.
when clicked again, set display: none;

The post ids are generated dynamically per thread so it's a burden to set this per li.

The css styles for your post will generally still show, i'm looking to see what's getting overriden... vb css is pretty evil.

CvP 07-21-2010 08:14 AM

Quote:

Originally Posted by Ted S
So you mean it's blank? Yes. It's not set unless there's a value... simple solution is to edit the plugin to make this variable an INT so if it's empty it goes to 0. This is changed for the next release but you can do it yourself... around like 946

I'm sorry but I'm not sure where to place it. 946 number line of which file? the main XML? it didn't work :(

Quote:

Originally Posted by pete_brady (Post 2072194)
sure is - can you share how you achieved this?

Quote:

Originally Posted by 10 Gauge (Post 2072228)
+1
I want this!

sure. but let me get it working properly first :)
If Ted feels like, he can even include it in the core product.

Quote:

Originally Posted by Ted S (Post 2072289)
You need to use the javascript voting code:

Code:

<a href="./helpfulanswers.php?do=rate&postid={vb:raw post.postid}&rank=1" <vb:if condition="$vboptions[disable_ajax] != 2"> onclick="return helpfulanswers_rate({vb:raw post.postid}, 1);" </vb:if> rel="nofollow" onmouseover="document.post_{vb:raw post.postid}_up.src='images/buttons/ha_arrowup.gif';" onmouseout="document.post_{vb:raw post.postid}_up.src='images/buttons/ha_arrowup_gray.gif';"><img name="post_{vb:raw post.postid}_up" src="images/buttons/ha_arrowup_gray.gif" width="11" height="20" border="0" alt="{vb:rawphrase helpfulanswer_yes}" /></a>

[s]The rating, ajax etc...everything is working.
After rating, I get the msg "...thanks for rating...".
But I want to update the counter and arrow images. I'm not sure from where the ajax response text is coming from.[/s]
I managed to pull it off :)


Quote:

Originally Posted by Ted S (Post 2072290)
The post ids are generated dynamically per thread so it's a burden to set this per li.

The css styles for your post will generally still show, i'm looking to see what's getting overriden... vb css is pretty evil.

then you can try using the already built in post hiding method. the one vB uses for deleted posts. it has a view post button. so you can just reuse that template with a little modification.
then add a hide post button if necessary.


All times are GMT. The time now is 04:40 AM.

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.02194 seconds
  • Memory Usage 1,775KB
  • 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
  • (6)bbcode_code_printable
  • (2)bbcode_html_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)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