azerothcore / azerothcore/acore-cms

Transmog appareance collection

Open
#108 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
PHP
Stars
78
Forks
43
Avg merge
13m
Merged PRs (30d)
1

Description

Add in the wordpress administration panel of the user, next-to the Characters, a panel for "Transmog Collections".

It should show the collection items per account and, selecting a character and an item of the saved ones, the 3D character viewer with the related item selected.

Structure table for retrieving the item per account_id:
```
SQL
CREATE TABLE IF NOT EXISTS `custom_unlocked_appearances` (
`account_id` int(10) unsigned NOT NULL,
`item_template_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`account_id`, `item_template_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8;
```

Mockup example:
![image](https://user-images.githubusercontent.com/519778/161158994-596333b8-4579-4eeb-bc02-40e62aec2bcf.png)

I would like to replace the "ITEM" with some good item list in a OR better, something like the picture below.

![image](https://user-images.githubusercontent.com/519778/161159081-d064476d-c4da-469e-99e2-cec2d07717f5.png)

related to https://github.com/azerothcore/mod-transmog/pull/72

Contributor guide

No contributing guide indexed for this repository

Research direction

Review the related mod-transmog pull request and the WordPress administration code that renders the Characters panel. Trace how account data and item records are currently retrieved before deciding where the Transmog Collections panel and 3D viewer should connect. Done means account-specific saved appearances can be browsed by character and item, with the selected item shown in the viewer.

Written by the indexing model from the issue text.

Assessment

Tech stack
php, sql, wordpress
Domain
database, web-dev
Issue type
Feature
Difficulty
5/5
Estimated time
Over a week
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
30/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.