Quote:
Originally Posted by 3dsoft
I like it now with the "eStore Main" Link. Now it is perfect! Thanks
Wouln't it make sense to have another field option "Thief Reason" under "Thief"?
|
LoL, I thought the reason for Stealing is kind of obvious... I could see some of the reasons for Thief... "You are an A$$hole" lol... Is this really a necessary feature?
Quote:
Originally Posted by Gwynar
As far as I know, vbCrons are triggered by someone visiting the forums (and for those that have access to crontabs, they could easily convert them over).
As for which is better: I can certainly see that there are pro's and con's to both sides. By having the expire check done on each user's visit would obviously require fewer queries over having to do an expire check for every user once every 24-hours.
Perhaps you could create a queue of userids (stored in a table) that the cron would run off? When a user logs in, the system checks to see if there is an item that can expire that day, if there is, add that user's id to a queue and then run a cron off that list.
Or scrap the cron idea entirely and do what you currently do, but against a table instead of a field in the user table. I just think that having an additional table for expirations would make the expire system much more robust. And while reverting a username would require numerous queries, reverting things like user titles probably wouldn't (I don't think anyway).
|
U have definitely given me some things to think about, only time will tell about this one.
Quote:
Originally Posted by LadyJo
one more thing.. i know I said it before and maybe it got lost or you are totally uninterested.. lord knows your busy with everyones issues.. ;) but maybe you could add in one of your upgrades the ability to send a gift to a user from the drop down in the post bit, the drop down from the username in the posts. MUCH appreciated if you could :)
|
I'll edit action.gift.php so it can accept a username to fill in the field automatically. Then you would just have to add a link to something like estore.php?do=action&itemid=27&username=$p ost[username]
I'll incorporate that into v1.2.1
Quote:
Originally Posted by RDX1
Even after clearing user history and rebuilding datastore, in the users profile it shows something different.
Item ID Item Name Item Cost
12 Sticky Thread 10.00
48 Can Modify Profile 8.32
After clearing user history, none of these options are buyable.
|
What version are you using and did u upload all files before importing the product?
Quote:
Originally Posted by Exitilus
I've found something else :) in the eStore Options > Manage settings > Administrator Usergroups & Protected From Options Usergroups
If you try entering multiple Usergroups using the coma like it says. It saves the first usergroup but doesn't save the 2nd usergroup ..
Also ... for the life of me I remember seeing a area to setup Thief ... but I can't find it anymore. I know if you go to Manage Options you can click thief. And at the bottom is the setup for those options .. but I swear I saw a place to use those ...
|
Ah, it was a number field, it has to be a 'free' field. It will be fixed in v1.2.1
Quote:
Originally Posted by Exitilus
Also for the forum rules part ... it's not showing the points. Just shows
Points Per Thread View:
Points Per Thread:
Points Per Reply:
|
Ah, wrong hook used. It will be fixed in v1.2.1 (It works from forumdisplay.php, but not showthread.php or newreply.php...etc..)
For the next version I have moved the hook to "forumrules" and now it will work everywhere. (The template edit will remain the same.)
Quote:
Originally Posted by Wachtmeister
Wouldn't it be a good idea to have a box at the lottery "Buy how many tickets?" ?
It's difficuilt to buy 5 tickets for the same lottery right now, because you can only purchase one ticket each minute (fllod control) and even if you disable flood control you have to go back and do the purchase 5 times. Just an idea...
|
I guess I can figure out an easy way to do this in the next version too.
Quote:
Originally Posted by Zowners
REQUESTS
On top of the Bank & donation processing fee requests and the theftee %, I would like to add a few more.
1. Radio Yes or No option to turn bank ON AND OFF. Some forums don't like banks, and this helps take care of that. bank_enabled is simply a boolean, but make sure you add all bank points to on-hand before removing bank.
2. Radio Yes or No option to NOT SHOW BANK IN POSTBIT & MEMBER PROFILE. Another simple boolean, show_bank, to stop people from seeing Bank points in the Postbit and Member Profile. Admins should be able to see bank points.
|
1) U can do that already by going to Manage Options -> Bank -> change the "Active" setting to "No".
2) You can do this yourself by eding the postbit.. just like so...
Code:
<if condition="is_member_of($bbuserinfo['usergroupid'], 6)">
$vbphrase[ebux_bank]: $post[bank]<br />
$vbphrase[ebux_total_points]: $post[totalpoints]<br />
</if>
Quote:
Originally Posted by Drewish
I'm not able to save more than 1 usergroup in both "usergroups who are admins" and "usergroups protected." Is there a fix for this?
|
Will be fixed in the next release v1.2.1
Quote:
Originally Posted by mrahul
is it possible to allocate differnt no. of points for differnt forums ?
|
Yes, goto Admin CP -> Forums & Moderators -> Forum Manager -> Edit Forum for the forum u want to modify, then at the bottom are the eBS settings.
Quote:
Originally Posted by bchawla
attempting to disable a lottery yields this errpr
Code:
Database error in vBulletin 3.5.4:
Invalid SQL:
UPDATE estorelottery
SET
ticketcost = '1000',
jackpot = '100000.00000',
winningtax = '2.50000',
ticketssold = '0',
active = '0',
WHERE lotteryid = '1';
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 'WHERE lotteryid = '1'' at line 8
Error Number : 1064
Date : Friday, February 24th 2006 @ 10:53:18 AM
Script : http:///elottery.php
Referrer : http://tadmincp/elottery.php?do=lotterylist
|
This was fixed in v1.2.0, make sure u have uploaded all of the files in the UPLOAD folder.
Quote:
Originally Posted by Miss Tiina
Hello Im sorry if someone already asked this but im wondering if there is a way to make the gifts in the postbit return a line.. say after 10 gifts? One of my members already has quite a few and they are just continuing on the same line across the page causing it to scroll over.
Oh also about the hover over gifts and show sender name and message, hope you can look into that soon. Thanks so much.
|
I've been wanting to redo the gifts system completely actually. I'm hoping the next version of the gifts will not only show the gift, but if you hover over it, it will show who the gift is from and their message too... as well as showing the gifts inside a dropdown box.
Quote:
Originally Posted by bitg
Actually, to change the name of the points, you have to change to following phrases.
ebux_points
ebux_total_points
Would this not be better to just be an option in the ACP as to what you want to call your points?
|
I guess I should take the plunge and add this setting... lol That will mean a lot of phrases have to be updated as well...
Quote:
Originally Posted by jilly
I have displayed decimal place set to 2 in the estore and ebux, yet 5 places after the decimal point are showing up..
|
What URL r u viewing so I can double check the plugin code?
Quote:
Originally Posted by Wachtmeister
Hi, maybe it's possible to change this:
When viewing a forum i get
Points Per Thread View: 1
Points Per Thread: 5
Points Per Reply: 3
When viewing a topic i get
Points Per Thread View:
Points Per Thread:
Points Per Reply:
Maybe it is possible to check if yuo are in a topic and display nothing instead of Points per..... without a number.
|
Bug, will be fixed in v1.2.1
Quote:
Originally Posted by bashy
Hi
In my store the lottery tickets are free but in admincp
they are set to 1000 (weekly) and 500 (daily)
Dont understand why there showing as free?
|
The main one shows free as it doesnt know the prices per lottery until u click on Buy Lottery Ticket, then choose which Lottery u want to buy a ticket for, then it will list the proper prices, etc..
Quote:
Originally Posted by bchawla
Is there a capability to offer real world products in addition to the virtual forum products?
i.e. offer a user a free CD for acertain number of "points"??
|
I think there was one a while back that would send a PM upon someone making an order, finding it in this thread is the fun part :)
Quote:
Originally Posted by NoRespect
Glowing usernames and colored usernames no longer seem to work.
I have not updated to 1.20 yet, however.
|
Make sure u have updated your postbit/postbit_legacy and MEMBERINFO templates as the code to display the GLOW has changed.
-CMX