Reward groups

info2862

New Member
YetiShare User
Aug 9, 2013
43
0
0
Hi,

How does one remove reward groups?
Let's say I only want Group A, B, and C. Right now it goes until G and I can't figure out how to remove a group.
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
You can de-select the countries in the group by holding down ctrl and clicking on the active/selected countries.
That will in theory disable the groups, but I'm not sure if the listing for the groups will continue to show on the rewards info page.
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
Easiest way to remove listings is to actually delete the database rows from the "plugin_reward_ppd_group" table.



Depending on which groups you want to delete will depend on which query you want to use.

DO NOT RUN ALL QUERIES, ONLY USE THE QUERY FOR THE GROUPS YOU DO NOT WANT TO USE

Will delete group "A"
Code:
DELETE FROM  `plugin_reward_ppd_group` WHERE  `plugin_reward_ppd_group`.`id` =1 LIMIT 1;
Will delete group "B"
Code:
DELETE FROM  `plugin_reward_ppd_group` WHERE  `plugin_reward_ppd_group`.`id` =2 LIMIT 1;
Will delete group "C"
Code:
DELETE FROM  `plugin_reward_ppd_group` WHERE  `plugin_reward_ppd_group`.`id` =3 LIMIT 1;
Will delete group "D"
Code:
DELETE FROM  `plugin_reward_ppd_group` WHERE  `plugin_reward_ppd_group`.`id` =4 LIMIT 1;
Will delete group "E"
Code:
DELETE FROM  `plugin_reward_ppd_group` WHERE  `plugin_reward_ppd_group`.`id` =5 LIMIT 1;
Will delete group "F"
Code:
DELETE FROM  `plugin_reward_ppd_group` WHERE  `plugin_reward_ppd_group`.`id` =6 LIMIT 1;
Will delete group "G"
Code:
DELETE FROM  `plugin_reward_ppd_group` WHERE  `plugin_reward_ppd_group`.`id` =7 LIMIT 1;
 

Attachments

dizo20082850

New Member
YetiShare User
Aug 6, 2013
3
0
0
That worked well for getting rid of some groups
but still the last group adds up the "other" at the end. how can I get rid of that?
(see attached)
 

Attachments