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)

DaSpyda 05-21-2010 08:10 PM

I am having issues with multiple ratings showing in User info boxes.

The first post in a thread has the correct user info.
Post #2 has Poster #1's info and then poster #2's info
Post #3 has Poster #1, #2, and #3's info... and so on, and so on...

I have upgraded to 4.0.1, and also from the previous version of iTrader.

https://vborg.vbsupport.ru/external/2012/08/128.png

Thanks for your help!

Great product!

entertain 05-21-2010 09:03 PM

@DaSpyda:
vB 4.0.1 is buggy and that's why some features will make problems with this version. I recommend updating your vB to 4.0.3 .

If the error still exists afterwards, please report it again. I might take a look into your forum. :o

DaSpyda 05-22-2010 02:43 AM

Quote:

Originally Posted by entertain (Post 2041616)
@DaSpyda:
vB 4.0.1 is buggy and that's why some features will make problems with this version. I recommend updating your vB to 4.0.3 .

If the error still exists afterwards, please report it again. I might take a look into your forum. :o

Thanks...upgraded but problem still exists.

I have enabled iTrader so you may see what it's doing.

I am very, very grateful for your help!!!!!

daspyda@gmail.com is my contact addy.

Don

puertoblack2003 05-31-2010 09:26 PM

hello,

there's an issue with your mod and photoplog pro vb4.Itrader is blocking certain navigation features from photoplog to appear on the photplog index page. like upload,slideshow and few other features.I tracked in down to your mod.
When i disabled itrader temporary in caused a white page to photplog main.

The owner of photoplog don t know whats going on and said that he's using vb default nav

this is his plugin info for navtab
Quote:

$tabselected = '';
$tablinks = '';
if (defined('PHOTOPLOG_THIS_SCRIPT'))
{
$vbulletin->options['selectednavtab']='photoplog';
$tabselected = ' class="selected"';
$templater = vB_Template::create('photoplog_navtab_navlinks');
$templater->register('photoplog', $GLOBALS['photoplog']);
$tablinks = $templater->render();
}

$template_hook['navtab_end'] .= '<li'.$tabselected.'><a class="navtab" href="'.$vbulletin->options['photoplog_script_dir'].'/index.php'.$vbulletin->vars->session['sessionurl_q'].'">'.$vbphrase[photoplog_photoplog].'</a>'.$tablinks.'</li>';

its executing under process_template _complete with execution order of 5


thank you

schlottkej 06-04-2010 05:03 AM

microCLASSIFIEDS and microAUCTIONS would be great to be integrated with...

Acers 06-09-2010 03:46 PM

There is a small bug with itrader when any moderator tries to edit the rating of a deal.
If he doesn't happen to be the deal starter or the person who gave the feeddback originally, itrader will give "Deal URL Invalid" error.

Technically a person who has been given admin rights for editing the feedback and deletions should be able to edit the feedback also.

Here is the bug fix if someone wants:

open includes/functions_itrader_urlcheck.php
find
PHP Code:

function itrader_checkurl0($dealurl)
{
    global 
$vbulletin

replace
PHP Code:

function itrader_checkurl0($dealurl)
{
    global 
$vbulletin$permissions


find
PHP Code:

function itrader_checkurl123($dealurl)
{
    global 
$vbulletin

replace
PHP Code:

function itrader_checkurl123($dealurl)
{
    global 
$vbulletin$permissions


find twice
PHP Code:

                    if ($result['postuserid'] != $vbulletin->GPC['userid'] AND $result['postuserid'] != $vbulletin->userinfo['userid'])
                    { 

replace
PHP Code:

                    if ($result['postuserid'] != $vbulletin->GPC['userid'] AND $result['postuserid'] != $vbulletin->userinfo['userid']
                                   AND !(
$permissions['itraderpermissions'] & $vbulletin->bf_ugp['itraderpermissions']['canadmin']))
                    { 

this will fix the bug.
Hope this helps someone :)

Zombo 06-14-2010 03:11 AM

Kind of a weird request but anyway,

in my old forum, we used to keep track of feedback in a thread by hand.

now we want to use iTrader, but I want to be able to import the old feedback.

if I simply change itrader_total itrader_pcnt, it will work temporarily until someone adds a feedback through the system, in which case it will recount and lose the edit.

is there a way I can make this work?

sevenmix 06-14-2010 06:27 PM

Hi

It would be good that itrader points integrate the system of promotions of vbulletin, someone could do this?... i will pay for the work

entertain 06-18-2010 01:22 PM

This modification is officially compatible with vBulletin 4.0.4.

An other update is coming soon thanks to a kind donation from wynode.

spillage 06-20-2010 07:05 PM

This looks like a great Mod, one that I could use... But I'm unclear as to where this Mod exists... is it a part of the users Profile page?... is it a Tab, is it a Navbar item?... is it accessable from specified forums only?

Zombo 06-22-2010 04:20 AM

in itrader_main.php,

you need to add user.avatarrevision for the 3 queries that go in search_results, otherwise you would be able to display custom avatars.

edit:

can you allow parsing of url links in the option fields? so that instead of writing in that tiny field, you give a link to a post

dippetas 06-25-2010 07:49 AM

Nice mod, but i have a small problem, my users avatars not showing at all, only mine. Does anybody know what could be wrong? any help would be appreciated.

thanks in advance
Dippetas

entertain 06-25-2010 11:58 AM

1 Attachment(s)
@dippetas:
please try this php file :o

spillage 06-25-2010 10:22 PM

To minimize database bloating with old redundant threads, we typically delete trading post threads that have had no activity for 60 days.

How will thread deletion effect iTrader ratings?

entertain 06-26-2010 06:10 AM

@spillage:
when an url is entered, you will get a "thread not available" message or however it is called. The ratings will stay.

sung 06-26-2010 06:21 AM

Quote:

Originally Posted by entertain (Post 2055423)
An other update is coming soon thanks to a kind donation from wynode.

Good news.

Hopefully you include Acers fix a few posts above, I've actually run into this a few times and previously to work around it have just temporarily disabled requiring a URL while changing a rating, then turn it back on when I'm done :o

entertain 06-26-2010 06:31 AM

@sung:
is also fixed in my dev release. I just have to fix some issues concerning the "show rate trade button in all posts" feature and then the new version is finished. :)

spillage 06-26-2010 10:09 AM

Quote:

Originally Posted by entertain (Post 2059738)
@spillage:
when an url is entered, you will get a "thread not available" message or however it is called. The ratings will stay.

Thanks... I was considering not using the URL anyway.

spillage 06-26-2010 04:44 PM

How does an Admin edit existing ratings?

spillage 06-27-2010 02:54 PM

What gets "Hall of Shame" listing?

entertain 06-27-2010 05:25 PM

Quote:

Originally Posted by spillage (Post 2059932)
How does an Admin edit existing ratings?

every rating has a "change rating" graphic.
Quote:

Originally Posted by spillage (Post 2060539)
What gets "Hall of Shame" listing?

traders with the worst ratings.

spillage 06-27-2010 09:33 PM

Quote:

Originally Posted by entertain (Post 2060597)
traders with the worst ratings.

Thanks for the response... your time is appreciated.

Please define "worst"...
Is this just the lowest score?
Is this the lowest 5 scores?
Is this scores below a certain percentage of positive ratings?
It it the most negative ratings?
How is "worst" determined?

It wouldn't seem right to have someone listed in the Hall of Shame if they have a 90% rating, just because that is the lowest rating there is.

Can the Hall of Shame be disabled?

beatyourtruck 06-28-2010 12:01 AM

Upgrade appears to have gone silky smooth! Thanks! Marked installed.

dippetas 06-28-2010 01:01 PM

Quote:

Originally Posted by entertain (Post 2059339)
@dippetas:
please try this php file :o

thank you very much entertain, but it didn't work. I'll see what i can do

entertain 06-28-2010 05:01 PM

@dippetas:
i will check this again, too.

rfsforums 06-29-2010 12:22 AM

Quote:

Originally Posted by spillage (Post 2060719)
...Can the Hall of Shame be disabled?

I'm currently testing this on my test site and would like to know how to do this also. Thanks!

skydrake 06-29-2010 03:24 AM

anyone knows itrader readme.txt located anywhere? i need FAQ also :P anyones knows is there any documentation for this itrader? i having trouble..

*you do not have permission to access this page. This could be due to one of several reasons:

singsign 06-29-2010 10:41 AM

Anyone know a fix for this: A certain user (I don't know if its more then one yet) his iTrader is stuck at a certain number. Example: he has 14 total positive; but it shows a 12 for feedback score.

entertain 06-29-2010 01:25 PM

Quote:

Originally Posted by rfsforums (Post 2061423)
I'm currently testing this on my test site and would like to know how to do this also. Thanks!

will be added in next version. Thanks!
Quote:

Originally Posted by skydrake (Post 2061463)
anyone knows itrader readme.txt located anywhere? i need FAQ also :P anyones knows is there any documentation for this itrader? i having trouble..

*you do not have permission to access this page. This could be due to one of several reasons:

no, there wasn't ever one, i guess. However, you have to activate itrader in your vbulletin settings and then set the usergroup permissions.
Quote:

Originally Posted by singsign (Post 2061626)
Anyone know a fix for this: A certain user (I don't know if its more then one yet) his iTrader is stuck at a certain number. Example: he has 14 total positive; but it shows a 12 for feedback score.

This is when a user was rated twice by one person. You can change that by disabling the ebay rating style in your vbulletin settings.

dippetas 06-29-2010 03:14 PM

Quote:

Originally Posted by entertain (Post 2061213)
@dippetas:
i will check this again, too.

it seams that when you select from the menu browse all members, when the results are displayed you give in the avatar link the url for the unknown image.gif and not the users avatar, i hope this helped you :D


ps:i will try to fix it too.

eddieor 06-29-2010 04:51 PM

I've installed the mod but can't get the menu tab to appear in the navbar....tried all options in the itrader settings.

massizero 06-29-2010 05:17 PM

hi, the mod is succesfully upgraded, but in the user profile under the nickname the feedback number is 0. CLicking on it you can see all the past trades.
Is there any way I can "upgrade" the feedback number in the user profile?
thanks

spillage 06-29-2010 10:06 PM

Quote:

Originally Posted by massizero
Is there any way I can "upgrade" the feedback number in the user profile?

As a guess;

Admin CP > iTrader Tools > Update iTrader Scores

spillage 06-29-2010 10:10 PM

Quote:

Originally Posted by entertain (Post 2061695)
will be added in next version. Thanks!...

Excellent.

But you still did not define "worst", as in what actual criteria makes the Hall of Shame listing.

rfsforums 06-30-2010 01:09 AM

2 feature requests: Is it possible to to have the Rate Trade Button shown only after the thread is closed? and Not display the Rate Trade Button in Stickied Threads? We have our rules stickied in each sub-forum and each one of them have the Rate Trade Button.

Thanks for the Great Mod! I just moved it from my Dev site to my Live site :)

entertain 06-30-2010 03:06 PM

1 Attachment(s)
iTrader 2.7.5 released

I am very proud to announce that iTrader 2.7.5 was released. At first I only wanted to make a bugfix release, but you had that good feature ideas, which I wanted to implement, too.

However, I have been very busy for the last weeks and this is why development took more time than expected.

What's new?
  • Speed optimizations by index changes
    The users here suggested it - and here it is.

  • Select stats displayed on the main page
    Oh, I love this one.
    Attachment 119036

  • Setting to display rate trade button in all posts
    Also requested by some users.
    Attachment 119037

  • "Nothing to display" message on itrader user page

  • Own iTrader vBulletin Tab
    Why didn't i integrate this before??
    Attachment 119038

    Attachment 119039
Fixes:
  • Moderator/Admin Rating Change Error
  • User Avatar Bugs (Search)
  • "Your iTrader Profile" phrase hardcoded

Donations
Due to your kind donations I was/am able to support and enhance this product.

I hope you are continuing supporting my work. Please don't be shy to contact me to get my paypal address.

dippetas 06-30-2010 06:13 PM

thank you entertain for your new version. But i have to make some comments because, it made me some errors during installation. It popped up a parser error and it did not make me an own navbar tab (probably because i have vbh tabs,and some custom tabs), plus i have an empty cell in the drop down i trader which has a href into a user's profile.

edit: fixed the issue with the navbar tab, but the "your profile" link in the drop-down menu still remains
edit 2: fixed the drop down menu i had a problem probably with my vb rawphrase your_itrader_profile.
regards Dimitrios

Manoel J?nior 07-05-2010 02:34 AM

1 Attachment(s)
w do the users get to see the feedback of the negotiation? Because they do not see the account of the negotiation.

PS.: Since the option is enabled:

Display Trader Ratings in Members List: show below username

How do users have the option of seeing the status of negotiations?

See:

Attachment 119239

Spinball 07-05-2010 07:12 AM

Would it be difficult to do a version for vBulletin 3.8 for those people who don't want to upgrade to 4?

Zombo 07-05-2010 04:06 PM

"Select stats displayed on the main page"

doesn't seem to work :/ it doesn't do anything
I use 4.0.4

edit: nm I made some template edits on itrader_main and it didn't merge when I installed new version


All times are GMT. The time now is 10:33 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.02264 seconds
  • Memory Usage 1,853KB
  • 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_php_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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