View Full Version : Major Additions - iTrader v2.0.1
graham_w
01-08-2006, 01:29 AM
Just wondering how you would make the feedback comment link to the URL posted as the deal URL, instead of to the comments page ??
So when you click on the comment it will take you to the deal that was done so you can see what happened ? Thanks !
OttawaGolf
01-08-2006, 06:27 PM
Thank you Damian That's perfect. :up:
OttawaGolf
01-09-2006, 11:39 AM
Is there a way to have the iTrader ratings in postbit & postbit_legacy only show up in specific forums?
ie all classified forums, but not in the discussion forums?
There must be some kind of conditions that can be used. Help would be really appreciated.
Damian
01-09-2006, 02:48 PM
Is there a way to have the iTrader ratings in postbit & postbit_legacy only show up in specific forums?
ie all classified forums, but not in the discussion forums?
There must be some kind of conditions that can be used. Help would be really appreciated.
For single forum:
<if condition="$thread[forumid] == xx">ITRADER CODE HERE</if>
Try this for mutiple forums:
<if condition="in_array($thread[forumid],array(xx,xx))">ITRADER CODE HERE</if>
Replace x's with your forum id's
bada_bing
01-09-2006, 03:24 PM
I have recently upgraded to this version since I did a vb version upgrade to 3.5.3 and when I installed itrader it installed on some styles that have been causing me some issues. Since then I removed the custom styles and currently using the default style but the problem is that the itrader link is gone from the forum menu
before my upgrade i had applied this code with this condition to have the trader link only show up for certain member gorups but cant figure out where and what code to put on the new version..
Here is the code I was using for 3.0.7
</if>
<if condition="$show['member']">
<td class="vbmenu_control"><a href="traderratings.php?$session[sessionurl]">Trader Rating</a></td>
</if>
What and where can I add this simular code for itrader in vb 3.5.3 ?
bada_bing
01-09-2006, 03:29 PM
For single forum:
<if condition="$thread[forumid] == xx">ITRADER CODE HERE</if>
Try this for mutiple forums:
<if condition="in_array($thread[forumid],array(xx,xx))">ITRADER CODE HERE</if>
Replace x's with your forum id's
Can you explain what code you place in ">ITRADER CODE HERE</ ?
SimCityForum
01-09-2006, 03:39 PM
The iTrader code you would have put into the postbit template.
bada_bing
01-09-2006, 04:01 PM
The iTrader code you would have put into the postbit template.
I did not install this hack? can you be more specific please....
I need two things.
1. insert a link called Itrader in my forum menu with a condition that only logged in members can see.
2. I need to insert the rating only for certain forums (selling, trading)
I am not a coder so please your help would be greatly appreciated if you can post the correct code and exacly where I would insert this code for the two requests about
ryansmith
01-09-2006, 05:19 PM
Is there a way to setup a conditional in the the postbit, so it only shows the "iTrader" info if the user has at least 1 feedback?
I was wondering the same thing. 90% of my board members would have an iTrader rating of 0 (0%) so I was wondering if there was a conditional to either:
A) Not display the iTrader menu in a person's profile/postbit unless they have ratings, or
B) Display N/A instead of the total (percentage).
Ryan
Damian
01-09-2006, 06:43 PM
1. insert a link called Itrader in my forum menu with a condition that only logged in members can see.
iTrader has a permission system. You can disallow groups from viewing the itrader pages. If you want a link in your navbar to only show to members just add it to your "Quick Links' menu. There is a template edit for this included in the zip file in this post:
https://vborg.vbsupport.ru/showpost.php?p=868906&postcount=254
If you want to have a individual link in your navbar to take logged in members to their iTrader page instead of in "Quick Links" menu use:
<if condition="$show['member']"><td class="vbmenu_control"><a href="$vboptions[bburl]/itrader.php?$session[sessionurl]">My iTrader</a></td></if>
Put that where you want the link. For example, to add it to the right of the UserCP link, add it below:
<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
</if>
2. I need to insert the rating only for certain forums (selling, trading)
This is also included in the zip file.
sadecosefo
01-09-2006, 07:05 PM
All the template edits I have posted in this thread are in the attached zip file.
In memberlist
Find:
<td class="thead" align="$stylevar[left]" nowrap="nowrap"><a href="$sorturl&order=ASC&sort=username&pp=$perpage$userg rouplink">$vbphrase[username]</a> $sortarrow[username]</td>
After add:
<td class="thead" nowrap="nowrap">iTrader</td>
In memberlist_resultsbit
Find:
<tr align="center">
<td class="alt1Active" align="$stylevar[left]" id="u$userinfo[userid]">
<a href="member.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[musername]</a>
<if condition="$show['usertitlecol']"><div class="smallfont">$userinfo[usertitle]</div></if>
</td>
After add:
<td class="$bgclass">(<strong><a href="itrader.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[itrader_total]</a></strong>) / $userinfo[itrader_pcnt]%</td>
If you want an button instead of a text link showing current score, add this instead of the above:
<td class="$bgclass"><a href="itrader.php?$session[sessionurl]u=$userinfo[userid]"><img src="$stylevar[imgdir_button]/itrader.gif" alt="itrader.gif" title="Submit feedback for $userinfo[username]" border="0" /></a></td>
Make a button "itrader.gif" and upload it to your button directory. I made a button for those of you using the default template.
Fantastic. Worked like a charm. Thank you.
OttawaGolf
01-09-2006, 07:33 PM
For single forum:
Try this for mutiple forums:
<if condition="in_array($thread[forumid],array(xx,xx))">ITRADER CODE HERE</if>
Replace x's with your forum id's Works perfect. Thanks again! REALLY great of you.
bada_bing
01-10-2006, 12:44 PM
I am trying to add the itrader post count () on top of a few forums like I had with my older trader rating and read a reply by another poster but having some issues.
He says to add this code to the postbit
Quote:
Originally Posted by OttawaGolf
Is there a way to have the iTrader ratings in postbit & postbit_legacy only show up in specific forums?
ie all classified forums, but not in the discussion forums?
There must be some kind of conditions that can be used. Help would be really appreciated.
For single forum:
<if condition="$thread[forumid] == xx">ITRADER CODE HERE</if>
Try this for mutiple forums:
<if condition="in_array($thread[forumid],array(xx,xx))">ITRADER CODE HERE</if>
Replace x's with your forum id's
My question is what code so I enter for ">ITRADER CODE HERE</
Please Help
ludachris
01-10-2006, 02:08 PM
To upgrade from 2.0.0 to 2.0.1, I'm guessing we have to uninstall the original plugin and install the new one as well as uploading all the new files. Anything else we need to do? I tried searching this thread to find out, but couldn't find any info.
Damian
01-10-2006, 03:50 PM
To upgrade from 2.0.0 to 2.0.1, I'm guessing we have to uninstall the original plugin and install the new one as well as uploading all the new files. Anything else we need to do? I tried searching this thread to find out, but couldn't find any info.
Upload the new files.
Do not uninstall the existing product.
To upgrade click on the Add/Import Product link. Make sure "Allow Overwrite" is set to yes.
There will be 2 settings that need to be manually changed in youre Admin CP.
eoc_Jason
01-11-2006, 05:56 PM
sellbuydomain - I'm sorry but I can't help you there. PM Receipts are controlled by the stock VB class, I would check your PM tables to make sure they were inserted properly and the autonumbers are at the correct #'s.
SimCityForum - I'm not 100% sure you will need to check the code (either the PHP file or the template), but if you set it to the proper variable it should auto-fill it for you.
Scorian & belicoso fino - *sigh* yes it works... vB 3.5.x uses a "plug-in" system that for the most part makes these add-on's independent of the core vB changes.
graham_w - It links directly to a (thread) URL for normal users, it only links to the detail page for the two people involved in the deal & admins. You can still access the (thread) URL on the detail page if you click the linked comment text at the top.
Guys, I'm not going to post replies related to basic "How Do I Do Template Conditionals". Read the vB documentation on that and experiment some.
Anyhow, glad to see people have not run into any big problems or bugs using the system. I'm hoping to have 2.0.2 released either Friday or Saturday. Work has really picked up lately and I'm just swamped, so there hasn't been much time to work on this and my many other projects.
SimCityForum
01-12-2006, 12:24 AM
SimCityForum - I'm not 100% sure you will need to check the code (either the PHP file or the template), but if you set it to the proper variable it should auto-fill it for you.
I figured out a solution. In the postbit or postbit_legacy templates replace the rep button with:
<a href="itrader_feedback.html?u=$post[userid]&p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a>
Then in the iTrader_feedback template I replaced the dealurl code with:
<if condition="$_GET[p]>0">
<input class="bginput" type="hidden" name="dealurl" value="$vboptions[bburl]/showthread.html?p=$_GET[p]#post$_GET[p]" />
<else />
</td>
</tr>
<tr>
<td class="alt2" nowrap="nowrap">
$vbphrase[itrader_thread_url]:
<br /><span class="smallfont">
<if condition="$vbulletin->options['itrader_requrl'] == 1">
$vbphrase[itrader_required]
<else />
$vbphrase[itrader_optional]
</if>
</span>
</td>
<td class="alt2" width="100%">
<input class="bginput" type="text" name="dealurl" size="45" maxlength="255" value="$itrader[dealurl]" /><br />
<span class="smallfont">$vbphrase[itrader_url_example]</span>
</if>
You'll notice that I changed the dealurl input to hidden from text as the user doesn't need to see it if the value has been prepadded. I used the postid instead of the threadid so that the link could be related back to the exact post not just the thread.
A similar tweak can be done to the normal iTrader link, but it requires passing the postid value along at the itrader_user template using the following code:
<a href="itrader_feedback.html?$session[sessionurl]u=$userinfo[userid]<if condition="$_GET[p]>0">&p=$_GET[p]</if>"><strong>$vbphrase[itrader_submit_feedback] $userinfo[username]</strong></a>
This was a fairly clean tweak as it impacted only a few templates.
Freezerator
01-12-2006, 03:17 PM
Is anyone willing to help a virtually helpless fool modify the templates, etc, to make this work?
I've installed the base product and can see and configure it in the admin cp. I have no idea hwo to modify the templates, moore specifically, where to put the various code snippets.
Also, when I tried to manually navigate to http://wwwmyforum.net/itrader.php, I get a permissions error.
I'd be more than happy to add dollars to someone's PayPal account for help. I run a cigar forum, and the trader rating system would be a boon to our site.
TIA...
First give your usergroup permissions to use the iTrader system. Then simply add it in your templates as discribed.
Shoemoney
01-15-2006, 03:58 AM
awesome job Jason! You came through like a champ
butty
01-16-2006, 03:09 AM
installed it and it works like a charm. thanks a lot mate this is gonna come in very useful for my members :)
djwins
01-16-2006, 03:13 AM
any update on when the new version will be released (that hopefully includes a home page)?
bada_bing
01-17-2006, 01:57 AM
Does anyone know what this means when a member tries to leave feedback and enter a valid link but gets this message The deal URL is invalid! which does not allow him to leave feedback?
Shoemoney
01-17-2006, 05:25 PM
It means when it checks the url specified its invalid... where are you stuck at
ryansmith
01-17-2006, 10:46 PM
About the 80 character "short comment" field...
I want to increase this, so I changed the number of characters in the itrader_feedback template, and I changed it in the DB.
But the phrase, $vbphrase[itrader_max_characters], still says 80 characters. How do I edit the phrase so that I can change the number? Otherwise, when I go to leave a rating for someone, it says 80 maximum even though I increased it.
I went into AdminCP > Languages and Phrases, I found the phrase and clicked edit, but there's no text box there for me to edit it next to "Text:". It just shows this line: Note: 80 characters max & no HTML/Smilies/vBcode
Do I have to somehow edit the phrase through the DB, and if so, how do I make the forum show the reflected change when I'm done?
Ryan
bada_bing
01-18-2006, 11:49 AM
It means when it checks the url specified its invalid... where are you stuck at
It is not an invalid url ? Any other reasons for this error?
2fast4ya
01-18-2006, 07:46 PM
how do i add the feedback info, and the recent rating on the member profiles? I've seen it on other websites like dnforum... http://www.dnforum.com/members/69627.html
how can i do this? :) thx in advance
Shoemoney
01-18-2006, 09:18 PM
It is not an invalid url ? Any other reasons for this error?
geez.. disable the option to check url.. does this fix it? Do a little trouble shooting
Shoemoney
01-18-2006, 09:19 PM
how do i add the feedback info, and the recent rating on the member profiles? I've seen it on other websites like dnforum... http://www.dnforum.com/members/69627.html
how can i do this? :) thx in advance
Its all in the documentation =P
2fast4ya
01-18-2006, 10:28 PM
if your talking about this:
Most likely you will want to add the score info to the postbit and/or postbit_legacy template(s), MEMBERINFO, and memberlist_resultsbit template. Actual placement and style is entirely up to you, however here's a sample to get you started. Note that the MEMBERINFO & memberlist_resultsbit templates won't need the conditional around the text since you can't view a "guest" in those cases.
<if condition="$post['userid']"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>
all that code does is provide the member score info... im asking for more than that :) if you click the link i provided you will see exactly what i mean :) thanks
Odysseus
01-19-2006, 12:47 PM
One question:
In the vB3.0 version of this hack, an overview page was included, where you could see statistics about all ratings and the top rated members etc.
Where is this page in iTrader 2.0?
Guest210212002
01-19-2006, 06:38 PM
One question:
In the vB3.0 version of this hack, an overview page was included, where you could see statistics about all ratings and the top rated members etc.
Where is this page in iTrader 2.0?
* Guest210212002 would also like to know.
bada_bing
01-19-2006, 06:46 PM
There was a search rating by member name with the older version also :squareeyed:
cgchris99
01-20-2006, 02:52 AM
Where is the best place to display the itrader rating?
I was thinking about putting it under the users name in the thread display?
What do you think?
Any examples of what others have done?
Thanks
phonexpo
01-20-2006, 02:56 AM
Where is the best place to display the itrader rating?
I was thinking about putting it under the users name in the thread display?
What do you think?
Any examples of what others have done?
Thanks
Here's mine - http://phonexpo.net/showthread.php?p=8727#post8727
It looks well in the postbit_legacy
Puntoboy
01-20-2006, 02:57 AM
Here's mine - http://phonexpo.net/showthread.php?p=8727#post8727
It looks well in the postbit_legacy
same for me...
http://www.puntosports.co.uk/forums/showthread.php?p=458053#post458053
Puntoboy
01-20-2006, 02:58 AM
One question:
In the vB3.0 version of this hack, an overview page was included, where you could see statistics about all ratings and the top rated members etc.
Where is this page in iTrader 2.0?
this would be very good.
Guest210212002
01-20-2006, 03:47 PM
Here's mine - http://phonexpo.net/showthread.php?p=8727#post8727
It looks well in the postbit_legacy
I have mine there as well, with a conditional so that they only show in the for sale/trade type forums.
phonexpo
01-20-2006, 03:50 PM
I have mine there as well, with a conditional so that they only show in the for sale/trade type forums.
Yeah I must just limit it to just my sale section too.
cdoyle
01-20-2006, 05:08 PM
Hi,
Can someone post a link to a live forum that has this installed? Would like to see how it looks in use.
Thanks
Chris.
Guest210212002
01-20-2006, 05:56 PM
Hi,
Can someone post a link to a live forum that has this installed? Would like to see how it looks in use.
Thanks
Chris.
http://www.sevenstring.org/forum/showthread.php?t=3150
Look in OP's postbit.
And here's his view page:
http://www.sevenstring.org/forum/itrader.php?u=187
(Not much data on my site, hasn't been installed long)
fonzie11
01-20-2006, 07:14 PM
i just installed it.. but how do i leave the people the feedback now? Were do i goto?
kontrabass
01-23-2006, 09:01 PM
Sorry if this has been asked previously (did a search): Is there a way to specify the name(s) of moderators who are to receive reports of bad ratings?
graham_w
01-24-2006, 03:24 AM
graham_w - It links directly to a (thread) URL for normal users, it only links to the detail page for the two people involved in the deal & admins. You can still access the (thread) URL on the detail page if you click the linked comment text at the top.
Ahh thanks mate :) Makes sense that would happen like that !
Another question - we used to keep a manual scoring system, and want to update all members feedback score in itrader with their total. What is the best way to manually add this ? Don't mind if its manual DB work - just need to know the best way :)
exilera
01-24-2006, 02:33 PM
I'm not a coder, so I'm not sure exactly where to add the rating code to the postbit/postbit legacy, memberinfo, etc, or make any changes necessary for it to look good.
Would someone mind posting where they placed the iTrader display code on their forums?
Another question, how would I add a link to the iTrader display in the user's CP to add it under "Miscellaneous"?
Thanks!
exilera
01-24-2006, 03:07 PM
All the template edits I have posted in this thread are in the attached zip file.
In memberlist
Find:
<td class="thead" align="$stylevar[left]" nowrap="nowrap"><a href="$sorturl&order=ASC&sort=username&pp=$perpage$userg rouplink">$vbphrase[username]</a> $sortarrow[username]</td>
After add:
<td class="thead" nowrap="nowrap">iTrader</td>
In memberlist_resultsbit
Find:
<tr align="center">
<td class="alt1Active" align="$stylevar[left]" id="u$userinfo[userid]">
<a href="member.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[musername]</a>
<if condition="$show['usertitlecol']"><div class="smallfont">$userinfo[usertitle]</div></if>
</td>
After add:
<td class="$bgclass">(<strong><a href="itrader.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[itrader_total]</a></strong>) / $userinfo[itrader_pcnt]%</td>
If you want an button instead of a text link showing current score, add this instead of the above:
<td class="$bgclass"><a href="itrader.php?$session[sessionurl]u=$userinfo[userid]"><img src="$stylevar[imgdir_button]/itrader.gif" alt="itrader.gif" title="Submit feedback for $userinfo[username]" border="0" /></a></td>
Make a button "itrader.gif" and upload it to your button directory. I made a button for those of you using the default template.
Would you mind doing the same thing for the Postbit and postbit legacy templates, and the AdminCP?
exilera
01-24-2006, 03:24 PM
By the way, how would I fix the bottom bar in the attached image? :)
Thanks for the help!
Guest210212002
01-24-2006, 03:44 PM
By the way, how would I fix the bottom bar in the attached image? :)
Thanks for the help!
I believe you'd need to look for colspan="4" to the bottom row of that template, and change it to colspan="5".
exilera
01-24-2006, 03:52 PM
I believe you'd need to look for colspan="4" to the bottom row of that template, and change it to colspan="5".
Hmm, I believe this is the relevant code from the MEMBERLIST template:
<td class="tfoot" colspan="$totalcols" align="$stylevar[right]">
<span class="smallfont">
<if condition="$show['usergroup']">
<input type="submit" class="button" value="$vbphrase[remove_selected_users]" />
<else />
<phrase 1="$first" 2="$last" 3="$totalusers">$vbphrase[showing_results_x_to_y_of_z]</phrase>
</if>
</span>
</td>
AllenMead
01-28-2006, 04:26 PM
Great hack, upgrade installed seamlessly. One question, how do I show this in the user's profile on each post instead of at the top or bottom 'outside' of the post as it does on your site Jason?
Thanks in advance!
phonexpo
01-28-2006, 04:35 PM
Great hack, upgrade installed seamlessly. One question, how do I show this in the user's profile on each post instead of at the top or bottom 'outside' of the post as it does on your site Jason?
Thanks in advance!
Hi,
Put the code in to the postbit legacy ;).
AllenMead
01-28-2006, 04:50 PM
Thanks Patrick, sorted works a treat!
AllenMead
01-28-2006, 05:00 PM
Ah, one other thing, how do I get it to show both the feedback number and the percentage, I can only get it to show one or the other.
Thanks.
mariannet
01-28-2006, 08:16 PM
I have the following error and I know it's because of my PHP version, but I have had it once before and then I could use a different term [than html_entity_decode]
to solve it, can't remember what - can you help?
Call to undefined function: html_entity_decode() in /home/xxx/xxx-www/includes/functions_itrader.php on line 22
mariannet
01-28-2006, 08:23 PM
I have the following error and I know it's because of my PHP version, but I have had it once before and then I could use a different term [than html_entity_decode]
to solve it, can't remember what - can you help?
Call to undefined function: html_entity_decode() in /home/xxx/xxx-www/includes/functions_itrader.php on line 22
Sorted and in case anyone else should need it:
Open /includes/functions_itrader.php
Go to line 17
On the line before: function itrader_checkurl($dealurl)
Add:
function html_entity_decode($string)
{
$trans_tbl = get_html_translation_table(HTML_ENTITIES);
$trans_tbl = array_flip($trans_tbl);
return strtr($string, $trans_tbl);
}
desimedia
01-31-2006, 02:45 PM
ok, I made the relevant changes to the memberlist files, but what about the other changes? how can someone give feedback/rating? where is that option? I am pretty new to this, so any step by step would be nice.
thanks
Where exactly can this plugin be translated to other language? Do I have to go through the code and translate it or do I just search phrases in vbulletin and translate them? Sorry, I have no clue as to how to do it. Thanks in advance.
kontrabass
02-01-2006, 02:52 PM
How can I control who gets 'suspicious activity' and warning emails? I don't need them sent to all 40 of my moderators... :(
I was running the older version of this on my vbulletin 3.0.3
I just updated to 3.5.3 and it no longer works. The feedback score is still there but does not work upon clicking.
I tried all the installation instructions but am still very new to this...
I am confused about what to do with the templates...any help would be appreciated.
bada_bing
02-03-2006, 03:59 PM
I was running the older version of this on my vbulletin 3.0.3
I just updated to 3.5.3 and it no longer works. The feedback score is still there but does not work upon clicking.
I tried all the installation instructions but am still very new to this...
I am confused about what to do with the templates...any help would be appreciated.
Template Instructions:
Two fields are added to the "user" table to facilitate rating usage pretty much anywhere you please within the forum. The two fields are:
itrader_total - iTrader Score (stored as an integer)
itrader_pcnt - Percent Positive Feedback (also stored as an integer)
Most likely you will want to add the score info to the postbit and/or postbit_legacy template(s), MEMBERINFO, and memberlist_resultsbit template. Actual placement and style is entirely up to you, however here's a sample to get you started. Note that the MEMBERINFO & memberlist_resultsbit templates won't need the conditional around the text since you can't view a "guest" in those cases.
<if condition="$post['userid']"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>
Additionally it would be wise to have some sort of link that is easily accessible to your members so they can view their own ratings. My suggestion would be to add some code in the navbar or usercp menu somewhere. If no userid is specified then the system defaults to the user's own iTrader page.
<a href="itrader.php?$session[sessionurl]">iTrader</a>
Use your imagination where you want these links to be visible, there's nothing set in stone where it should be display or how it should look. Some people wanted the percent score so I added in this version. You can get creative and use some stars or something based on their score or positive ranking.
If you only wanted the info to show up for specific usegroup, you can use the "is_member_of()" function conditional in your templates. Also if you only wanted it to show up for specific forum sections, you could use the "in_array()" function. Read more in the vBulletin documentation for nifty things with template conditionals.
Sorry to skimp on the documentation, next release will be much better, however most people should know what they are doing by now with templates and if you don't, spend the time to learn as you can greatly enhance your forum.
Figured it out...works great.
Edmund
02-04-2006, 02:41 PM
I was re-reading thru this entire thread and noticed no one has reported a problem we are encountering - we have disabled suspicious activity email notifications thru iTrader's Admincp settings but are still receiving them.
Any suggestions?
Btw, we are running vbb 3.5.3.
fluentdesigns
02-04-2006, 08:45 PM
Im trying to get the feedback to show up in the postbit but am having no luck. I tried adding two different lines of code but they dont seem to be working. here is what I put in my postbit.
1.
<if condition="$post['userid']"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>
2.
<if condition="$post[itrader_total]">$post[itrader_pcnt]%</if>
Damian
02-05-2006, 04:02 AM
Im trying to get the feedback to show up in the postbit but am having no luck. I tried adding two different lines of code but they dont seem to be working. here is what I put in my postbit.
1.
<if condition="$post['userid']"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>
2.
<if condition="$post[itrader_total]">$post[itrader_pcnt]%</if>
Use:
<div>iTrader: <strong><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></strong> / $post[itrader_pcnt]% </div>
graham_w
02-06-2006, 10:01 PM
Another question - we used to keep a manual scoring system, and want to update all members feedback score in itrader with their total. What is the best way to manually add this ? Don't mind if its manual DB work - just need to know the best way :)
Just hoping this question didn't get lost - has it been asked previously ? My problem is when updating the user profile directly, it still doenst update in the itrader feedback page properly. Hoping there is a better way of manually adding scores :)
Guest210212002
02-06-2006, 10:18 PM
Anyone come up with a summary page for this that only lists members with a feedback rating?
eoc_Jason
02-07-2006, 07:34 PM
Hey guys, sorry I haven't been around. Work have just been killing me along with other obligations.
I need to finish up all the changes for the 2.0.2 rollout, there's a few bug fixes and additional features. I'll try to get the summary page done, but I'm not making any promises. Someone could port over the old page and call it something else like itrader_home.php or something.
grahm_w - Do not manually edit the scores in the user table, those get overwritten from the itrader table data. If you want to add additional records you will need to add them to the itrader table then you can do a mass-update to the user table via the admincp.
I'm not sure why suspicious activity would still be emailed if you disable it. What is the exact reason it gives? I'll have to double check the code.
Someone else mentioned an error with pagination when viewing via the "from buyers" "from sellers", or other tabs, but I have not been able to reproduce that error and nobody else has reported it, I think it might be related to an old template or file.
As for having only certain groups get the emails from suspicious activity. Any group set to "can admin itrader" gets the emails. If you don't want all your mods to get them, create a separate usergroup and set only those mods you want as itrader admins in that as a sub-group. I might make another usergroup option related to the emails, but no promises on that either.
acorndomains.co
02-07-2006, 08:05 PM
I have just added it to acorndomains .co.uk and seems to be working great.
Would like to see a couple of mods as already requested here, a top ratings list (best and worst) and extra field for transaction value.
Many thanks for a great plug in!
Gio~Logist
02-07-2006, 08:14 PM
Hey guys, sorry I haven't been around. Work have just been killing me along with other obligations.
I need to finish up all the changes for the 2.0.2 rollout, there's a few bug fixes and additional features. I'll try to get the summary page done, but I'm not making any promises. Someone could port over the old page and call it something else like itrader_home.php or something.
grahm_w - Do not manually edit the scores in the user table, those get overwritten from the itrader table data. If you want to add additional records you will need to add them to the itrader table then you can do a mass-update to the user table via the admincp.
I'm not sure why suspicious activity would still be emailed if you disable it. What is the exact reason it gives? I'll have to double check the code.
Someone else mentioned an error with pagination when viewing via the "from buyers" "from sellers", or other tabs, but I have not been able to reproduce that error and nobody else has reported it, I think it might be related to an old template or file.
As for having only certain groups get the emails from suspicious activity. Any group set to "can admin itrader" gets the emails. If you don't want all your mods to get them, create a separate usergroup and set only those mods you want as itrader admins in that as a sub-group. I might make another usergroup option related to the emails, but no promises on that either.
I have PMed you regarding a question.
djwins
02-08-2006, 10:47 AM
I need to finish up all the changes for the 2.0.2 rollout, there's a few bug fixes and additional features. I'll try to get the summary page done, but I'm not making any promises. I apoligize if this is innappropriate (or insulting), but I will paypal you $50 if the home page makes into 2.0.2.
Thanks!
kobescoresagain
02-10-2006, 03:58 PM
Jason, I would like to thank you for this wonderful code. I have used your different Feedback systems before and have nothing but praise for them. A job well done.
misticjeff
02-12-2006, 08:47 PM
A great mod indeed!!!
Would love to have a "homepage" or "summary" page though showing all users with feedback and their ratings.
Installed!
Gio~Logist
02-13-2006, 01:36 AM
I will be releasing the itrader homepage Addon tommorow hopefully.
misticjeff
02-13-2006, 05:24 AM
I will be releasing the itrader homepage Addon tommorow hopefully.
Very Cool!! Looking forward to it....
Gio~Logist
02-14-2006, 01:33 AM
I decided to add more things :p It's already added and the hack is pretty much done, however, i need to do some finishing touch ups and then make install files.
Sorry for the one day delay (not really to much of a deal). However, i think you guys will like this.
Feel free to PM me for more info, as i do not want to highjack this thread.
CodeRed
02-14-2006, 08:28 PM
I need to finish up all the changes for the 2.0.2 rollout, there's a few bug fixes and additional features. I'll try to get the summary page done, but I'm not making any promises.
ive been really wanting to get this hack installed... my question is.
should i wait for the 2.0.2 roll out or install the current 2.0.1 version now. Im not sure how tough the version upgrade would be...
Maybe you can lemme know if the upgrade procedure would be fairly easy and nothing to fret over. thanks.
BiReL41r
02-14-2006, 11:50 PM
Very nice hack, will have it on my forums soon!
CodeRed
02-18-2006, 05:45 PM
well i couldnt wait for the new roll out.. hehe i installed it.
my question is. Id like to add a link like "View I-Trader Rating" in the popup menu that appears when you click a users name in the thread.
say for instance, i post an item for sale on the forum, a member can click my name (in the post) and in the popup menu that displays other info like "view profile" "send email" etc they can choose a "view i-trader rating" link and then that takes them to my i-trader rating page etc.
my problem is i have no idea what file it is that controls that popup menu so that i can intergrate that link as an option..
can someone tell me which file it is I need to edit?
Thanks, any info is greatly appreciated.
EDIT:
i found the answer. edit posbit files..
i also used this code here:
https://vborg.vbsupport.ru/showpost.php?p=852086&postcount=144
just skimmed/read 23 pages.. from what im seeing the main overall stats page is gone now..
will it be returning anytime soon or has anyone tweaked the new one to show all stats?
Gio~Logist
02-19-2006, 07:55 PM
just skimmed/read 23 pages.. from what im seeing the main overall stats page is gone now..
will it be returning anytime soon or has anyone tweaked the new one to show all stats?
Take a look at the hacks in my profile. I made an add on for this :p
RealityDesign
02-20-2006, 04:59 AM
Awesome hack...installed and loving it!
Booba
02-20-2006, 10:15 AM
Tried downloading this but winzip is saying its corrupt. can someone please verify. other hacks have downloaded fine tonight.
many thanks,
booba.
Right now the value in the postbit legacy template gives the "Members who left a positive field"...is there a way to change this so the "Total Feedback Received" is the numerical value?
GlitterKill
02-23-2006, 02:37 PM
Works with VB 3.54?
msimplay
02-23-2006, 03:38 PM
Works with VB 3.54?
seems to be working ok here upgraded to 3.54 last night
Freezerator
02-24-2006, 06:32 AM
I think i have found somekind of bug?
When i view my who is online page, sometimes it would show in the upper left corner of that page there would appear itrader.php
When i view the source of that page, i see this on the first line:
itrader.php<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" lang="en">
This is only when someone is viewing itrader. On the other who is online pages where noone is viewing itrader, it won't happen. I hope you can reproduce this.
I am running 3.5.3 with itrader 2.0.1
Taylor123
02-24-2006, 10:21 AM
awesome
Taylor123
02-24-2006, 10:27 AM
i dont understand this much....I don't see where we leave feedback (i could only leave feedback for myself that i noticed)
and also the itrader_global.php is giving me an error
Warning: main(DIR/includes/functions_itrader.php): failed to open stream: No such file or directory in /**********/public_html/forums/itrader_global.php on line 19
Fatal error: main(): Failed opening required 'DIR/includes/functions_itrader.php' (include_path='.:/usr/local/lib/php') in /************/public_html/forums/itrader_global.php on line 19
i checked and functions_itrader.php is uploaded in the correct spot
FudgeBalls2002
02-25-2006, 01:32 PM
Where in the navbar file would I add the code to make the link appear for everybody to the right of the search button?
djwins
02-26-2006, 04:53 AM
How does the system know how to link two feedbacks together?
I thought it must be related to the deal URL, but I see some get linked regardless if the deal url is submitted.
The reason I am asking is that some deals in my forums' iTrader are not being linked together, although feedback on both sides has been left.
Thanks for the great hack!
teamelusive
03-01-2006, 11:22 PM
I can't seem to get it the (0) to show up on the username after the member search.
i thought it was this file we needed to edit "memberlist_resultsbit"
i've been pasting <if condition="$post['userid']"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>
^^ that worked for user the username for posts.. but same code did not.. what am i missing?
djwins
03-02-2006, 12:01 AM
I use this on memberlist_resultsbit:
<if condition="$userinfo[itrader_total]"><div class="smallfont">iTrader: (<strong><a href="itrader.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[itrader_total]</a></strong>) / $userinfo[itrader_pcnt]% </div></if>
Anyone have an answer for my question 2 posts up?
teamelusive
03-02-2006, 12:31 AM
^^ whish i could help wit ur issue ....but Thanks for the quick reply... but where exactly did u paste yours code? i can't seem to get mine to show up anywhere...almost like its ignored ...
this is how i have mine currently in memberlist_resultsbit first 10 lines or so..
<tr align="center">
<td class="alt1Active" align="$stylevar[left]" id="u$userinfo[userid]">
<a href="member.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[musername]</a>
<if condition="$show['usertitlecol']"><div class="smallfont">$userinfo[usertitle]</div></if>
<if condition="$userinfo[itrader_total]"><div class="smallfont">iTrader: (<strong><a href="itrader.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[itrader_total]</a></strong>) / $userinfo[itrader_pcnt]% </div></if>
</td>
djwins
03-02-2006, 02:01 AM
In memberlist_resultsbit
Find:
<if condition="$show['usertitlecol']"><div class="smallfont">$userinfo[usertitle]</div></if>
Below Add:
<br /><if condition="$userinfo[itrader_total]"><div class="smallfont">iTrader: (<strong><a href="itrader.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[itrader_total]</a></strong>) / $userinfo[itrader_pcnt]% </div></if>
coachjohns
03-02-2006, 06:29 AM
I keep getting
error 404: File not found
The document you requested is not found
when I click on the (0), what do i need to do to fix it?
I got it to work now....Thanks
argash
03-02-2006, 10:13 AM
I just upgraded to 3.5.4 and now im getting this error on all my member profiles
http://www.texasmagicleague.com/forums/member.php?u=14
I've reverted to the original template and members.php file and yet still get it. ive also re-installed iTrader with no luck. anyone have any ideas?
LEAD_WEIGHT
03-02-2006, 05:28 PM
I keep getting
error 404: File not found
The document you requested is not found
when I click on the (0), what do i need to do to fix it?
I got it to work now....Thanks
If you get something to work after you had trouble with it, you need to explian how you came to fixing it. Lots of other noobs might just want to know. ;)
bashy
03-02-2006, 06:39 PM
I dont understand the template edits its very vague :(
Can anyone advise please as this is the 1st time install for me :)
I would like this <a href="itrader.php?$session[sessionurl]">iTrader</a>
to show above in the edit signature link the usercp, what other code
do i need to add please?
Trana
03-03-2006, 12:20 AM
I may have missed this in my reads/search of this thread....
Is there any way to add a 3rd and 4th type? I.E. Buyer, Seller, Group Buy Organizer, Group Buy Participant? My members would like these two extra choices to differential between normal trades and organized group buys, which are extremely different than normal exchanges.
Thanks!
coachjohns
03-03-2006, 05:48 AM
I have another question.....When I click the itrade in the navbar it shows my trade ratings, is there away to show the top over all traders/ratings?
Does anyone have a solution to get this to work with 3.5.4?
djwins
03-08-2006, 01:39 PM
I have it running on 3.5.4 and it works fine.
coffeeam
03-08-2006, 07:42 PM
I love this thing!
Quick question(s) though:
in the "deal thread URL" field, is there any issue with a user pasting the reply number along with the rest of the address?
showthread.php?p=7#post22
I don't see an easy way to having it autofill the field either, as feedback can be left by a user regardless of the path they take to the feedback screen.
I saw it mentioned earlier, but does vBSEO play nice with this?
opteek
03-08-2006, 10:23 PM
Has anyone gotten this working so that only a specific usergroup can be rated?
I want everyone to be able to see the rating, but I want only one usergroup, which can be rated and will have their rating in the postbit. Is this hard to do?
Treak
03-09-2006, 04:21 AM
greatest mod yet!
jellybaby
03-11-2006, 11:04 AM
My members are getting an error when trying to leave feedback saying they cant leave feedback till till 22-2-2006. Has anyone else experienced a problem like this or any ideas what could be causing it. I have 3.5.4 with the plugin
Thanks
0ptima
03-11-2006, 08:03 PM
This is a great hack and I have been using it since 3.0. The only thing i am disapointed with is that there is no main page like the one in 3.0. Any plans on releasing one, or are we stuck with the other plugins for this hack?
HappyDJ
03-11-2006, 10:21 PM
This is the first MOD im trying to install but I can't follow the instructions because I have no idea where to put the code or anything! I am GUTTED because I really wanted this - is there any chance someone can write something like:
find [whatever], after this line insert [whatever]
I just dont have a clue what to do with it! Can anyone offer any pointers or anything?
Thanks for any help in advance
djwins
03-12-2006, 12:13 PM
Someone else mentioned an error with pagination when viewing via the "from buyers" "from sellers", or other tabs, but I have not been able to reproduce that error and nobody else has reported it, I think it might be related to an old template or file.
Jason, I checked this on your forums and you have the same issue there. At a quick glance it might look like it is working properly, but it is definitely not.
If you select to view feedback from "From Buyers - From Sellers - From Trades - Left for Others". and then click on a page number to view, it will take you to the "All Feedback Received" section, no matter which of the above sections you have selected. It will take you to the proper page number, but it will be in "All Feedback Received" section, not the section that you actually selected.
For a quick example, check this guy's "Left for Others" feedback and then click on page #2
http://forums.extremeoverclocking.com/itrader.php?u=2416 (http://forums.extremeoverclocking.com/itrader.php?u=2416)
You will notice that you are now looking at page #2 of his "All Feedback Received" section.
derfelix
03-19-2006, 12:46 PM
little cosmetic prob in the example in the post above..
in the second comment it says:
Good trader & fast shipping. A+A+
would be nice if the & would simply read & as users will often use this as they dont have much space...
But its a wonderfull hack
*install clicked a while ago*
Felix
GSX-Racing
03-20-2006, 10:13 PM
I'm getting this error when I try to import the product.
Importing Product, Please Wait...
[:]
Warning: Unknown(/home/domainhere/public_html/vb/includes/class_bitfield_builder.php): failed to open stream: No such file or directory in /admincp/plugin.phtml(1232) : eval()'d code on line 40
Fatal error: (null)(): Failed opening required '/home/domainhere/public_html/vb/includes/class_bitfield_builder.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/domainhere/public_html/vb/admincp/plugin.phtml(1232) : eval()'d code on line 40
The only thing I can think of is that all my file extensions of vB are .phtml. I have change the .php to .phtml in all the files.
Should I not be doing this. I'm running a fresh install of 3.5.4
snowman872
03-25-2006, 04:47 AM
Wow! iTrader totally rocks! What an awesome enhancement to the board. Thanks and I will be making a donation.
Also, thanks to the person who did the zip file with instructions on how to easily add it to various places in the board.
*clicks install*
-- Snowman
lifesourcerec
03-25-2006, 03:57 PM
anyone came up with a Top Feedback list page yet?
Gio~Logist
03-25-2006, 03:59 PM
anyone came up with a Top Feedback list page yet?
https://vborg.vbsupport.ru/showthread.php?t=108065
Sidewindr
03-30-2006, 03:22 AM
Possibly a bug or maybe an oversight ...
The problem is that when you go to the rating summary to view the actual rating comments the Rating Summary is a link to the original thread (which is all cool) but it is not obvious .. Is it possible to change it so that there is a obvious link to the actual thread that the rating is for??
Does this make sense ?? :)
kellyandmike
03-30-2006, 11:58 AM
I get an error message when I try to log on to my feedback itrader page.
vBulletin Message
(name edited out), you do not have permission to access this page. This could be due to one of several reasons:
Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
I am admin so where do I change this setting so that I can get iTrader up?
It is under my vbulletin options, itrader settings. Everything looks good. BUT I cannot see it under "Contact Info" either.
HELP!
Kelly
popytart
03-31-2006, 07:29 PM
Love the mod, but I wonder if theres a way to mass add feedback? From other sites (communities). I setup an account to add feedback, but I have to do it one comment at a time, one user at a time.. any thoughts on an import tool? :)
Edit: so Ive figured out how to add via phpMyAdmin, but there has to be an easier way to plug in all the data and have it import (ie: so new users can import their own feedback w/out my assistance, because as it grows, I really dont want to be importing users feedback..)
Im probably not making any sense, and I may just need to get my brain switched back to programming mode and figure it out myself, lol.
kellyandmike
04-02-2006, 07:56 PM
Ok, I have the itrader and the feedback rating showing on posts next to the person's screen name, however I don't know how to change the usergroup permissions to allow me to view the actual page when I click on the feedback rating. I know it said in the readme that it was defaulted to "no access" but I am not sure where to change it. Do I do that in a php file and re-ftp it or do I do that from board admin.?. Can someone point me in the right direction?
popytart
04-02-2006, 08:00 PM
Ok, I have the itrader and the feedback rating showing on posts next to the person's screen name, however I don't know how to change the usergroup permissions to allow me to view the actual page when I click on the feedback rating. I know it said in the readme that it was defaulted to "no access" but I am not sure where to change it. Do I do that in a php file and re-ftp it or do I do that from board admin.?. Can someone point me in the right direction?
You change the user permissions in your VB AdminCP under... usergroups :)
When youre editing the permissions, you'll see something about iTrader at the bottom.
(PS: all of this is in the readme)
kellyandmike
04-02-2006, 09:31 PM
You change the user permissions in your VB AdminCP under... usergroups :) When you're editing the permissions, you'll see something about iTrader at the bottom. (PS: all of this is in the readme)
Thanks,
The readme file just said, "Edit all the usergroup permissions (all groups default to no access).
I see it now as I had to go to UserGroup and then I had to set up a usergroup called iTrader. Then I had to set the permission and add users to the group. When I did that and joined the group, it worked...
I GOT IT!!! I am so excited, you have NO idea. :banana:
kellyandmike
04-02-2006, 10:07 PM
edited because I found the solution
kellyandmike
04-02-2006, 10:11 PM
Is there a way to change a user's feedback score so if they have feedback established on another board, I can transfer that number to the iTrader board here on my forum?
If so,
where would I do that?
nate247
04-03-2006, 10:57 AM
Am I right in saying that this "wont" work with version 3.5.4???
I am new to vBulletin and have jumped straight in with version 3.5.4, badly want a trader rating mod asap.
Any help would be great.
djwins
04-03-2006, 12:11 PM
it works with 3.5.4
kellyandmike
04-03-2006, 02:23 PM
Ok, I am frustrated.
Last night, I got the iTrader to work and left fb for another user.
Today, I cannot view it and hit the "Submit feedback for x" but then I get the error that I do not have permission to access the page. I have not changed any of the usergroup permissions.
I just changed the new trader rating access to 0 thinking that it was a restriction.?. That didn't work.
nate247
04-03-2006, 02:55 PM
it works with 3.5.4
Cool.....
Will give it a try now!!!
nate247
04-03-2006, 03:44 PM
Sorry to be a complete neewb but I have followed the instructions to the point of "upload the upload file" (not sure exactly which forum directory / folder it needs to be uploaded too sorry, first mod I am afraid and it doesn't state where to put it).
I have loaded the XML file by the way, guess I just need to put the upload file in the right place.
Once this is done, its my understanding that I need to insert some code to get the trader ratings to show up.
Ideally I would like them under the Avater if possible. If anyone could point me in the right direction or could advise on a post where I can learn how to do it I would be extremely grateful.
Incase you need to look at the site to advise, its www.dontfearit.com.
Many thanks in advance :)
Nathan
kellyandmike
04-03-2006, 04:04 PM
Sorry to be a complete neewb but I have followed the instructions to the point of "upload the upload file" (not sure exactly which forum directory / folder it needs to be uploaded too sorry, first mod I am afraid and it doesn't state where to put it).
Did you create a database first? If so, put it in that folder on your ftp. EX: My database is called feedback so I put it in the feedback folder.
It is wise to read the whole 26 pages of this post, as some of my questions were answered in the pages...
I love this mod, but mine is giving me problems, so I don't want to give you any more advice...
nate247
04-03-2006, 04:35 PM
Ah right..... problems hey :(
I have to be honest somebody created the forum for me and now I somply have an ftp to upload things to the forum.
When I did my theme I had to place the files in specific locations, so I just wondered if thats what I had to do with this mod?
kellyandmike
04-03-2006, 04:43 PM
Ah right..... problems hey :(
I have to be honest somebody created the forum for me and now I somply have an ftp to upload things to the forum.
When I did my theme I had to place the files in specific locations, so I just wondered if thats what I had to do with this mod?
To be honest, my 14yo son created mine for me. That's why I have sort of been doing things here and there and wish I could do this myself, but am too new.
I got mine up and working by creating a usergroup, but my son said I shouldn't have had to do that.
I am frustrated and wish there was a forum just for itrader questions...
kellyandmike
04-04-2006, 12:27 AM
Okay
I can leave feedback again. Weird. I think there must have been a time limit setting (that I have not found yet) to change how many times users can post feedback. I haven't changed any settings since this afternoon and now it is working correctly. This is just too weird, but I am not complaining. It's working at the moment.
nate247
04-04-2006, 02:11 PM
Right, think I have done everything right so far as Itrader has been installed successfully.
I followed the instructions carefully and first uploaded the files into their corresponding folders. Then I installed the XML files, then changed the settings / permissions etc.
Now the only bit I am struggling to get my head round (being completely new to forum sortware & upgrades) is where to insert the code?
I know how to edit the templates in the Vbulletin admin page and this often brings up code but to be honest I am a fish out of water in terms of where to put it and I was wondering if anyone was able to take 2 mins to step by step direct me where the code needs to be pasted.
Please go easy on me, if I can do this I will be over the moon :) lol
All the best, Nathan.
XrayHead
04-04-2006, 08:36 PM
Ok do we still have this page avalable for the user's to look at and if not why?
https://vborg.vbsupport.ru/external/2006/04/1.png
Xray
kellyandmike
04-05-2006, 03:12 AM
Ok do we still have this page avalable for the user's to look at and if not why?
Xray
There is a hack out for that. Do a search for mainpage itrader.
nate247
04-05-2006, 10:45 AM
Ok, I have found where I need to insert the code (postbit) but I was wondering exactly where I should input it? The code for my template is below (sorry its so long) but I was wondering if anyone could point to where it needs to be inserted???
Many Thanks, Nathan.
<!-- post #$post[postid] -->
<if condition="$show['spacer']">
$spacer_open
<div id="edit$post[postid]" style="padding:0px 0px $stylevar[cellpadding]px 0px">
<if condition="!$post['islastshown']"><!-- this is not the last post shown on the page --></if>
</if>
<table class="tborder" id="post$post[postid]" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" $post[scrolltothis]>
<div class="normal" style="float:$stylevar[right]">
<if condition="$show['postcount']">#<a href="showpost.php?$session[sessionurl]p=$post[postid]&postcount=$post[postcount]" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]"><strong>$post[postcount]</strong></a> </if>
<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a> </if>
<if condition="$show['reportlink']"><a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a> </if>
$post[iplogged]
<if condition="$show['inlinemod']">
<input type="checkbox" name="plist[$postid]" id="plist_$postid" style="vertical-align:middle; padding:0px; margin:0px 0px 0px 5px" value="$post[checkbox_value]" onclick="inlineMod.toggle(this)" />
</if>
</div>
<div class="normal">
<!-- status icon and date -->
<a name="post$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_$post[statusicon].gif" alt="$post[statustitle]" border="0" /></a>
<if condition="!$show['announcement']">
$post[postdate]<if condition="!$show['detailedtime']">, $post[posttime]</if>
<else />
<phrase 1="$post[startdate]" 2="$post[enddate]">$vbphrase[x_until_y]</phrase>
</if>
$post[firstnewinsert]
<!-- / status icon and date -->
</div>
</td>
</tr>
<tr>
<td class="alt2" style="padding:0px">
<!-- user info -->
<table cellpadding="0" cellspacing="$stylevar[cellpadding]" border="0" width="100%">
<tr>
<if condition="$show['avatar']"><td class="alt2"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></td></if>
<td nowrap="nowrap">
<div id="postmenu_$post[postid]">
<if condition="$show['profile']">
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
$post[onlinestatus]
<script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
<else />
$post[musername]
</if>
</div>
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
<if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if>
</td>
<td width="100%"> </td>
<td valign="top" nowrap="nowrap">
<div class="smallfont">
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>
<if condition="$show['reputation']"><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower] </if><div>$post[reputationdisplay]</div></if>
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
</div>
</td>
</tr>
</table>
<!-- / user info -->
</td>
</tr>
<tr>
<td class="alt1" id="td_post_$post[postid]">
<!-- message, attachments, sig -->
<if condition="$show['messageicon'] OR $post['title']">
<!-- icon and title -->
<div class="smallfont">
<if condition="$show['messageicon']"><img class="inlineimg" src="$post[iconpath]" alt="$post[icontitle]" border="0" /></if>
<if condition="$post['title']"><strong>$post[title]</strong></if>
</div>
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<!-- / icon and title -->
</if>
<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->
<if condition="$show['attachments']">
<!-- attachments -->
<div style="padding:$stylevar[cellpadding]px">
<if condition="$show['thumbnailattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_thumbnails]</legend>
<div style="padding:$stylevar[formspacer]px">
$post[thumbnailattachments]
</div>
</fieldset>
</if>
<if condition="$show['imageattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_images]</legend>
<div style="padding:$stylevar[formspacer]px">
$post[imageattachments]
</div>
</fieldset>
</if>
<if condition="$show['imageattachmentlink']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_images]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[imageattachmentlinks]
</table>
</fieldset>
</if>
<if condition="$show['otherattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_files]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[otherattachments]
</table>
</fieldset>
</if>
<if condition="$show['moderatedattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attachments_pending_approval]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[moderatedattachments]
</table>
</fieldset>
</if>
</div>
<!-- / attachments -->
</if>
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
<if condition="$show['postedited']">
<!-- edit note -->
<div class="smallfont"> <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<em>
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
<if condition="$post['edit_reason']">$vbphrase[reason]: $post[edit_reason]</if>
</em>
</div>
<!-- / edit note -->
</if>
<div align="$stylevar[right]">
<!-- controls -->
<if condition="$post['editlink']">
<a href="$post[editlink]" name="vB::QuickEdit::$post[postid]"><img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0" /></a>
</if>
<if condition="$post['forwardlink']">
<a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
</if>
<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>
<if condition="$show['quickreply'] AND !$show['threadedmode']">
<a href="$post[replylink]" rel="nofollow" id="qr_$post[postid]" onclick="return false"><img src="$stylevar[imgdir_button]/quickreply.gif" alt="$vbphrase[quick_reply_to_this_message]" border="0" /></a>
</if>
<if condition="$show['moderated']">
<img src="$stylevar[imgdir_misc]/moderated.gif" alt="$vbphrase[moderated_post]" border="0" />
</if>
<!-- / controls -->
</div>
<!-- message, attachments, sig -->
</td>
</tr>
</table>
<!-- post $post[postid] popup menu -->
<div class="vbmenu_popup" id="postmenu_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$post[username]</td>
</tr>
<if condition="$show['profile']">
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$post[userid]">$vbphrase[view_public_profile]</a></td></tr>
</if>
<if condition="$show['pmlink']">
<tr><td class="vbmenu_option"><a href="private.php?$session[sessionurl]do=newpm&u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[send_private_message_to_x]</phrase></a></td></tr>
</if>
<if condition="$show['emaillink']">
<tr><td class="vbmenu_option"><a href="sendmessage.php?$session[sessionurl]do=mailmember&u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[send_email_to_x]</phrase></a></td></tr>
</if>
<if condition="$show['homepage']">
<tr><td class="vbmenu_option"><a href="$post[homepage]"><phrase 1="$post[username]">$vbphrase[visit_xs_homepage]</phrase></a></td></tr>
</if>
<if condition="$show['search']">
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=finduser&u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[find_all_posts_by_x]</phrase></a></td></tr>
</if>
<if condition="$post['userid'] AND $show['member']">
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=addlist&userlist=buddy&u=$post[userid]"><phrase 1="$post[username]">$vbphrase[add_x_to_buddy_list]</phrase></a></td></tr>
</if>
</table>
</div>
<!-- / post $post[postid] popup menu -->
<if condition="$show['spacer']">
</div>
$spacer_close
</if>
<!-- / post #$post[postid] -->
kellyandmike
04-05-2006, 12:58 PM
Ok, I have found where I need to insert the code (postbit) but I was wondering exactly where I should input it? The code for my template is below (sorry its so long) but I was wondering if anyone could point to where it needs to be inserted???
Many Thanks, Nathan.
Nathan,
There is a box on the bottom of the template code called "Search in Template". In the readme file, it says, find "x" code. Put that code in the search box and hit find. The program will highlight it when it finds it. Do whatever the readme file says as far as put after, replace etc.
HTH!
nate247
04-05-2006, 01:52 PM
Sorry to sound stupid but I really cant figure this out. (I really appreciate the help so far though) and I am really trying :rolleyes:
I am very new to the whole forum software and am struggling like hell to get the code side of things done.
Do I insert the code into the itrader_user & itrader_userbits, or do I put the code into the postbit / postbit_legacy (not that I know what either of those means).
I realise that the instructions are probably written for people that know what they are doing, where as I am not really up to speed with things yet.
The instructions (as far as I can see) do not ask for you to search for any code, it simply says put (and then displays the code) into either the postbit or postbit_legacy, then in the members area.
Thats where I am basically at. I have uploaded the files, installed the xml file, set the preferences etc (as per the instructions) then I get to the ammend template part and am coming unstuck here.
Sorry to be a real pest. Its just I have been promising the forum members a trading / seller section for a while now and just can't find the simple user guide that my current limited knowledge craves.
Thanks again for all the help so far..... Nathan.
kellyandmike
04-05-2006, 02:19 PM
Sorry to sound stupid but I really cant figure this out. (I really appreciate the help so far though) and I am really trying :rolleyes:
I am very new to the whole forum software and am struggling like hell to get the code side of things done.
Do I insert the code into the itrader_user & itrader_userbits, or do I put the code into the postbit / postbit_legacy (not that I know what either of those means).
The instructions (as far as I can see) do not ask for you to search for any code, it simply says put (and then displays the code) into either the postbit or postbit_legacy, then in the members area.
Nathan.
You are not a pest. LOL. I have been working on mine for almost 2 weeks and will probably be much better at this whole hack thing for doing it.
Can you copy and past the couple readme file steps so I can see for myself and then maybe I can interpret it?
I also wish there was a more detailed explanation of the steps. :confused:
Kelly
nate247
04-05-2006, 02:25 PM
Glad to hear im not a pest....... (Yet) :) lol.
Here is the cut and paste as requested, hope it helps. Again sorry for the length of message.
Template Instructions:
Two fields are added to the "user" table to facilitate rating usage pretty much anywhere you please within the forum. The two fields are:
itrader_total - iTrader Score (stored as an integer)
itrader_pcnt - Percent Positive Feedback (also stored as an integer)
Most likely you will want to add the score info to the postbit and/or postbit_legacy template(s), MEMBERINFO, and memberlist_resultsbit template. Actual placement and style is entirely up to you, however here's a sample to get you started. Note that the MEMBERINFO & memberlist_resultsbit templates won't need the conditional around the text since you can't view a "guest" in those cases.
<if condition="$post['userid']"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>
Additionally it would be wise to have some sort of link that is easily accessible to your members so they can view their own ratings. My suggestion would be to add some code in the navbar or usercp menu somewhere. If no userid is specified then the system defaults to the user's own iTrader page.
<a href="itrader.php?$session[sessionurl]">iTrader</a>
Use your imagination where you want these links to be visible, there's nothing set in stone where it should be display or how it should look. Some people wanted the percent score so I added in this version. You can get creative and use some stars or something based on their score or positive ranking.
If you only wanted the info to show up for specific usegroup, you can use the "is_member_of()" function conditional in your templates. Also if you only wanted it to show up for specific forum sections, you could use the "in_array()" function. Read more in the vBulletin documentation for nifty things with template conditionals.
Sorry to skimp on the documentation, next release will be much better, however most people should know what they are doing by now with templates and if you don't, spend the time to learn as you can greatly enhance your forum.
kellyandmike
04-05-2006, 02:29 PM
Oh I remember that one. The "sorry to skimp" lol...
Can you give me the link to your page so I can look at it? Is iTrader itself up and running?
nate247
04-05-2006, 02:57 PM
www.dontfearit.com.
I have iTrader installed but you wont see it anywhere as I am yet to put the code in obviously :( lol
kellyandmike
04-05-2006, 04:42 PM
Jason,
Is there a way to change the starting feedback rating by user? So say instead of starting with a 0 feedback, I want to change it to a different number. Can I do that and how?
Thanks,
nate247
04-06-2006, 01:36 PM
Well with the help of Kelly, I have managed to get iTrader working and am very very happy.
Code is in place and the iTrader ratings are above each post.
Once again a big thanks to Kelly.
kellyandmike
04-06-2006, 03:20 PM
Glad a newbie could be of help. It MUST have been the 2 weeks of learning. LOL
arossphoto
04-08-2006, 03:27 AM
I discovered iTrade after seeing on this site:
http://www.texasphotoforum.com (http://www.texasphotoforum.com/forum/showthread.php?t=17228)
If you click on the link above you will go to a thread that describes how iTrade works and you'll see that he has set up some links in the menu that drops down when you click on the username in the postbit.
I've just read about 20 pages of this thread and I haven't seen anybody mention how to do this. Any suggestions? I'm really new to vBulletin so I don't even know what this is called or what template to look for.
Cheers,
Andrew
CodeRed
04-08-2006, 03:32 PM
hey there andrew... i used this mod.
https://vborg.vbsupport.ru/showthread.php?t=108065&highlight=itrader+main
arossphoto
04-08-2006, 07:56 PM
hey there andrew... i used this mod.
https://vborg.vbsupport.ru/showthread.php?t=108065&highlight=itrader+main
Thanks for the reply. I installed that mod, but I'm still wondering how you added the links in the menu that drops down when you click on the username in the postbit as described on your site: "If you click their Screen Name to the left of their post, a new pop up will display. On the lower section of this popup you will see a new Trading Section. In this Trading Section there are two options, Leave Trade Feedback! and View Trade History."
The other thing I noticed on your site was the link to My iTrader Rating in the "Miscellaneous section while in your User Control Panel". I haven't found any instructions on how to do this either.
Cheers,
Andrew
kellyandmike
04-09-2006, 03:10 AM
Once you get itrader up, there is a add-on hack for the mainpage, search etc and that will walk you through getting it on the navbar etc
You can see my iTrader at www.couponchix.com/feedback
Hope that helps?
kellyandmike
04-11-2006, 03:07 AM
Anyone know if there is a hack so that we can leave mass feedback? I, as admin, would like to leave feedback for more than one user at a time. Check out my itrader page at www.couponchix.com/feedback
bada_bing
04-11-2006, 03:11 AM
I have been running itrader for some time now and have had some issues that I cant seem to resolve, What is happening is that if a member enters a rating and placed a negative rating instead of a positive rating I as the admin will attemp to edit the rating but when I click the SAVE I get the same DA@# message saying that the link to the thread is invalid which it is not as it the same thread as before I tried to edit the rating...
What is causing this and how can I fix it? Another issue that I dont like about itrader is that if within the same thread the same member is selling multiple items and there are more then one person buying those items the link can only be used once ,any suggestions?
CodeRed
04-11-2006, 11:24 AM
Thanks for the reply. I installed that mod, but I'm still wondering how you added the links in the menu that drops down when you click on the username in the postbit as described on your site: "If you click their Screen Name to the left of their post, a new pop up will display. On the lower section of this popup you will see a new Trading Section. In this Trading Section there are two options, Leave Trade Feedback! and View Trade History."
The other thing I noticed on your site was the link to My iTrader Rating in the "Miscellaneous section while in your User Control Panel". I haven't found any instructions on how to do this either.
Cheers,
Andrew
i dont recall where i found the info but i just took a look and this is how i got the code inserted etc...
AdminCP > Styles & Templates > Search In Templates
Search for "postbit_legacy" (i use post bit legacy on our forum, has member box etc on the left side of the post etc)
once it finds the "postbit_legacy", edit the file and follow the instructions below.
Find these lines
</table>
</div>
<!-- / post $post[postid] popup menu -->
then above that add this code
<!-- iTrader -->
<tr><td class="thead">Trading</a></td></tr>
<tr><td class="vbmenu_option"><a href="itrader_feedback.php?u=$post[userid]" rel="nofollow">Leave Trade Feedback!</a></td></tr>
<tr><td class="vbmenu_option"><a href="itrader.php?u=$post[userid]" rel="nofollow">View Trade History</a></td></tr>
<!-- /iTrader -->
End product should read like this:
<!-- iTrader -->
<tr><td class="thead">Trading</a></td></tr>
<tr><td class="vbmenu_option"><a href="itrader_feedback.php?u=$post[userid]" rel="nofollow">Leave Trade Feedback!</a></td></tr>
<tr><td class="vbmenu_option"><a href="itrader.php?u=$post[userid]" rel="nofollow">View Trade History</a></td></tr>
<!-- /iTrader -->
</table>
</div>
<!-- / post $post[postid] popup menu -->
that code has to be added to the "postbit_legacy" template in every forum style you make available to your members.
Once again... I forgot where i got it from so i can not give proper cred to the person that shared the info with me..
I hope this helps.
kellyandmike
04-11-2006, 07:55 PM
Is there a way to make the iTrader rating show in the memberlist? So all I have to do is click memberlist and I see the members and their ratings?
dethfire
04-11-2006, 08:40 PM
if (($foruminfo[forumid] == 138) AND ($userinfo[itrader_total] < 50))
{
print_no_permission();
}
any ideas why this doesn't work?
tspore
04-12-2006, 12:51 AM
How do I remove the reply option on the comments box?
I don't want people to be able to use this feature.
So then they can't get into fights over the transactions.
khurt
04-12-2006, 06:19 PM
Jason, I checked this on your forums and you have the same issue there. At a quick glance it might look like it is working properly, but it is definitely not.
If you select to view feedback from "From Buyers - From Sellers - From Trades - Left for Others". and then click on a page number to view, it will take you to the "All Feedback Received" section, no matter which of the above sections you have selected. It will take you to the proper page number, but it will be in "All Feedback Received" section, not the section that you actually selected.
For a quick example, check this guy's "Left for Others" feedback and then click on page #2
http://forums.extremeoverclocking.com/itrader.php?u=2416 (http://forums.extremeoverclocking.com/itrader.php?u=2416)
You will notice that you are now looking at page #2 of his "All Feedback Received" section.
I installed this to take a look at it and noticed the same issue with pagination.
It looks like an easy fix. If you notice in the URL, it should be something like this:
itrader.php?u=4&iv=3&page=2&pp=15
On the pages where the error occurs, the url looks like this:
itrader.php?u=4&v=3&page=2&pp=15
Notice the missing "i" in "iv=3".
To fix this, open itrader.php and on line 124 replace this:
$pagenav = construct_page_nav($viewuser['pagenumber'], $viewuser['perpage'], $countposts['total'], "itrader.php?" . $vbulletin->session->vars['sessionurl'] . "u=" . $userinfo['userid'] . ($viewuser['viewtype'] ? "&v=" . $viewuser['viewtype'] : ''),(!empty($viewuser['perpage']) ? "&pp=" . $viewuser['perpage'] : ""));
with this:
$pagenav = construct_page_nav($viewuser['pagenumber'], $viewuser['perpage'], $countposts['total'], "itrader.php?" . $vbulletin->session->vars['sessionurl'] . "u=" . $userinfo['userid'] . ($viewuser['viewtype'] ? "&iv=" . $viewuser['viewtype'] : ''),(!empty($viewuser['perpage']) ? "&pp=" . $viewuser['perpage'] : ""));
That fixed it for me. Hope it helps.
ddolliver
04-17-2006, 12:54 PM
How do I as admin, modify a rating left by a registered user? I want to specifically modify a neutral to a positive after a user clicked the wrong rating. Does any one have a good admin user description?
Thanks!
bulbasnore
04-17-2006, 04:54 PM
I have this installed in test. Feedback from my trading mods is focused on this issue with the eBay style rating totals:
Trader "Ditto" gets a positive rating from trader "Ash": Ditto - 1, 100%
Trader "Ditto" gets a positive rating from trader "Marina": Ditto - 2, 100%
Trader "Ditto" gets a negative rating from trader "Marina": Ditto - 1, 67%
Trader "Ditto" gets another negative rating from trader "Marina": Ditto - 1, 67%
So, it looks like the eBay style is counting the latest unique vote for ratings for the 'number of positive feedback' - we like that.
However, it looks like the eBay style is counting the latest unique negative and latest unique positive ratings for 'percentage of positive ratings'. We don't like that so much, we'd like to see Ditto's rating at 50% after the above ratings.
Assuming this isn't a bug, would Jason or someone give me a hint as to where in the code to change the calc to adjust the % to include only the latest vote from each unique trader?
Thanks EOC_Jason for sharing this great system. I know its a lot of work to code & package & support stuff for use off one's own site. You're a stud.
Odysseus
04-19-2006, 10:08 PM
I have a strange problem:
After moving from one server and domain to a new machine and domain, my iTrader system keeps saying, it is closed.
But it IS enabled in my vBulletin iTrader settings, and it even shows to me as an admin as closed.
I'm running out of ideas, why the system refuses to be re-activated... :surprised:
dakuda
04-20-2006, 12:01 AM
I have a strange problem:
After moving from one server and domain to a new machine and domain, my iTrader system keeps saying, it is closed.
But it IS enabled in my vBulletin iTrader settings, and it even shows to me as an admin as closed.
I'm running out of ideas, why the system refuses to be re-activated... :surprised:
I am having this very problem. Help?
djwins
04-25-2006, 06:59 AM
Thanks Khurt! It works!
raygunz
05-02-2006, 12:41 PM
I just have to say thank you Jason.
I've uploaded the files and it's working great.
I know I missed something because in the admincp when I go to iTrader Tools> Update iTrader Scores I receive a blank page.
Does anyone know what file I didn't upload, and where does it go?
Just when I thought I had it all.
Thanks.
raygunz
05-02-2006, 12:58 PM
Ok scratch that. I found it!
almukmin
05-05-2006, 04:27 AM
Installed and working flawlessly so far.
almukmin
05-05-2006, 02:45 PM
I have a suggestion, can you make the ratings in Postbit to appear only in the specified folders. Like only in the folders I selected for the system to work in.
That way it won't be confusing for people who have no intention to trade.
eoc_Jason
05-06-2006, 05:54 PM
Hey guys, sorry I haven't stopped by in a couple months. It's just been one thing after another. I had to canabalize my linux box that I do my development work on, then my notebook took a dive on me... *sigh*... anyhow...
Yes, I'm aware of some of the existing bugs in 2.0.1, and they will be fixed in 2.0.2. One of the things for some people if it says your itrader is closed and you are sure you have the correct files and/or did the upgrade properly, do the following steps:
1. Enable Debug Mode
2. Go to the AdminCP -> vB Options -> Untouchables
3. Edit "iTrader Version Number", The type is currently set to "numeric" when it should be set to "free".
4. Make sure the version number shows as 2.0.1
That should fix it. Be sure to disable debug mode after you make the change!
I've got my linux box back together and my notebook repaired, and if I can find the time this coming week I'll see where I'm at with the existing code and try to get 2.0.2 rolled out by the end of the week because some of the bugs (like above) are pretty well hidden and only happen if you are running certain versions of php/mysql. There's going to be a few additional usergroup permission things since I've gotten some requests from people that want finer granularity for admin style permissions & emails. Also the IP search will be in the admincp, and the emails will contain a hostname resolution so you don't have to wonder if that IP is a AOL proxy. ;) Also there's some fixes related to the time-limited stuff. Lots of little things, too much to list.
A big thanks goes out to gio~logist for making a couple add-on's, I'll add them to the info post.
Finally, for those of you asking basic "how do I" questions, I'm not even going to reply because after all these years, I'm kind of tired of answering the same things over and over. Learn the basics of template modification with vB, read their online documention that's why it's there.
The upgrade from 2.0.1 to 2.0.2 should be pretty seamless. I do not believe there will be any changes to the database, just file & template changes. However for those of you who have customized the templates, use of a program like WinMerge will make the upgrade a lot easier.
dailyofftopic
05-08-2006, 11:04 PM
How do I get the rating to show up as a link to the individuals overall ratings/comments on every post under the location/post count/etc info
ltaylor
05-12-2006, 02:10 PM
To add to your member list.
In memberlist_resultsbit
Find:
<a href="member.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[musername]</a>
After add:
(<strong><a href="itrader.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[itrader_total]</a></strong>)
To add to your navbar. (This will take members to their own iTrader Page.)
In navbar
Find:
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a></td></tr>
Add after:
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/itrader.php?$session[sessionurl]">My iTrader</a></td></tr>
To add to postbit
In postbit_legacy
Find:
<div>$vbphrase[posts]: $post[posts]</div>
After add:
<div>iTrader: <strong><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></strong> / $post[itrader_pcnt]% </div>
Thanks for your help here with the coding. I appreciate it.
ltaylor
05-12-2006, 03:12 PM
While uploading and configuring this hack I am receiving this script error below when trying to leave FEEDBACK for customer.
Script or Action Blocked
The requested URL /forums/itrader_feedback.php?u=2 contains a script or action that has has been deteremined unsafe. It has been disabled to prevent abuse.
Where and what should I do to allow this script to run without any probs?
ltaylor
05-12-2006, 04:46 PM
Script or Action Blocked
The requested URL /forums/itrader_feedback.php?u=2 contains a script or action that has has been deteremined unsafe. It has been disabled to prevent abuse.
Where and what should I do to allow this script to run without any probs?
Okay, I've determined what is causing this error. 444 Error.
My hosting company is running SecurePHPx on my server, in order to protect from spam via web/email based scripts. (Big AOL prob)
Anyways, any php file names with extentions such as contact.php, feedback, etc etc are considered potential problems. Therefore when I go to give feedback I get the 444 Error Page.
In order to make this hack work, can I simply change the name of this file? To something like message.php or the like? If so, what name would you suggest and or what else would need to be changed?
v8news
05-13-2006, 05:53 AM
Does anyone know the exact directory you have to upload the "uploads" folder too?
Bieddos
05-13-2006, 09:52 PM
Very good hack!!!!! :):banana:
Contact Staff On Suspicious Activity?
Is possible add some supermod to receive an email for suspicious activity of feedback?
Odysseus
05-14-2006, 06:42 AM
1. Enable Debug Mode
2. Go to the AdminCP -> vB Options -> Untouchables
3. Edit "iTrader Version Number", The type is currently set to "numeric" when it should be set to "free".
4. Make sure the version number shows as 2.0.1
Sadly, that doensn't help. :( Event when I try to edit the value, it will be reset to "2" instead of "2.0.1" immediatley after clicking the save button.
When I try to chande the value via phpMyAdmin, it will be 2.0.1, but iTrader still shows up as clodes. When I re-save the 2.0.1 value, it will jump back to "2" again.
Any further ideas? :confused:
ImportPassion
05-15-2006, 04:16 AM
Sadly, that doensn't help. :( Event when I try to edit the value, it will be reset to "2" instead of "2.0.1" immediatley after clicking the save button.
When I try to chande the value via phpMyAdmin, it will be 2.0.1, but iTrader still shows up as clodes. When I re-save the 2.0.1 value, it will jump back to "2" again.
Any further ideas? :confused:
ya, not working here either. I tried all I could
ImportPassion
05-17-2006, 04:20 AM
wow, no one else having this problem? wtf? I didn't change a thing. I'll check the files and edit the code to remove that check i guess for now.
ImportPassion
05-17-2006, 04:26 AM
looks like I am having the same prob with vbPlaza :(
Odysseus
05-17-2006, 07:32 AM
If the author of vB Plaza knows a way to fix it, please let us know, too. ;)
ImportPassion
05-18-2006, 04:21 PM
If the author of vB Plaza knows a way to fix it, please let us know, too. ;)
open itrader_global.php and on line 25 remove this
OR $vbulletin->options['itrader_version'] != THIS_SCRIPT_VERSION
coachjohns
05-20-2006, 08:37 PM
I have it installed but when you click on the iTrader in the navbar it just shows you your score and not everyone elses. I want it to show the stats for all members. How can I do it? Here is my link www.scusachat.com Click on it and see what i did wrong....Thanks
midnightsoaper
05-22-2006, 08:04 AM
Please forgive me if I've missed this in this thread....its REALLY long :)
I want all registered members to be able to read the detailed comments and responses/updates. Is there a setting I missed to allow this? I can't find anything on it anywhere...
Thanks!
mrderanged
05-24-2006, 02:43 AM
Please forgive me if I've missed this in this thread....its REALLY long :)
I want all registered members to be able to read the detailed comments and responses/updates. Is there a setting I missed to allow this? I can't find anything on it anywhere...
Thanks!
As far as I know, there is not a setting to allow certain usergroups to just read the detailed comments. I was actually just about to post if anyone knows a way to do this as the "short comments" just can't get enough details in. Does anyone know what would need to be edited to make it usergroup selectable for just "reading" the detailed comments of trades they weren't involved in? Not having that functionality is the only thing keeping me from going live with this hack...
Hope that makes sense
Scott
Odysseus
05-24-2006, 08:00 AM
@ 7thgenCivic.Com: Thank you so much! This did it. :)
Lpspider
05-26-2006, 07:22 PM
I uploaded this, but nothing appears in the usergroup permissions to change.?
ramone_johnny
05-27-2006, 01:34 AM
Sorry guys, I have no idea where to place the following peice of code within my templates. At present, I dont have the iTrader showing in the postbit, even though I have put the code in both postbit and postbit_legacy templates? It is showing in the default skin just not my custom skin?
Any ideas?
RJ
ramone_johnny
05-27-2006, 01:41 AM
Nevermind - got it! :D
RJ
arindra
05-27-2006, 09:27 PM
super stuff .. always wanted to install this ever since i saw it on DP :D
clicked INSTALL for you :wave:
Keyser S?ze
06-03-2006, 04:13 AM
how come in the release history there is no note for the new 2.0.1a?
vAsia
06-06-2006, 03:28 PM
Does this mod still work for vB 3.5.4?
Areku
06-06-2006, 03:36 PM
Yes, why not? ;)
nelto
06-08-2006, 05:05 PM
Im not in the mood to read 30 pages.
So if anyone can help me please do.
Im trying to set this up but Im stuck on something.
In the instructions of the templateinfo it says we need to make some modifications. but... where? and How?
msimplay
06-08-2006, 06:12 PM
Im not in the mood to read 30 pages.
So if anyone can help me please do.
Im trying to set this up but Im stuck on something.
In the instructions of the templateinfo it says we need to make some modifications. but... where? and How?
use the search first coz people tend to dislike repeating themselves u can search within this thread
nelto
06-08-2006, 08:08 PM
Yes I know, I didnt joined yesterday.
Unfortunatly ther isnt any awnser to my question.
Never the less I got it working a few minutes ago.
arindra
06-12-2006, 10:09 AM
works even in 3.6 beta 1
denby
07-24-2006, 11:21 AM
I've read the whole thread and I can't seem to find a solution to my problem.
I've installed the product and in the ACP I can see the new iTrader Settings option at the bottom of the vBulletin Options list, iTrader Tools appears as an option in the ACP but I can see nothing regarding the setting of usergroup permissions for iTrader.
I assume that if I choose a usergroup and click Edit to access the list of settings for a usergroup, I should see right down the bottom a group of settings regarding iTrader (after the group of settings called "Usergroup Options, which includes "This Usergroup is a 'Banned' Group"). But there is nothing new appearing here. One poster in this thread (kellyandmike) spoke of creating a new usergroup. That doesn't seem right to me.
I have the following installed products:
vBulletin 3.5.4
iTrader 2.0.1 Trader Feedback System
Separate Sticky and Normal Threads 1.0.3 Separate Sticky and Normal Threads
SigmaChat 1.0.0 SigmaChat integration, remote authentication, and who's chatting system.
vBadvanced CMPS 2.1.0 vBadvanced Content Management & Portal System
Could one of these products be in conflict with iTrader? Can someone help me out here please?
Birdlepop
07-25-2006, 02:35 PM
Hi all,
I am running a custom skin and am struggling to get the iTrader showing in the postbit. I have followed all of the instructions and double checked that I have inserted the code in the correct part of the code and under the correct skin.
Can anybody suggest anything?
Thanks.
Birdlepop
07-26-2006, 07:42 AM
Ok, I fixed it.
In options, there is an option to view forum as traditional 2-column vertical design.
I selected this and the itrader rating shows!
Birdlepop
07-26-2006, 07:47 AM
I have had a search thorugh the thread and am having problems with the Strict URL aspect of the mod.
I am using the standard daynamic URL's and so inevitably, every thread has a different URL.
Which URL do I add to the 'Strict URL Checking' option to correspond with all of the different thread URLs?
Can anybody give me an example of how to get this to work?
Thanks in adavnce.
RedWingFan
07-29-2006, 08:24 PM
I had it working great on our test forum, which was 3.5.4. But I completely uninstalled it, and reinstalled it under 3.6.0 RC3. (I wanted to see how the install went under the newer version.) Has anyone else had any luck getting it to work under this version? I notice someone else got it working under the beta 1 version. I'm sure not much has changed (possibly a hook location, or template changes)...?
shawno
08-01-2006, 06:53 AM
I've read the whole thread and I can't seem to find a solution to my problem.
I've installed the product and in the ACP I can see the new iTrader Settings option at the bottom of the vBulletin Options list, iTrader Tools appears as an option in the ACP but I can see nothing regarding the setting of usergroup permissions for iTrader.
I assume that if I choose a usergroup and click Edit to access the list of settings for a usergroup, I should see right down the bottom a group of settings regarding iTrader
Not sure if this helps Denby, but when you are looking in the ACP for a user group - iTrader settings don't show at the very bottom - they show just below Public Group settings which is 3rd from the top (well on our script anyhow ;) ).
S
shawno
08-01-2006, 06:59 AM
Does any one know how I could restrict certain usergroups from displaying the rating on their postbits? For usergroups like Admin and Supermoderators we do not want users to be able to add ratings as they are immune to this type of activity.
Any ideas?
Thanks in advance
S
CypherSTL
08-01-2006, 07:37 AM
Any posabilities of this being ported to 3.6(RC3 or gold)?
denby
08-01-2006, 09:44 AM
Thanks shawno but I'm still quite confused. :confused:
I don't understand where I should be looking for the usergroup settings. I thought that I should go to, say:
ACP -> Usergroups -> Usergroup Manager -> Administrators (Edit Usergroup, click Go)
and then find a group of settings for iTrader on that page (presumably near the bottom). After making the settings for that usergroup I would then proceed to repeat the process for each of my other usergroups.
Am I looking in the wrong place?
shawno
08-01-2006, 05:23 PM
Denby,
You are looking in the right place - don't look at the bottom of the page - look towards the top of the page (in the exact location you specified above for each UserGroup). And yes you need to repeat the process for each user group.
S
denby
08-02-2006, 02:34 AM
... well I completely removed it and reinstalled it and there it is. :D
Thanks shawno for your reassurance that I was thinking straight. Sometimes the only solution is a reinstall. I'll start work on the templates now.
papa_face
08-02-2006, 05:34 PM
Does this allow people to bid on an item? If so is it possible to make the bids go down rather than get higher?
If not can someone recommend me to a mod that can bid.
Regards
Has anyone tested this on 3.6 Gold?
This may or may not have been brought up but I would rather not look through all 31 pages looking for it.
In the postbit it currently shows the unique feedback number, is there a way so that it shows the total feedback?
King Justice
08-03-2006, 11:10 PM
Please PM me if this can work with vB 3.6 Gold, thanks.
This may or may not have been brought up but I would rather not look through all 31 pages looking for it.
In the postbit it currently shows the unique feedback number, is there a way so that it shows the total feedback?
Try this:
<if condition="$post['userid'] AND $post[itrader_total]"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>
papa_face
08-03-2006, 11:33 PM
Does this allow people to bid on an item? If so is it possible to make the bids go down rather than get higher?
If not can someone recommend me to a mod that can bid.
Regards
briansol
08-04-2006, 12:27 AM
i just ran into this:
Database error in vBulletin 3.5.4:
Invalid SQL:
UPDATE user
SET itrader_buy = 'nothing at the moment',
itrader_sell = 'everything has it's price'
WHERE userid = 43;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's price'
WHERE userid = 43' at line 3
Error Number : 1064
Date : Thursday, August 3rd 2006 @ 07:03:15 PM
Script : /itrader_main.php
Referrer : /itrader_main.php?do=options
IP Address :
Username :
Classname : vB_Database
it's is obviously the problem... its not getting addslashes() or whatever to it.
any one else see this, or is there already a bug fix out there?
briansol
08-04-2006, 12:28 AM
Does this allow people to bid on an item? If so is it possible to make the bids go down rather than get higher?
If not can someone recommend me to a mod that can bid.
Regards
this is a feedback mod, not an auction system. so, no.
papa_face
08-04-2006, 01:13 AM
this is a feedback mod, not an auction system. so, no.
Do you know of an auction mod for 3.5.4?
ryansmith
08-04-2006, 01:36 PM
Does this work with vB 3.6 or is it going to be updated for 3.6?
Try this:
<if condition="$post['userid'] AND $post[itrader_total]"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>
Thanks but it didn't change anything...any other ideas?
butty
08-07-2006, 04:24 AM
hi can you tell me if this works with vb 3.6.0 please
Thanks but it didn't change anything...any other ideas?
Are you putting it into the proper postbit template? What are you seeing after you put it in? It should show the # of feedback if the user 'does' have feedback, if they don't it won't show a Itrader linker.
So if a user has 3 feedback you would see: iTrader: (3)
If they have no feedback you would see nothing.
offline
08-09-2006, 07:14 PM
Is there anyway that I could add a link in the post bit of a message called leave feedback and it would automatically go to leaving them feedback and fill the URL in for the individual leaving feedback?
Thanks!!
RedWingFan
08-09-2006, 10:03 PM
Uninstalled--does not work with 3.6.0. :(
Please PM me if this can work with vB 3.6 Gold, thanks.
Has anyone tested this on 3.6 Gold?
Does this work with vB 3.6 or is it going to be updated for 3.6?
hi can you tell me if this works with vb 3.6.0 please
Uninstalled--does not work with 3.6.0. :(
Works fine for me on 3.6 Gold.
Are you putting it into the proper postbit template? What are you seeing after you put it in? It should show the # of feedback if the user 'does' have feedback, if they don't it won't show a Itrader linker.
So if a user has 3 feedback you would see: iTrader: (3)
If they have no feedback you would see nothing.
It still shows the amount of "unique feedback" rather than the amount of total feedback
For example, if you look at an itrader profile it shows
Feedback Score:
Positive Feedback:
100.0%
Members who left positive:
Members who left negative:
Total positive feedback:
I'd like the number in the postbit to be the "Total Positive Feedback" rather than the "Feedback Score"
RedWingFan
08-11-2006, 11:56 AM
Works fine for me on 3.6 Gold.
No such luck here. I even installed it new on a second 3.6 Gold where it hadn't been installed previously. No go. I had it installed on 3.5.4 on another forum and it worked fine. I'm thinking a hook location changed, or something...?
It seems the developer of this plug-in has bailed, not logged in since February. Is there another feedback system like this here at vB? We need something that works.
Capt. GannA
08-12-2006, 09:04 PM
No such luck here.
Ditto.
Spinball
08-13-2006, 08:15 AM
Since Jason has vanished and is not responding to requests for help here or by PM, is there another coder ready to take on this hack?
No such luck here. I even installed it new on a second 3.6 Gold where it hadn't been installed previously. No go. I had it installed on 3.5.4 on another forum and it worked fine. I'm thinking a hook location changed, or something...?
It seems the developer of this plug-in has bailed, not logged in since February. Is there another feedback system like this here at vB? We need something that works.
Redwing, what errors are you seeing with 3.6 and iTrader? I am about to upgrade to 3.6 and currenty use this add-on.
djwins
08-13-2006, 11:44 PM
Any others report success after upgrading to 3.6?
Chicago_VLNU_4s
08-14-2006, 03:42 AM
so how can user's write what they're selling and how can user's rate them. i put the "iTrader" link in User CP and i'm stumped on how this works. Do I make a forum for "Buy/Sell/Trade" and user's go in there for this? can someone break this down for me.. thanks
****
nvm, i see you have to click on there ITrader profile to do so
Spinball
08-14-2006, 07:02 AM
so how can user's write what they're selling and how can user's rate them. i put the "iTrader" link in User CP and i'm stumped on how this works. Do I make a forum for "Buy/Sell/Trade" and user's go in there for this? can someone break this down for me.. thanks
****
nvm, i see you have to click on there ITrader profile to do so
You have a forum (or forums) where people do the trading. iTrader simply allows them to add feedback about the trades.
When you rate someone after a trade, you select whether the experience was good, neutral or bad and you leave some comments.
The total score is calculated and appears under their name within posts and their user profile. When you view peoples' iTrader information you see with whome they have traded, the rating and the comments left by those people.
That's it in a nutshell.
oninuva
08-15-2006, 02:08 AM
Does thsi work on vb 3.6 Gold
Does thsi work on vb 3.6 Gold
same thing I need to know. I have seen alot of v6 forums using it, so im guessing so.
For the people who have tried it with 3.6 and saw errors, what problems did you see? It seems it would be easy to fix. I am about to upgrade within a couple days I will keep you guys updated.
Darwinist
08-15-2006, 09:45 PM
I'm using it on vB3.6 with no problems at all.
juicemanfta
08-16-2006, 07:18 AM
Thanks for the Hack?.Installed?I have a problem with the negative not aligned properly. Can someone please help me? I was looking at the the following code in Product.xml but it looks fine?
<tr style="color:#FF0000">
<td align="left"><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
<td align="center"><if condition="$userinfo[tradeneg30]">$userinfo[tradeneg30]<else />0</if></td>
<td align="center"><if condition="$userinfo[tradeneg180]">$userinfo[tradeneg180]<else />0</if></td>
<td align="center"><if condition="$userinfo[tradeneg365]">$userinfo[tradeneg365]<else />0</if></td>
</tr>
https://vborg.vbsupport.ru/
Thanks for the Hack?.Installed?I have a problem with the negative not aligned properly. Can someone please help me? I was looking at the the following code in Product.xml but it looks fine?
<tr style="color:#FF0000">
<td align="left"><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
<td align="center"><if condition="$userinfo[tradeneg30]">$userinfo[tradeneg30]<else />0</if></td>
<td align="center"><if condition="$userinfo[tradeneg180]">$userinfo[tradeneg180]<else />0</if></td>
<td align="center"><if condition="$userinfo[tradeneg365]">$userinfo[tradeneg365]<else />0</if></td>
</tr>
http://www.buyselltrini.com/forums/imagehosting/944e2d4d2d2bcf.gif
Change:
<td align="left"><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
To:
<td align="left" nowrap><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
I am just guessing, this should work.
onliner7
08-17-2006, 06:47 PM
i'm prolly missing something here. although i installed it and can view my feedback where do i go to actually submit a feedback for another user?
Shazz
08-17-2006, 07:43 PM
i'm prolly missing something here. although i installed it and can view my feedback where do i go to actually submit a feedback for another user?
Click on there item, then leave feedback, make sure permissions are set.
juicemanfta
08-17-2006, 10:13 PM
Change:
<td align="left"><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
To:
<td align="left" nowrap><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
I am just guessing, this should work.
thanks telc this worked...
eoc_Jason
08-21-2006, 03:51 PM
Hi guys, sorry I haven't been around....
I just upgraded my forum to vB 3.6.0 Saturday, and iTrader works fine for me. If you are experiencing any issues, you will need to post what the specific problems are. Saying "It's not working" doesn't help me track down anything.
I will be releasing a long overdue update that addresses some minor bugs, and also some new rating features. Also some logic fixes for easier navigation & rating.
If there are any true bugs for vb 3.6.0 you guys need to let me know asap. Like I said, I have it running just fine on my forum.
Keyser S?ze
08-22-2006, 01:59 AM
this is a great hack, works fine for me in 3.6, my only problem with it is that the comments are required
i think that should be optional, and allowed to be turned off completely in admincp
iatbm
08-22-2006, 02:18 AM
comments off in iTrader ? - It doesn't make any sense !
onliner7
08-23-2006, 11:38 AM
sorry if this has been said before..
i found a bug... if you go www.site.com/forum/feedback.php and leave feedback then this feedback is left by you for yourself
0ptima
08-24-2006, 01:32 AM
Hi guys, sorry I haven't been around....
I just upgraded my forum to vB 3.6.0 Saturday, and iTrader works fine for me. If you are experiencing any issues, you will need to post what the specific problems are. Saying "It's not working" doesn't help me track down anything.
I will be releasing a long overdue update that addresses some minor bugs, and also some new rating features. Also some logic fixes for easier navigation & rating.
If there are any true bugs for vb 3.6.0 you guys need to let me know asap. Like I said, I have it running just fine on my forum.
Please include a mian trader ratings page like you did in the 3.0 version
Ncturnal
08-24-2006, 04:41 AM
Please include a mian trader ratings page like you did in the 3.0 version
iTrader Extension [Mainpage, Search, AND MORE]
https://vborg.vbsupport.ru/showthread.php?t=108065
Show Itrader Stats In Profile
https://vborg.vbsupport.ru/showthread.php?t=107828
Spinball
08-24-2006, 06:39 AM
Woo Hoo! Welcome back, Jason. Excellent news about the update.
I would like to suggest that the suspicious activity reports can be sent to
1) moderators of specific forums or to
2) specific users
Also I would like negative trader rating reports to be sent to
1) the moderators of the forum containing the trading thread in question or to
2) moderators of specific forums or to
3) specific users
Thanks.
ctsolutions
08-27-2006, 06:53 PM
@eoc_Jason
Hi, I like your hack very much (sure that I am not the only one) and I need a little "extension" if you are not very bussy.
1. I'd like to add the .../forums/itrader_feedback.php?u=1 link near the "Send-PM" button. I mean this will be a short way to send a feedback to the saller.
like:
<if condition="$show['pmlink']"><a href="itrader_feedback.php?$session[sessionurl]ir=newitfb&u=$post[userid]" target="_blank" rel="nofollow"><img src="$stylevar[imgdir_button]/senditfb.gif" alt="senditfb.gif" title="<phrase 1="$post[username]">$vbphrase[send_itrade_feedback_to_x]</phrase>" border="0" /></a></if></if>
2. how can I prevent an user who already send a feedback for an article in thread_nr_x (exemple: showthread.php?p=21#post21) to be able to send a new one or more feedbacks. That ist to prevent an saller/buyer feedback score couter pushing.
Ex.: "Sorry, You Have Already Send A Feedback To This Thread"
I think this can be made like the "ThankYou" hack. If you click once per thread a ThankYou button by the next visit of this thread the button will be not displayed anymore.
I'm not a coder, but I try to learn from you coders.
Thanks,
Mike
0ptima
08-27-2006, 09:46 PM
iTrader Extension [Mainpage, Search, AND MORE]
https://vborg.vbsupport.ru/showthread.php?t=108065
Show Itrader Stats In Profile
https://vborg.vbsupport.ru/showthread.php?t=107828
This should be part of the hack, like it was in the 3.0 series.
eoc_Jason
08-28-2006, 07:33 PM
I would like to suggest that the suspicious activity reports can be sent to
1) moderators of specific forums or to
2) specific users
Also I would like negative trader rating reports to be sent to
1) the moderators of the forum containing the trading thread in question or to
2) moderators of specific forums or to
3) specific users
Yeah, I was going to add/modify permissions and emails some to make it more tailored. Doing moderators of the forum is easy, also if the forum permission is set to send to all admins & mods that too can be checked and emails sent appropriately. However adding additional and/or users I don't think would work well on a per-forum basis.
I was also going to add some exclusions for the IP checks since AOL and other proxies tend to muck things up.
Ncturnal
08-28-2006, 11:38 PM
This should be part of the hack, like it was in the 3.0 series.
<rant>
He ported it to 3.5+ and has always offered it free of charge. Please don't complain. Installing the other two seperately is not a huge deal. Just be happy people are offering their talent for free.
</rant>
0ptima
08-29-2006, 11:59 PM
<rant>
He ported it to 3.5+ and has always offered it free of charge. Please don't complain. Installing the other two seperately is not a huge deal. Just be happy people are offering their talent for free.
</rant>
Id pay for a premium version of this hack if it had those options.
Adramelech
09-03-2006, 08:30 AM
@eoc_Jason
Any idea of when the new version of this mod will be out? I have vBulletin 3.6 and want to install this mod with the two other mods below. But I want to make sure your new mod will work with the below.
iTrader Extension [Mainpage, Search, AND MORE]
https://vborg.vbsupport.ru/showthread.php?t=108065
Show Itrader Stats In Profile
https://vborg.vbsupport.ru/showthread.php?t=107828
Ncturnal
09-03-2006, 12:36 PM
@eoc_Jason
Any idea of when the new version of this mod will be out? I have vBulletin 3.6 and want to install this mod with the two other mods below. But I want to make sure your new mod will work with the below.
iTrader Extension [Mainpage, Search, AND MORE]
https://vborg.vbsupport.ru/showthread.php?t=108065
Show Itrader Stats In Profile
https://vborg.vbsupport.ru/showthread.php?t=107828
I'm running all of those on 3.6.0 without any issues.
eoc_Jason
09-05-2006, 03:19 PM
I'm working on the new stuff when I get free time here and there. Hopefully within a week or two.
I'm *still* waiting to hear back from people that were all up in arms saying they could not get this to run on vB 3.6.0.... If I don't hear any detailed errors then I will dismiss them as PEBKAC. (Problem Exists Between Keyboard And Chair) ;)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.