3.1.x Extensions Database 3.1 / 3.2Ultimate Points Extension

<span class="qte-attr qte_31_32-qte">3.1.x &amp; 3.2.x</span>
Locked Previous topicNext topic
User avatar

Topic Author
dmzx Online
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Ultimate Points Extension

Post by dmzx »

v1rtu0so wrote: 01 Jun 2016, 23:44 could you help me add the ability to [Donate] / [Modify] directly from this page?
What page exactly?
v1rtu0so wrote: 01 Jun 2016, 23:44 Also, I am looking at the ".../ultimatepoints/styles/mystyle/template/points/points_list.html" page and was wondering if you could help me display information from each users custom fields {postrow.custom_fields.PROFILE_FIELD_NAME} & {postrow.custom_fields.PROFILE_FIELD_VALUE}. Because the points are tied to an xbox game, I want the users to be able to view all game specific custom fields on this page as well.
So custom fields added, need to take a look at this.
v1rtu0so wrote: 01 Jun 2016, 23:44 PS. I am willing to give you a "donation" for your help ;-) Thanks again!
Up to you to sponsor the site :wink:

User avatar

v1rtu0so
Users
Users
Posts: 15
Joined: 28 May 2016, 00:23
    Mac OS X Chrome

Re: Ultimate Points Extension

Post by v1rtu0so »

Thanks again for the prompt reply. I am looking to have the ability to [Modify] &/or [Donate] from the ultimatepoints.php page, as well as have the ability to show custom profile fields on this page. If you would like to see the current website, I can show you as well as give you a detailed explanation of what I am trying to accomplish.

Regards,
-Jules

User avatar

Topic Author
dmzx Online
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Ultimate Points Extension

Post by dmzx »

v1rtu0so wrote: 02 Jun 2016, 10:39 Thanks again for the prompt reply. I am looking to have the ability to [Modify] &/or [Donate] from the ultimatepoints.php page, as well as have the ability to show custom profile fields on this page. If you would like to see the current website, I can show you as well as give you a detailed explanation of what I am trying to accomplish.

Regards,
-Jules
Yes PM me an test account to check/see what you want.

User avatar

repedeGP
Users
Users
Posts: 2
Joined: 03 Jun 2016, 04:40
    Windows 10 Opera

Re: Ultimate Points Extension

Post by repedeGP »

Hey there! I've been using this extension on a forum I run for a few months, now. Absolutely love it!
I had a problem presented to me, however. When our users try to Donate the currency to one-another, it simply refreshes their intended recipient's profile page. I've had a few different users attempt it, on different browsers, and they're all experiencing the same issue. I, however, can donate just fine.

I've tried hunting around in the settings, and found that donations is properly enabled. I've tried looking through permissions, but didn't find anything (for group permissions at least) aside from making users Pay to post, and the like.

It likely matters, but we're still running 1.1.1. Yeeeaaah, a little behind. oops.
Will updating fix this? Is this a common issue?

Sorry if the question is a dumb one, I've had a long day at work and can't find the answer on my own ;_;

User avatar

Topic Author
dmzx Online
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Ultimate Points Extension

Post by dmzx »

repedeGP wrote: 03 Jun 2016, 04:48 Hey there! I've been using this extension on a forum I run for a few months, now. Absolutely love it!
I had a problem presented to me, however. When our users try to Donate the currency to one-another, it simply refreshes their intended recipient's profile page. I've had a few different users attempt it, on different browsers, and they're all experiencing the same issue. I, however, can donate just fine.

I've tried hunting around in the settings, and found that donations is properly enabled. I've tried looking through permissions, but didn't find anything (for group permissions at least) aside from making users Pay to post, and the like.

It likely matters, but we're still running 1.1.1. Yeeeaaah, a little behind. oops.
Will updating fix this? Is this a common issue?

Sorry if the question is a dumb one, I've had a long day at work and can't find the answer on my own ;_;
Open ext\dmzx\ultimatepoints\event\listener.php
Find This may be a partial find and not the whole line

Code: Select all

'U_POINTS_DONATE'		=> ($this->auth->acl_get('a_') || $this->auth->acl_get('m_chg_points')) ? $this->helper->route('dmzx_ultimatepoints_controller', array('mode' => 'transfer', 'i' => $user_id, 'adm_points' => '1')) : '',
Replace with Replace the preceding lines with the following

Code: Select all

'U_POINTS_DONATE'		=> ($this->auth->acl_get('u_use_points')) ? $this->helper->route('dmzx_ultimatepoints_controller', array('mode' => 'transfer', 'i' => $user_id, 'adm_points' => '1')) : '',
Will be fixed in next release :wink:

User avatar

repedeGP
Users
Users
Posts: 2
Joined: 03 Jun 2016, 04:40
    Windows 10 Opera

Re: Ultimate Points Extension

Post by repedeGP »

I'll give that replacement a try when I'm on a computer, sir! Thanks a ton for the prompt response, and I'll watch for the next patch!

User avatar

v1rtu0so
Users
Users
Posts: 15
Joined: 28 May 2016, 00:23
    Mac OS X Chrome

Re: Ultimate Points Extension

Post by v1rtu0so »

Hey it's me again! Getting everything working out smoothly, but for whatever reason the

Code: Select all

<a href="' . $this->helper->route('dmzx_ultimatepoints_controller') . '">&laquo; ' . $this->user->lang['BACK_TO_PREV'] . '</a>'
redirects the user to the ../ultimatepoints.php page instead of the last page. I will keep looking around for the cause or confusion. This snippet of code was pulled from the ../config/points_transfer_user.php file after testing the lang['TRANSFER_REASON_TRANSFER'] output.

Regards,
-Jules

User avatar

Topic Author
dmzx Online
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Ultimate Points Extension

Post by dmzx »

v1rtu0so wrote: 03 Jun 2016, 20:55 Hey it's me again! Getting everything working out smoothly, but for whatever reason the

Code: Select all

<a href="' . $this->helper->route('dmzx_ultimatepoints_controller') . '">&laquo; ' . $this->user->lang['BACK_TO_PREV'] . '</a>'
redirects the user to the ../ultimatepoints.php page instead of the last page. I will keep looking around for the cause or confusion. This snippet of code was pulled from the ../config/points_transfer_user.php file after testing the lang['TRANSFER_REASON_TRANSFER'] output.

Regards,
-Jules
Not home now so will check it when I will be.

User avatar

Matrixer
Users
Users
Posts: 21
Joined: 22 May 2016, 17:52
    Mac OS X Safari

Re: Ultimate Points Extension

Post by Matrixer »

Hi dmzx

Many thanks for having UPS made available for 3.1. - I loved it already on 3.0.

I have a question: if you activate so that User have to pay for Topic and/or Posts, where are the deducted points stored?

Thanks
Matrixer

User avatar

v1rtu0so
Users
Users
Posts: 15
Joined: 28 May 2016, 00:23
    Mac OS X Chrome

Re: Ultimate Points Extension

Post by v1rtu0so »

I have a question about possibly extending this extension a bit. Would anyone be willing to create a global ledger for this. A way for people to track every coin exchange, winning, post reward, admin modify? I know that if you have Transfers turned on, there is a personal ledger / log - but this only shows your own individual transfers in and out. It does not show coins earned from posting, admin coin changes.

[ USER NAME ] [CUSTOM PROFILE FIELDS] [ COMMENT / REASON FOR CHANGE ] [ ADJUSTMENT ]

Regards,
-Jules

User avatar

ninouee
Users
Users
Posts: 32
Joined: 01 May 2016, 09:48
    Windows 10 Chrome

Re: Ultimate Points Extension

Post by ninouee »

Hello

I don't forget the french translation, i work on it, but i need time.

User avatar

Topic Author
dmzx Online
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Ultimate Points Extension

Post by dmzx »

ninouee wrote: 06 Jun 2016, 22:51 Hello

I don't forget the french translation, i work on it, but i need time.
NP :wink:

User avatar

v1rtu0so
Users
Users
Posts: 15
Joined: 28 May 2016, 00:23
    Mac OS X Chrome

Re: Ultimate Points Extension

Post by v1rtu0so »

As requested by dmzx, I am going to post more information about the Ultimate Points Extension add-on I would love to have. As mentioned in a previous post, I would like to create a "Global Ledger" for this extension. A way for people to track every coin exchange, winning, post reward, admin modify. Ideally I would like to have a comment section added to the [modify] function so that the ledger could also track admin edits (add, subtract, change). In a perfect world, the comment section would also accept bbcode so that I could add linked text(url) to the comments as well.

Code: Select all

Modify Coin balance -> {Select Box} {Amount} {Comment Area}
And then on the ledger it would show the following for each and every transaction of points / coins on the forum. Anything auto-generated by the forum (ie. bonus points, posting points, topic points) would automatically fill in the [comment] field. Something like:

Code: Select all

{User Name} {Custom Profile Fields} {Amount Changed (-XXX.XX / +XXX.XX)} {Comment}
I really appreciate all your help with this. I am trying to crash course my way into .php but I am afraid of destroying my whole forum in the process :P

Regards,
-Jules

User avatar

Topic Author
dmzx Online
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Ultimate Points Extension

Post by dmzx »

v1rtu0so wrote: 08 Jun 2016, 00:14 As requested by dmzx, I am going to post more information about the Ultimate Points Extension add-on I would love to have. As mentioned in a previous post, I would like to create a "Global Ledger" for this extension. A way for people to track every coin exchange, winning, post reward, admin modify. Ideally I would like to have a comment section added to the [modify] function so that the ledger could also track admin edits (add, subtract, change). In a perfect world, the comment section would also accept bbcode so that I could add linked text(url) to the comments as well.

Code: Select all

Modify Coin balance -> {Select Box} {Amount} {Comment Area}
And then on the ledger it would show the following for each and every transaction of points / coins on the forum. Anything auto-generated by the forum (ie. bonus points, posting points, topic points) would automatically fill in the [comment] field. Something like:

Code: Select all

{User Name} {Custom Profile Fields} {Amount Changed (-XXX.XX / +XXX.XX)} {Comment}
I really appreciate all your help with this. I am trying to crash course my way into .php but I am afraid of destroying my whole forum in the process :P

Regards,
-Jules
Need to check if this is possible :wink:

User avatar

salazardeaguiar
Users
Users
Posts: 47
Joined: 06 Dec 2015, 20:47
    Windows 8.1 Firefox

Re: Ultimate Points Extension

Post by salazardeaguiar »

I wanted a new section for transactions carried out, which would show log of all actions performed by users. Currently you can only see our own logs. It would be possible in the future?

Locked Previous topicNext topic