#5362 closed enhancement (fixed)
Add delist option to theme directory
Reported by: | dd32 | Owned by: | tellyworth |
---|---|---|---|
Milestone: | Priority: | low | |
Component: | Theme Directory | Keywords: | needs-testing has-patch |
Cc: |
Description
The plugin directory has three main states, Published, Closed, and Disabled. Disabled is a hybrid between Published and Closed, where the plugin can be updated and serve updates, but is not fully published into the directory.
The Theme Directory has two states - Published and Suspended.
Occasionally the Theme Directory has a similar need to the plugin directory, where a theme should able to be updated, but shouldn't appear in search results / archives.
A delisted theme should still be accessible directly (ie. /themes/my-theme/) and serve updates.
I don't think Disabled
works for the Theme Directory, which is why I'm suggesting it should be called Delisted
instead.
Attachments (4)
Change History (43)
This ticket was mentioned in Slack in #themereview by bph. View the logs.
4 years ago
#3
@
4 years ago
In the unfortunate event that a theme needs to be delisted, I would think, that it would hardly trigger any particular behavior change, if it wouldn't be also removed from the search results of current available themes in the repository and from the WP-admin screens.
In the case of a 5 week suspension, the theme should not be visible in the repository.
The only actions that should work would be
- upload a new version by the theme author
- the visiblity of the Update notification in WPadmin, and
- And the update process from the repository
#4
@
4 years ago
@dd32 If I understood right from taking a look at the code, it's just registering new post status, in the admin-edit.php
like
register_post_status( 'delisted', array(
'label' => __( 'Delisted', 'wporg-themes' ),
'protected' => true,
'exclude_from_search' => true,
'label_count' => _n_noop( 'Delist <span class="count">(%s)</span>', 'Delisted <span class="count">(%s)</span>', 'wporg-themes' ),
) );
The query done in the themes list is pinging the API which only shows published themes. This way, the theme won't be posted and searched, but won't be blocked for updates (which are blocked if the status is suspended
).
This ticket was mentioned in Slack in #meta by carike. View the logs.
4 years ago
#6
in reply to:
↑ 2
@
4 years ago
Replying to carike:
:wave:
Hallo, Dion.
Is it possible to require login to see the readme.txt content for delisted themes?
That way, search engines would not have access to that particular content, without breaking the .org internal search, which relies on Google.
After discussion with Jono, there should please be a no-snippet tag on the readme contents instead.
#7
@
4 years ago
Hey,
I am not sure if it is possible, but at least I think it makes sense that the themes would rank for their name only. Those users know already what they want and in those cases the directory would just create a bad experience for them, forcing them to move on Google, find the zip and come back to upload it.
Re: the penalty, if this feels unfair for other authors like us that got suspended in the past, or lack of consistency in the TRT messaging, I guess the authors can have the option or TRT would decide: 6 weeks with brand search ban vs 8 weeks or more for e.g without brand search ban.
This should keep both a good directory experience for users and content creators + a fair treatment regarding the guidelines broken.
#8
@
4 years ago
Hallo @ionutn ,
Per discussion in the meta channel on Slack, the main aim is to create a basis and then improve on that later (e.g. introducing date-pickers and other nifty tools to make it more versatile).
If this takes too long to implement, that is not beneficial to anyone.
While having a brand search vs. non-brand search delistings can perhaps be useful, there should not be so much complexity introduced into the ticket that it takes effectively never happens.
From what I understand, the current design requirement is that it should be possible to find a theme for an exact-match of their name.
Re: the penalty, if this feels unfair for other authors like us that got suspended in the past, or lack of consistency in the TRT messaging,
This is really not the right forum for that discussion.
Please comment on the relevant P2 post, so that the input can be taken into consideration.
#9
@
4 years ago
@dd32 could you please take another look at this. :) It doesn't need datepickers and all that stuff for now. A simple button will do (exactly like in the ticket description)
Thank you!
This ticket was mentioned in Slack in #themereview by ilovewpcom. View the logs.
4 years ago
This ticket was mentioned in Slack in #meta by carike. View the logs.
4 years ago
#13
@
4 years ago
@tellyworth Hi! Would it be possible to rush this :) make it a high priority? We would like to introduce some new policies/requirements and it is all tied up to this ticket. It would mean a lot to us.
Thank you for contributing time to this.
#14
@
4 years ago
- Keywords needs-testing added
attachment:5362-delist-actions.diff is a first pass at implementing this. It makes some assumptions that need checking.
- Delist is only available from a
published
state. - Relist will set the status back to
publish
. - Delisted themes are excluded from site search.
- Something is wonky in the noindex handling, but if it worked it would use
nosnippet
. - There is no bulk or row action because I'm assuming this will be used sparingly.
This ticket was mentioned in Slack in #themereview by acosmin. View the logs.
4 years ago
#17
follow-up:
↓ 18
@
4 years ago
Does the delist state change if the trac ticket status is changed?
For example if a trac ticket has been reopened and the trac status is changed to live.
#18
in reply to:
↑ 17
@
4 years ago
Replying to poena:
Does the delist state change if the trac ticket status is changed?
For example if a trac ticket has been reopened and the trac status is changed to live.
No. What should happen then?
#19
@
4 years ago
"No" is good. I just wanted to make sure that changing the trac status does not cause problems.
Because currently the statuses are not synced. A theme ticket can have the live status on trac, while being suspended in the admin area and this is confusing.
#22
follow-up:
↓ 23
@
4 years ago
@tellyworth would this affect the trac in any way? :) I'm asking because themes.trac is creating new tickets for themes that are already in review and because it started right about the time when this patch was applied.
https://themes.trac.wordpress.org/report/2
The last 5 tickets except Travel Ace
. For example Simple News
is duplicated...
#23
in reply to:
↑ 22
@
4 years ago
Replying to acosmin:
@tellyworth would this affect the trac in any way?
I don't think so but I'm looking into it.
This ticket was mentioned in Slack in #meta by tellyworth. View the logs.
4 years ago
#26
@
4 years ago
@tellyworth The Trac didn't create new tickets for these themes (both uploaded a few hours after the revert):
https://themes.trac.wordpress.org/ticket/87927#comment:6
https://themes.trac.wordpress.org/ticket/87509#comment:11
If that helps :)
This ticket was mentioned in Slack in #themereview by aristath. View the logs.
4 years ago
#28
@
4 years ago
@tellyworth The issue seems to have stopped :) It's either a big coincidence or something went wrong with the patch applied.
#29
@
4 years ago
@tellyworth could we apply the patch again and see if it happens again :) thank you!
This ticket was mentioned in Slack in #themereview by acosmin. View the logs.
4 years ago
#33
@
4 years ago
Sorry for arriving late to this conversation, but, I'd like to add another consideration.
Currently, when themes are suspended, requests to their URLs return a 404 error.
In many cases, these URLs are still linked to (within the wp.org ecosystem, in search engines, and on/from the wider web), and are still relatively heavily trafficked.
Quantitively, Google Analytics shows ~10k unique pageviews in the last month for 'hidden' themes, of which ~40% are entrances to the wp.org, of which ~50% immediately bounce from the site.
This is obviously pretty bad for user experience, SEO, branding, our general collective success, etc. In attempting to regulate and manage misbehaving themes, we're harming our audience.
Some suggestions on how we might manage this:
- For themes which have been intentionally and permanently removed, return a "This theme has been permanently removed" template, with a 410 HTTP status.
- For themes which are temporarily suspended/delisted, return a "This theme is temporarily unavailable" template, with a 200 HTTP status. The page should also contain basic/minimal information about the theme (the name, the image, and links to support/reviews etc).
:wave:
Hallo, Dion.
Is it possible to require login to see the readme.txt content for delisted themes?
That way, search engines would not have access to that particular content, without breaking the .org internal search, which relies on Google.