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)
-   -   Major Additions - iTrader v2.8 - Powerful Rating System (https://vborg.vbsupport.ru/showthread.php?t=232044)

DxSEO 04-15-2010 09:29 AM

Quote:

Originally Posted by Antonio Pereira (Post 2021542)
I Have [AJAX] Post Thank You Hack and with this plugin Itrader show a problem in layout.

Example in attach file:


Best Regards

here is solution

go to itrader settings > Where do you want the "Feedback Score" to appear in the postbit where it is activated? > Below post count on right

Retal 04-15-2010 09:34 AM

iTrader 2.7.0
in template itrader_user some elements <dd> are missing the ">" thus rendering incorrectly the tabs "From Buyers, From Sellers..." in IE and Opera (FF renders correctly).

Corrected template for 2.7.0:
HTML Code:

{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}">
<head>
        <!-- no cache headers -->
        <meta http-equiv="Pragma" content="no-cache" />
        <meta http-equiv="Expires" content="-1" />
        <meta http-equiv="Cache-Control" content="no-cache" />
        <!-- end no cache headers -->
        {vb:raw headinclude}
        <link rel="stylesheet" type="text/css" href="{vb:raw vbcsspath}itrader.css,itrader_user.css" />
        <title>{vb:raw pagetitle}</title>
</head>
<body>

{vb:raw header}
{vb:raw navbar}

<div id="content_container">
        <div id="content" class="floatcontainer">
                <dl class="tabslight">
                        <dd<vb:if condition="$viewuser['viewtype'] == 0"> class="selected"</vb:if>><a href="{vb:raw vboptions.bburl}/itrader.php?{vb:raw session.sessionurl}u={vb:raw userinfo.userid}">{vb:rawphrase itrader_all_feedback}</a></dd>
                        <dd<vb:if condition="$viewuser['viewtype'] == 1"> class="selected"</vb:if>><a href="{vb:raw vboptions.bburl}/itrader.php?{vb:raw session.sessionurl}u={vb:raw userinfo.userid}&amp;iv=1">{vb:rawphrase itrader_from_buyers}</a></dd>
                        <dd<vb:if condition="$viewuser['viewtype'] == 2"> class="selected"</vb:if>><a href="{vb:raw vboptions.bburl}/itrader.php?{vb:raw session.sessionurl}u={vb:raw userinfo.userid}&amp;iv=2">{vb:rawphrase itrader_from_sellers}</a></dd>
                        <dd<vb:if condition="$viewuser['viewtype'] == 3"> class="selected"</vb:if>><a href="{vb:raw vboptions.bburl}/itrader.php?{vb:raw session.sessionurl}u={vb:raw userinfo.userid}&amp;iv=3">{vb:rawphrase itrader_from_trades}</a></dd>
                        <dd<vb:if condition="$viewuser['viewtype'] == 4"> class="selected"</vb:if>><a href="{vb:raw vboptions.bburl}/itrader.php?{vb:raw session.sessionurl}u={vb:raw userinfo.userid}&amp;iv=4">{vb:rawphrase itrader_left_for_others}</a></dd>
                        <div style="float:right">
                                <span>{vb:raw countposts.total} {vb:rawphrase itrader_total_feedback}
                                <vb:if condition="$viewuser['viewtype'] == 4">{vb:rawphrase itrader_left_by}<vb:else />{vb:rawphrase itrader_received_by}</vb:if> {vb:raw userinfo.username}
                                <vb:if condition="$viewuser['viewtype'] == 1">
                                        {vb:rawphrase itrader_from_buyers}
                                <vb:else />
                                                <vb:if condition="$viewuser['viewtype'] == 2">{vb:rawphrase itrader_from_sellers}<vb:else /><vb:if condition="$viewuser['viewtype'] == 3">{vb:rawphrase itrader_from_trades}</vb:if></vb:if>
                                </vb:if></span>                       
                        </div>
                </dl>

                <div class="block">
                        <h2 class="blockhead">
                                <div style="float:right">
                                        {vb:rawphrase options} / <vb:if condition="$viewuser['viewtype'] == 4">{vb:rawphrase itrader_left_for}<vb:else />{vb:rawphrase itrader_from}</vb:if> / {vb:rawphrase date}
                                </div>

                                {vb:rawphrase itrader_comments}
                        </h2>
                        <div class="blockbody">
                                <ul class="blockrow"><li class="sgicon floatcontainer">
                                        <vb:if condition="$itrader_userbits">
                                        <div class="block">
                                                <div class="blockbody">
                                                        <div class="blockrow">
                                                                {vb:raw itrader_userbits}
                                                        </div>
                                                </div>
                                        </div>
                                        </vb:if></li>
                                </ul>
                        </div>

                        <vb:if condition="$pagenav">
                        <div style="float:{vb:stylevar right};margin-top:10px;">
                                {vb:raw pagenav}
                        </div>
                        </vb:if>
                </div>
        </div>
</div>

{vb:raw itrader_usersidebar}

{vb:raw footer}


</body>
</html>


Retal 04-15-2010 09:40 AM

Suggestion: It might be a good idea to assign a custom class to the sidebar in the template itrader_user_sidebar. Eg
HTML Code:

<div id="sidebar_container" class="itrader_sidebar">
Users might want to apply different styling from the vB sidebar. We do. :)

entertain 04-15-2010 10:12 AM

@Retal:
(1) is already fixed in dev version, sorry. :o I am updating it today.

(2) In my opinion this isn't a good idea because this is the best way of integrating iTrader into the style. When I change this, other users might come and say "it doesn't use the colors of my style".

Retal 04-15-2010 10:15 AM

Hi Entertain, the added class won't change the appearance of the sidebar, but without it we don't have means to style it separately from the vB sidebar.
For example I wanted to change the width of the iTrader sidebar, make it wider than the vB sidebar we use.

Antonio Pereira 04-15-2010 01:23 PM

1 Attachment(s)
Users in my forum using 1024 resolution cant click in iTrader (Navbar) using FF, IE8 dont have problems.

Try to resize and you see this problem in attach file:

Best Regards

entertain 04-15-2010 01:44 PM

Hm, but this is a vBulletin bug (caused by too many links in navbar). ;)

Antonio Pereira 04-15-2010 02:38 PM

Quote:

Originally Posted by entertain (Post 2021687)
Hm, but this is a vBulletin bug (caused by too many links in navbar). ;)

Thanks for your answer, any way to work around ?

Best Regards

Zaraki 04-15-2010 04:36 PM

Yes I read the instructions but it wasn't installing so I removed the older version and then instaled this one.

Retal 04-15-2010 05:06 PM

Antonio, the solution would be specific to your forum and design. You may try to edit the template navbar and remove some links to make more space for iTrader.

Zaraki, you can restore the ratings from a backup. It should work if you just copy the iTrader tables from before you uninstalled the old version and reimport the product.

If you don't have a backup, well then tough luck.


All times are GMT. The time now is 12:01 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.01859 seconds
  • Memory Usage 1,772KB
  • 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
  • (2)bbcode_html_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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